/* Global Styles */
:root {
    --primary-blue: #105182;
    --light-blue: #5bccec;
    --gray: #8b949c;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-blue);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}








/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    height: 60px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-list a {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 4px;
}

.nav-list a:not(.btn-nav):hover {
    color: var(--primary-blue);
    background-color: rgba(91, 204, 236, 0.1);
    border-radius: 20px;
}

.nav-list a:not(.btn-nav)::after {
    display: none;
}

.nav-list a.active {
    color: var(--primary-blue);
    background-color: rgba(91, 204, 236, 0.1);
    border-radius: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    /* FIX: Must be higher than nav-list z-index (9999) */
    z-index: 10000; 
    position: relative; /* Ensures z-index is applied */
}

.menu-toggle__bar {
    display: block;
    height: 2px;
    width: 24px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle__bar + .menu-toggle__bar {
    margin-top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.dropdown-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.dropdown-link {
    flex: 1;
    text-decoration: none;
}

.dropdown-arrow-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.dropdown-arrow-btn:hover {
    opacity: 0.8;
}
/* Desktop Dropdown Styles - ONLY FOR SCREENS ABOVE 768px */
@media (min-width: 769px) {
    .dropdown {
        position: relative;
    }

    .dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
        
    }

    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 150px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 8px 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 10px;
        border: 1px solid rgba(91, 204, 236, 0.1);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: white;
        border-left: 1px solid rgba(91, 204, 236, 0.1);
        border-top: 1px solid rgba(91, 204, 236, 0.1);
    }

    .dropdown-menu li {
        margin: 0;
        padding: 0;
    }

    .dropdown-menu a {
        color: var(--text-color);
        padding: 10px 20px;
        display: block;
        font-size: 0.95rem;
        font-weight: 500;
        white-space: nowrap;
        border-radius: 0;
        height: auto;
        text-align: left;
    }

    .dropdown-menu a:hover {
        background-color: rgba(91, 204, 236, 0.1);
        color: var(--primary-blue);
    }
    .dropdown-wrapper {
        gap: 0;
    }
    
    .dropdown-arrow-btn {
        padding: 8px 4px;
        background: transparent;
    }
    
    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Mobile Styles - ONLY FOR SCREENS BELOW 768px */
@media (max-width: 768px) {
    .logo img {
    height: 45px;

}
    .menu-toggle {
        display: flex;
        flex-direction: column;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 250px !important;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 60px 0 60px 0;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto; 
        -webkit-overflow-scrolling: touch;
        z-index: 9999;
    }
    
    .nav-list.active {
        right: 0;
    }

    .nav-list > li {
        width: 100%;
        display: block;
    }
    
    .nav-list a, 
    .dropdown-trigger {
        padding: 12px 20px;
        width: 100%;
        height: auto;
        text-align: left;
        justify-content: flex-start;
        display: flex;
        align-items: center;
        background: transparent;
        color: var(--primary-blue);
        box-sizing: border-box;
    }

    .dropdown-menu {
        position: relative;
        display: block;
        width: 100%;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
        border: none;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown.active .dropdown-menu {
        max-height: 380px;
    }

    .dropdown-menu li {
        width: 100%;
        display: block;
        border-top: 1px solid rgba(0,0,0,0.05);
        margin: 10px 0 !important;
    }

    .dropdown-menu a {
        padding: 4px 20px 4px 25px;
        font-size: 0.9rem;
        width: 100%;
        display: block;
        white-space: normal;
        text-align: left;
        color: #444;
        box-sizing: border-box;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
     .dropdown-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-link {
        padding: 12px 0px 12px 20px !important;
        flex: 1;
        text-align: left;
    }
    
    .dropdown-arrow-btn {
        padding: 12px 55px 12px 0px !important;
        background: transparent;
      
        color: var(--primary-blue);
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Ensure the dropdown trigger styles don't conflict */
    .dropdown-trigger {
        display: none !important; /* Hide the old trigger */
    }
}








/* Hero Section */
.hero {
    padding: 120px 0 130px;
    background: linear-gradient(135deg, 
        rgba(16, 81, 130, 0.1) 0%, 
        rgba(255, 255, 255, 0.95) 70%,
        rgba(255, 255, 255, 1) 100%
    );
    position: relative;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100vh !important;
}


/* BACKGROUND IMAGE LAYER WITH ZOOM EFFECT (desktop) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(16, 81, 130, 0.5) 0%, 
        rgba(255, 255, 255, 0.85) 60%,
        rgba(255, 255, 255, 0.95) 100%
    ), url('/photos/16.jpg') no-repeat no-repeat center 110%;
    background-size: cover;
    z-index: 1;
    animation: backgroundZoom 22s infinite alternate ease-in-out;
    will-change: transform;
}

@keyframes backgroundZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* Mobile: remove background image, keep gradient only */
@media (max-width: 768px) {
    .hero::before {
        background: linear-gradient(180deg, 
            rgba(16, 81, 130, 0.55) 0%, 
            rgba(255, 255, 255, 0.85) 40%,
            rgba(255, 255, 255, 0.98) 100%
        );
        animation: none;
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
    margin: 0 auto;
    margin-top: 50px;
}

.hero h1 {
    font-size: clamp(1.85rem, 4.8vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--primary-blue);
    background: linear-gradient(120deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: var(--dark-gray);
    line-height: 1.6;

}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(16, 81, 130, 0.2);
    border: 2px solid var(--white);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 81, 130, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-blue);
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 81, 130, 0.2);
}

.hero-image {
    flex: 1;
    position: relative;
    display: none;
}

.image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hero-stats {
    display: flex;
    gap: 0px !important;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
    
}
.hero-marquee-container .container {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-marquee-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.98) 15%,
        rgba(255, 255, 255, 0.95) 30%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.85) 70%,
        rgba(255, 255, 255, 0.8) 100%
    );
    padding: 25px 0 5px;
    backdrop-filter: blur(8px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-mask-image: linear-gradient(to top, black 80%, transparent 100%);
    mask-image: linear-gradient(to top, black 80%, transparent 100%);
}

/* Keep heading constrained */
.marquee-heading {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    text-transform: uppercase;
}

/* Make marquee full width */
.hero-marquee-container .marquee {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    height: 90px;
    
}

.hero-marquee-container .marquee::before, 
.hero-marquee-container .marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
}

.hero-marquee-container .marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.hero-marquee-container .marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.hero-marquee-container .marquee-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll 60s linear infinite !important;
    width: max-content;
}

/* Single client-logo rule */
.hero-marquee-container .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 0;
    height: 90px;
}

.hero-marquee-container .client-logo img {
    max-height: 50px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.hero-marquee-container .client-logo:hover img {
    transform: scale(1.05);
}

/* Individual logo scales - keep as is */
.hero-marquee-container .client-logo:nth-child(8) img {
    transform: scale(1.4);
}
.hero-marquee-container .client-logo:nth-child(8):hover img {
    transform: scale(1.5);
}

.hero-marquee-container .client-logo:nth-child(2) img {
    transform: scale(1.2);
}
.hero-marquee-container .client-logo:nth-child(2):hover img {
    transform: scale(1.3);
}

.hero-marquee-container .client-logo:nth-child(15) img {
    transform: scale(1.3);
}
.hero-marquee-container .client-logo:nth-child(15):hover img {
    transform: scale(1.4);
}

.hero-marquee-container .client-logo:nth-child(17) img {
    transform: scale(1.3);
}
.hero-marquee-container .client-logo:nth-child(17):hover img {
    transform: scale(1.4);
}

.hero-marquee-container .client-logo:nth-child(18) img {
    transform: scale(1.3);
}
.hero-marquee-container .client-logo:nth-child(18):hover img {
    transform: scale(1.4);
}

.hero-marquee-container .client-logo:nth-child(20) img {
    transform: scale(1.2);
}
.hero-marquee-container .client-logo:nth-child(20):hover img {
    transform: scale(1.3);
}

.hero-marquee-container .client-logo:nth-child(21) img {
    transform: scale(1.2);
}
.hero-marquee-container .client-logo:nth-child(21):hover img {
    transform: scale(1.3);
}

.hero-marquee-container .client-logo:nth-child(22) img {
    transform: scale(1.2);
}
.hero-marquee-container .client-logo:nth-child(22):hover img {
    transform: scale(1.3);
}

.hero-marquee-container .client-logo:nth-child(25) img {
    transform: scale(1.3);
}
.hero-marquee-container .client-logo:nth-child(25):hover img {
    transform: scale(1.4);
}

.hero-marquee-container .client-logo:nth-child(19) img {
    transform: scale(1);
}
.hero-marquee-container .client-logo:nth-child(19):hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Desktop-only styles for stat alignment */
@media (min-width: 769px) {
    .stat-number {
        margin-left: -35px;
    }
    
    .stat-label {
        margin-left: -35px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .hero {
        padding: 100px 0 140px;
        min-height: auto;
    }
    
    .hero .container {
        margin-bottom: 80px;
    }
    
    .hero-marquee-container {
        padding: 20px 0 10px;
    }
    
    .hero-marquee-container .marquee {
        height: 60px;
    }
    
    .hero-marquee-container .client-logo {
        min-width: 140px;
        height: 60px;
    }
    
    .hero-marquee-container .client-logo img {
        max-height: 45px;
        max-width: 110px;
    }
}

/* Hide mobile image on desktop */
.hero-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* Hide desktop image wrapper on mobile */
    .hero-image {
        display: none;
        transform: none !important;
    }
    
    /* Show mobile image on mobile */
    .hero-image-mobile {
        transform: none !important;
        display: block;
        width: 100%;
        margin-top: 10px;
    }
    
    .hero-image-mobile .image-wrapper {
        height: 180px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image-mobile .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
    }
    
    section.hero {
        padding: 80px 0 10px;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: clamp(1.7rem, 4.5vw, 2.9rem) !important;
        line-height: 1.2;
        margin-bottom: 8px;
        margin-top: 8px;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 ;
        width: calc(100% + 40px);
        max-width: none;
        box-sizing: border-box;
    }
    
    
    .hero .subtitle {
        margin-bottom: 12px;
        font-size: 0.87rem;
        line-height: 1.4;
        padding: 0px;
        display: block;
        text-align: center;
        width: 95vw;
        max-width: 1200px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* FIXED BUTTON LAYOUT - Force side by side */
    .hero-content .hero-buttons {
        flex-direction: row !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-bottom: 12px;
        gap: 4px !important;
        flex-wrap: wrap;
    }
    
    .hero-content .hero-buttons a {
        display: inline-block !important;
        flex: 0 1 auto !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    .btn-primary,
    .btn-secondary {
        margin: 0 0.5px;
        transform: scale(0.98);
    }
    
    .hero-stats {
        justify-content: center;
        margin-bottom: 0px;
        gap: 12px;
        margin-top: 10px;
    }
    
    div.hero-marquee-container {
        padding: 0;
        margin-top: 3px;
    }
    
    h3.marquee-heading {
        padding-top: 18px;
        margin-bottom: 15px;
    }
    
    .hero-marquee-container {
        position: relative;
        margin-top: 15px;
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .hero-marquee-container .marquee {
        width: 100% !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        height: 85px;
    }
    
    .hero-marquee-container {
        width: 100%;
        left: 0;
        right: 0;
        padding: 15px 0;
    }
    
    .hero-marquee-container .marquee::before,
    .hero-marquee-container .marquee::after {
        width: 50px; /* Smaller fade on mobile */
    }
    
    /* Your existing mobile marquee styles */
    .hero-marquee-container .client-logo {
        min-width: 160px;
        height: 85px;
        padding: 0 22px;
    }
    
    .hero-marquee-container .client-logo img {
        max-height: 65px;
        max-width: 140px;
    }
    
    .stat-item {
        min-width: 90px;
    }
    
    .stat-label {
        min-height: 38px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        white-space: nowrap;
        max-width: none;
    }
    
    .stat-number {
        margin-left: 0;
        margin-bottom: 0px;
    }
    
    .stat-item:nth-child(1) .stat-label {
        max-width: none;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 0;
        min-height: 100vh;
        height: auto;
    }
    
    /* Ensure buttons stay side by side on small screens */
    .hero-content .hero-buttons {
        gap: 4px !important;
        flex-direction: row !important;
    }
    
    /* Make buttons slightly smaller on very small screens */
    .btn-primary,
    .btn-secondary {
        padding: 10px 12px !important;
        font-size: 0.8rem !important;
        white-space: nowrap;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item {
        min-width: 75px;
    }
    
    .hero-image-mobile .image-wrapper {
        transform: none !important;
        height: 160px;
    }
    
    .hero-marquee-container {
        margin-top: 25px;
        padding: 15px 0;
    }
    
    .hero-marquee-container .marquee {
        height: 60px;
    }
    
    .hero-marquee-container .client-logo {
        min-width: 110px;
        height: 60px;
        padding: 0 10px;
    }
    
    .hero-marquee-container .client-logo img {
        max-height: 40px;
        max-width: 90px;
    }
    
    .marquee-heading {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .stat-label {
        min-height: 36px;
        font-size: 0.8rem;
        margin-left: 0;
    }
    
    .stat-number {
        margin-left: 0;
    }
    
    .stat-item:nth-child(1) .stat-label {
        max-width: 70px;
    }
}





.process-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header */
.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.process-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(91, 204, 236, 0.3);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    cursor: pointer;
    text-align: center;
    flex: 1;
}

.step-indicator {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-indicator {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 81, 130, 0.15);
}

.timeline-step.active .step-indicator {
    background: rgba(16, 81, 130, 0.15);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(16, 81, 130, 0.2);
}

.step-number {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.timeline-step.active .step-number {
    color: var(--primary-blue);
}

.step-content h4 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.step-content p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Details Card */
.process-details {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.details-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: nowrap; /* Prevents wrapping to next line */
}

.step-icon-large {
    width: 45px;
    min-width: 45px; /* Forces minimum width, prevents shrinking */
    max-width: 45px; /* Forces maximum width, prevents expanding */
    height: 45px;
    background: rgba(16, 81, 130, 0.15);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(16, 81, 130, 0.2);
    flex-shrink: 0; /* Prevents shrinking when parent flex container is tight */
}

.details-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3; /* Better line height for wrapped text */
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.detail-item {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.detail-label {
    display: block;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.detail-text {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .process-wrapper {
        padding: 25px;
    }
    
    .process-timeline {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-step {
        flex: 0 0 calc(50% - 20px);
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-indicator {
        width: 50px;
        height: 50px;
    }
    
    .step-icon-large {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .details-header h3 {
        font-size: 1.3rem;
    }
}



/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(16, 81, 130, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.why-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     align-self: flex-start;
     margin-top: 10px;
}

.why-image img {
    width: 105%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-points {
    flex: 1;
}

.point {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
}

.point-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.point-content p {
    color: var(--gray);
}


@media (max-width: 768px) {
    .why-image {
        margin: 0;
    }
}





/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(16, 81, 130, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    position: relative;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-out;
}

/* Individual transform scale for each card image - set manually */
.card-bg.child-1 {
    transform: scale(0.8);
}

.card-bg.child-2 {
    transform: scale(0.8);
}

.card-bg.child-3 {
    transform: scale(0.8);
}

.card-bg.child-4 {
    transform: scale(0.8);
}

.card-bg.child-5 {
    transform: scale(0.8);
}

.card-bg.child-6 {
    transform: scale(0.8);
}

/* Very subtle hover zoom effect */
.service-card:hover .card-bg.child-1 {
    transform: scale(0.82);
}

.service-card:hover .card-bg.child-2 {
    transform: scale(0.82);
}

.service-card:hover .card-bg.child-3 {
    transform: scale(0.82);
}

.service-card:hover .card-bg.child-4 {
    transform: scale(0.82);
}

.service-card:hover .card-bg.child-5 {
    transform: scale(0.82);
}

.service-card:hover .card-bg.child-6 {
    transform: scale(0.82);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(16, 81, 130, 0.85) 0%, 
        rgba(16, 81, 130, 0.7) 50%,
        rgba(16, 81, 130, 0.9) 100%
    );
    transition: all 0.3s ease;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: white;
}

.card-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    flex-grow: 1;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    align-self: flex-start;
}

.service-card:hover .service-link {
    gap: 10px;
    border-bottom-color: white;
}

.services-cta {
    text-align: center;
}
.service-card:nth-child(6) .card-bg {
    transform: scale(0.75);
}
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        height: 330px;
    }
}

@media (max-width: 768px) {
    .services-preview {
        padding: 50px 0;
    }
    
    .services-preview .section-header {
        margin-bottom: 35px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 15px;
    }
    
    .service-card {
        height: 240px !important;
    }
    
    .card-content {
        padding: 22px;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-preview {
        padding: 40px 0;
    }
    
    .service-card {
        height: 300px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
}








/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-blue);
    margin: 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--dark-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.client-info-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: auto;
}

.client-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0; /* Prevents overflow */
}

.client-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.client-position {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view-text {
    padding-right: 22px;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0.85rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    white-space: nowrap;
}

.view-text i {
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-direction: column;
}

.slider-prev, .slider-next {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--light-blue);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--gray);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-blue);
    opacity: 1;
    transform: scale(1.2);
}

/* Review Modal Styles */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    overflow: auto;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.review-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.review-modal-content {
    background-color: transparent;
    max-width: 1000px;
    width: 100%;
    height: 90vh;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    padding: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-close-modal {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.review-close-modal:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.scanned-review {
    padding: 0;
    text-align: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanned-review img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border: none;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Testimonials Section Media Queries */
@media (max-width: 968px) {
    .testimonial-slider {
        padding: 0 50px;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .slider-prev, .slider-next {
        width: 45px;
        height: 45px;
    }
    
    .client-position {
        font-size: 0.95rem;
    }
    
    .view-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 30px 0;
    }
    
    .testimonial-slider {
        padding: 0 10px;
    }
    
    .testimonial-content {
        padding: 25px;
        min-height: 250px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .client-info-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px; /* Increased gap between elements */
    }
    
    .view-text {
        position: relative;
        margin-left: 0;
        margin-top: 10px; /* Added more space above the view text */
        padding-right: 0;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
    }
    .slider-prev {
        left: -10px; /* Move left arrow outside */
    }
    
    .slider-next {
        right: -10px; /* Move right arrow outside */
    }

    .slider-dots {
        flex-wrap: wrap;
        max-width: 200px;
        row-gap: 8px;
    }
    
    .review-modal {
        padding: 30px;
    }
    
    .review-modal-content {
        height: 85vh;
    }
    
    .review-close-modal {
        top: -35px;
        right: 0;
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .testimonial-slider {
        padding: 0 35px;
    }
    
    .testimonial-content {
        padding: 20px;
        min-height: 220px;
    }
    
    .testimonial-content p {
        font-size: 1.05rem;
    }
    
    .client-name {
        font-size: 1.05rem;
    }
    
    .client-position {
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .view-text {
        font-size: 0.75rem;
        margin-top: 12px; /* Increased gap for smaller screens */
    }
    
    .slider-dots {
        max-width: 150px;
        gap: 8px;
    }
    
    .review-modal {
        padding: 20px;
    }
    
    .review-modal-content {
        height: 80vh;
    }
    
    .review-close-modal {
        top: -30px;
        width: 30px;
        height: 30px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        padding: 0 30px;
    }
    
    .testimonial-content {
        padding: 18px;
        min-height: 200px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .client-info-container {
        padding-top: 15px;
        gap: 18px; /* Further increased gap for very small screens */
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .client-position {
        font-size: 0.85rem;
    }
    
    .view-text {
        font-size: 0.7rem;
        margin-top: 15px; /* Maximum gap for the smallest screens */
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-dots {
        max-width: 120px;
        gap: 6px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .review-modal {
        padding: 15px;
    }
    
    .review-modal-content {
        height: 75vh;
    }
    
    .review-close-modal {
        top: -25px;
        width: 25px;
        height: 25px;
        font-size: 1.4rem;
    }
}








/* Footer Section */
.footer {
    background-color: #105182;
    color: #ffffff;
    padding: 70px 0 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 30px;
}

.footer-col:nth-child(2) {
    margin-left: 60px;
}

.footer-col:nth-child(3) {
    margin-left: 50px;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #4299e1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.footer-col a:hover {
    opacity: 1;
    color: #4299e1;
}

.footer-col i {
    color: #4299e1;
    width: 16px;
    margin-right: 1px;
    font-size: 0.9rem;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 10px 0;
}

.footer-bottom {
    padding: 10px 0;
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    flex: 1;
}

.footer-logo-small {
    background-color: white;
    height: 45px;
    width: auto;
     border-radius: 5px;
    padding-right: 5px;
}

.built-by {
    opacity: 0.7;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.zentrix-labs:hover {
    opacity: 1;
    color: rgb(255, 255, 255);
}

.zentrix-labs {
    font-weight: 700;
    margin-left: 4px;
    color: #3ad1ff;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form p {
    margin-bottom: 15px;
}

.newsletter-input {
    padding: 12px 15px;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
}

.footer .newsletter-form .btn-primary {
    background-color: #4299e1;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
     border-radius: 5px;
}

.footer .newsletter-form .btn-primary:hover {
    background-color: #2b6cb0;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.contact-link:hover {
    opacity: 1;
    color: #4299e1;
}

@media (max-width: 768px) {

    .footer {
        padding: 30px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h3 {
        margin-bottom: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-content .footer-bottom-left {
        order: 1;
    }
    
    .footer-bottom-content p {
        order: 2;
    }
    
    .footer-bottom-content .footer-bottom-right {
        order: 3;
    }
    
    .built-by {
        justify-content: center;
    }
    
    .newsletter-input,
    .footer .newsletter-form .btn-primary {
        width: 100%;
    }
    
    .footer-col:nth-child(2) {
        margin-left: 0;
    }
    
    .footer-col:nth-child(3) {
        margin-left: 0;
    }
}








/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f5f7fa;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background-color: #105182;
    padding: 40px;
    border-radius: 10px;
    color: #ffffff;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-content a, .info-content p {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    text-decoration: none;
}

.info-content a:hover {
    color: #4299e1;
}

.contact-form {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

.form-group textarea {
    resize: vertical;
}

.contact-section .contact-form .btn-primary {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
    
    .info-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .info-content {
        flex: 1;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-section .contact-form .btn-primary {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .contact-info, .contact-form {
        padding: 20px;
    }
    
    .info-card {
        gap: 12px;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}








/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}








/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .why-content {
        flex-direction: column;
    }
    

}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 200px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }

    .why-us {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}






/* ==================== URGENCY SECTION ==================== */
.urgency-section {
    padding: 70px 0;
    background-color: var(--primary-blue);
    color: white;
}

.urgency-header {
    text-align: center;
    margin-bottom: 40px;
}

.urgency-header h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.urgency-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, white, var(--light-blue));
    margin: 0 auto;
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.urgency-text {
    flex: 1;
}

.challenges-box {
    margin: 0 0 25px 0;
}

.challenges-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.challenges-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.challenges-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.challenges-list li:last-child {
    border-bottom: none;
}

.challenges-list li span {
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.risk-meter {
    margin: 30px 0;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.meter-bar {
    height: 12px;
    background: #f44336;
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.safe-zone {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    background: #4CAF50;
}

.risk-zone {
    position: absolute;
    left: 60%;
    top: 0;
    bottom: 0;
    width: 20%;
    background: #FFC107;
}

.critical-zone {
    position: absolute;
    left: 80%;
    top: 0;
    bottom: 0;
    width: 20%;
    background: #F44336;
}

.urgency-stat {
    margin-top: 20px;
    font-size: 1.2rem;
}

.urgency-stat strong {
    font-size: 1.5rem;
}

.urgency-btn {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    margin-top: 10px;
    display: inline-block;
    padding: 7px 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-content: end;
}

.urgency-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    border: 2px solid white;
}

.urgency-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    align-self: flex-start; /* Moves image to the top */
    margin-top: 10px; 
}

.urgency-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .urgency-section {
        padding: 50px 0;
    }
    
    .urgency-content {
        flex-direction: column;
    }
    
    .urgency-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .urgency-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .urgency-section {
        padding: 40px 0;
    }
    .urgency-image img {
    width: 100%;
}
.urgency-image {
    margin: 0;
}
    .urgency-header h2 {
        font-size: 1.5rem;
    }
    
    .challenges-title {
        font-size: 1rem;
    }
    
    .challenges-list li {
        font-size: 0.9rem;
    }
    
    .urgency-stat {
        font-size: 1rem;
    }
    
    .urgency-stat strong {
        font-size: 1.3rem;
    }
}



/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(16, 81, 130, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #eaeaea;
    position: relative;
}

/* Add blue gradient to FAQ cards like resource cards */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(360deg, var(--primary-blue), var(--light-blue));
    opacity: 0.8;
}

/* Rest of the CSS remains exactly the same */
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3e6a;
}

.faq-toggle {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.faq-toggle .fa-minus {
    opacity: 0;
}

.faq-item.active .faq-toggle .fa-plus {
    opacity: 0;
}

.faq-item.active .faq-toggle .fa-minus {
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    line-height: 1.6;
    color: #444;
}

.faq-cta p {
    margin-bottom: 20px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
    }
}



/* Scroll Animation Styles */
.reveal-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-animation.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.025s; }
.delay-2 { transition-delay: 0.05s; }
.delay-3 { transition-delay: 0.075s; }
.delay-4 { transition-delay: 0.1s; }



/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 81, 130, 0.596);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.popup-container {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  transform-origin: center;
}

.popup-header {
  background: var(--primary-blue);
  padding: 25px 30px;
  text-align: center;
  position: relative;
}

.popup-header h2 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.popup-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.popup-content {
  padding: 30px;
}

.popup-content p {
  text-align: center;
  margin-bottom: 25px;
  color: var(--gray);
  font-size: 1rem;
}

.form-group {
  margin-bottom: 20px;
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

input, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e1e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(16, 81, 130, 0.1);
  transform: translateY(-2px);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.popup-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.popup-submit-btn:hover {
  background: #0d426c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 81, 130, 0.3);
}

.popup-submit-btn:active {
  transform: translateY(0);
}

.popup-submit-btn.loading {
  position: relative;
  color: transparent;
}

.popup-submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.form-message {
  display: none;
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
  animation: bounceIn 0.5s ease;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to { 
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .popup-container {
    width: 95%;
    margin: 20px;
  }
  
  .popup-header {
    padding: 20px 25px;
  }
  
  .popup-content {
    padding: 25px;
  }
  
  input, textarea {
    padding: 12px 14px;
  }
}

