@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /*width: 60px;*/
    /*height: 60px;*/
    /*background-color: #25D366;*/
    /*border-radius: 50%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*color: white;*/
    font-size: 20px;
    /*text-decoration: none;*/
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);*/
    z-index: 1000;
    /*opacity: 0;*/
    /*transform: scale(0);*/
    /*transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
}

.whatsapp-button.visible {
    /*opacity: 1;*/
    /*transform: scale(1);*/
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    display: flex;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 4rem;
    position: absolute;
    left: 40px;
}

.header-container {
    padding: 20px 0;
}

.nav-links li a {
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: flex-end;
    font-size: 1.2rem;
    flex: 1;
}

.logo img {
    height: auto;
    margin-right: 40px;
    max-width: 150px;
}

.logo h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #101314;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .logo {
        position: relative;
        left: 0;
    }

    .logo img {
        height: 60px;
        margin-right: 10px;
    }

    .header-container {
        padding: 10px 20px;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
        max-width: 177px;
    }
}

.nav-links li a {
    font-weight: 500;
    position: relative;
}

.nav-links li a:hover {
    color: #101314;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #101314;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 100;
    }
}

/* New button on right side of navbar */
.nav-button {
    background-color: #243fbc;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 0 5px #f0f7ff, 0 0 10px #ffffff, 0 0 15px #f3f9ff, 0 0 20px #4c96e5;
    margin-left: 20px;
    transition: all 0.3s ease;
    animation: glow .0s infinite alternate, bounce 0.5s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 1px #7d92a8, 0 0 10px #8798ab, 0 0 15px #4c96e5, 0 0 20px #4c96e5;
    }

    100% {
        box-shadow: 0 0 5px #4c96e5, 0 0 30px #4c96e5, 0 0 20px #4c96e5, 0 0 30px #4c96e5;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }


}

.nav-button:hover {
    background-color: #243fbc;
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, rgba(32, 35, 41, 0.422) 0%, rgb(0, 0, 0) 100%), url('../images/W75Jq6bz.jpg') center/cover no-repeat;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    padding-top: 152px;
    padding-bottom: 110px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.0rem;
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeIn 1s ease;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: #243fbc;
    color: #eff3f4;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

/* .services {
    padding: 50px 0;
    background-color: rgb(230, 227, 227);
} */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #101314;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #101314;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 576px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        gap: 30px;
    }
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: #101314;
    text-align: center;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    font-family: 'Arial';
}

.service-card:hover .service-content h3 {
    color: #243fbc;
}

.service-content p {
    margin-bottom: 20px;
    color: #111010;
    text-align: center;
    font-size: 15px;
}

/* New Contact Button Style */
.view-button {
    display: inline-block;
    width: 48%;
    background-color: #243fbc;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-right: 2%;
    box-sizing: border-box;
}

.view-button:hover {
    background-color: #243fbc;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.contact-btn {
    display: inline-block;
    width: 48%;
    background-color: #243fbc;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-btn:hover {
    background-color: #243fbc;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.features {
    padding: 4px 0;
    background: linear-gradient(135deg, #243fbc42 0%, #1e90ff 100%);
    margin-top: 9px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    background: linear-gradient(135deg, #e0f7fa 0%, #809cea 100%);
}

.feature-item {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #101314;
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.cta {
    padding: 31px 0;
    color: rgb(11, 6, 6);
    text-align: center;
    background: #f9f9f9;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Arial';
}

.cta p {
    margin-bottom: 30px;
}

.contact {
    padding: 0 0;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #101314;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 15px;
    color: #101314;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #101314;
    color: white;
    transform: translateY(-3px);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #101314;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px 0px 11px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #101314;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: #101314;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background-color: #101314;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #1e293b;
    color: #f0f0f0;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 190px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    color: white;
}

.footer-about p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.footer-links h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-btn {
    background-color: #000000;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #101314;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 15px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        gap: 20px;
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .whatsapp-button {
        /*width: 50px;*/
        /*height: 50px;*/
        bottom: 20px;
        right: 20px;
    }

    .nav-button {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 180px 0;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
        font-family: 'Arial';
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form {
    width: 100%;
    padding-left: 0;
    /* max-width: 596px; */
    background-color: #f9f9f9;
    /* padding: 27px 33px 31px 19px; */
    /* border-radius: 10px; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 20px;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #243fbc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: #243fbc;
}




/* Updated Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    color: #0a225f;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar .logo img {
    width: 162px;
    height: 36px;
    margin-right: 10px;
}

.navbar .nav-links {
    display: flex;
    gap: 50px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #0a225f;
    font-weight: bold;
    font-size: 1rem;
}

.navbar .nav-links a:hover {
    color: #1e90ff;
}

.navbar .contact-number {
    background-color: #4f6fdd;
    padding: 8px 15px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 0px 20px;

}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero h1 span {
    background-color: #1e90ff;
    padding: 5px 10px;
    border-radius: 5px;
}

.hero p {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 47px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 1rem;
}

.breadcrumb a {
    text-decoration: none;
    color: #dcdcdc;
}

.breadcrumb a:hover {
    color: #1e90ff;
}

/* What We Do Section */
.mission-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    background-color: #f7f9fc;
    color: #0a225f;
}

.mission-text {
    flex: 1;
    padding: 10px;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: -14px;
    margin-top: 0;
}

.mission-text p {
    font-size: 1rem;
    color: #606060;
    margin-bottom: 20px;
}

.mission-button {
    background-color: #243fbc;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    color: #ffffff;
    border-radius: 5px;
}

.mission-button:hover {
    opacity: 0.9;
}

.mission-image {
    flex: 1;
    text-align: center;
}

.mission-image img {
    /* width: 500px; */
    padding-top: 23px;
    height: 350px;
    /* /* border-radius: 5px; */
}

/* Features */
.features {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    width: 89%;
    /* padding-bottom: 41px; */
    border-radius: 5px;
}

.features i {
    color: #1e90ff;
    margin-right: 5px;
}

.features span {
    margin-right: 15px;
    color: #fff;
    padding-left: 12px;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    padding-bottom: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.customer-service,
.quick-links,
.services {
    width: 100%
}

.customer-service h4,
.quick-links h4,
.services h4 {
    margin-bottom: 10px;
}

.quick-links ul,
.services ul {
    list-style-type: none;
    padding: 0;
}

.quick-links ul li,
.services ul li {
    margin-bottom: 8px;
}

.quick-links ul li a {
    color: white;
    text-decoration: none;
}

.quick-links ul li a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    border-top: 1px solid white;
    padding-top: 10px;
}

/* ============iqra css============== */
.w-613 {
    width: 613px;
}
.w-500{
    width: 615px;
}
.w-550{
    width: 550px;
}
.pb-46
{
    padding-bottom: 46px;

}
.bg-new{
    background-color: #eeeeeeab;    
}
@media (max-width: 991px) {
    /* Header Container */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        position: relative;
    }

    /* Logo */
    .logo img {
        height: 40px;
    }

    /* Mobile Menu Button (☰) */
    .mobile-menu {
        font-size: 28px;
        cursor: pointer;
        display: block;
        z-index: 1000;
    }

    /* Navigation Menu */
    .nav-links {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
    }

    /* Active Menu */
    .nav-links.active {
        left: 0;
    }

    /* Navigation Links */
    .nav-links li {
        list-style: none;
        margin: 15px 0;
    }

    .nav-links a {
        text-decoration: none;
        font-size: 20px;
        color: #000;
    }

    /* Close Button */
    .mobile-menu.close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
    }

    .contact-form {
        padding: 10px 10px 10px 10px;
        width: 95%;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 14px;
        /* /* padding: 15px; */
    }

    .contact-form button {
        font-size: 16px;
        padding: 8px;
    }
    .form-control{
        padding: 10px 0px 8px 5px;
    }
    .bg-new{
        background-color: #ffff;
    }
    .mission-section{
        padding: 0;
    }
    .w-500{
        width: 100%;
    }
    .mission-text h2{
        font-size: 24px;
        margin-bottom: 0px;
        margin-top: 0;
    }
    .w-326{
        width: 326px !important;
    }
    .features{
        width: 100%
    }
    .mission-image img{
        height: 100%;
        margin-bottom: 16px;
    }
    footer{
        margin-top: 47px;
    }
    .hero p{
        font-size: 15px;
    }
}

.footer-layout{
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px !important;
    border-top: 1px solid #f7f9fc52;
    margin-top: 31px;
}

.contact-h3{
    text-align: center;
    background: #243fbc;
    margin-bottom: 0;
    padding: 10px;
    color: #fff;
    border-radius: 10px 10px 0px 0px;
}
.form-new{
    padding: 34px 38px 30px 26px;
}