* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
          
        }

        body {
            background: #fff;
              font-family: 'Nunito Sans', sans-serif;
           
        }

        html, body {
            overflow-x: hidden;
        }

        :root{
            --topbar: #0e1a36;
            --white: #ffffff;
        }

        h1{
           font-family: 'Montserrat', sans-serif;
           font-size: 46px; 
        }

        h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
        /* ---------- TOPBAR ---------- */
        .topbar {
            background: var(--topbar);
            color: #fff;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 56px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1100;
            height: 40px;
        }

        .topbar .left i{
            margin-right: 14px;
            opacity: .95;
            cursor: pointer;
        }

        .topbar .right {
            display: flex;
            gap: 18px;
            align-items: center;
            opacity: .95;
        }

        .topbar .right i{
            margin-right: 6px;
        }

        /* ---------- HEADER ---------- */
        .header {
            width: 100%;
            height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            background:white;
            box-shadow: 0 1px 10px rgba(0,0,0,0.10);
            position: fixed;
            top: 40px;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            width: 80px;
        }

        .logo span {
            font-size: 22px;
            font-weight: 700;
            color: #222;
        }

        .navbar ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .navbar ul li {
            font-size: 16px;
            cursor: pointer;
            color: #111;
            font-weight: 500;
            transition: color 0.3s;
        }

        .navbar ul li:hover {
            color: #0e1a36;
        }

        .header-icons {
            display: flex;
            gap: 15px;
        }

        .icon {
            font-size: 22px;
            cursor: pointer;
            color: #333;
            transition: color 0.3s;
        }

        .icon:hover {
            color: #0e1a36;
        }

        /* ===========================
   PROFESSIONAL HAMBURGER MENU
=========================== */

/* HAMBURGER CONTAINER */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1100;
    padding: 8px;
    margin-left: 15px;
}

/* HAMBURGER ICON - ANIMATED LINES */
.hamburger-icon {
    width: 30px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background: #0e1a36;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger-line.line-1 {
    width: 100%;
}

.hamburger-line.line-2 {
    width: 85%;
    margin-left: auto;
}

.hamburger-line.line-3 {
    width: 70%;
    margin-left: auto;
}

/* HOVER EFFECTS */
.hamburger-menu:hover .hamburger-line {
    background: #3db3ff;
    width: 100% !important;
}

.hamburger-menu:hover .hamburger-line.line-2 {
    width: 100%;
}

.hamburger-menu:hover .hamburger-line.line-3 {
    width: 100%;
}

/* ACTIVE STATE (MENU OPEN) */
.hamburger-menu.active .hamburger-line.line-1 {
    transform: translateY(9.5px) rotate(45deg);
    width: 100%;
}

.hamburger-menu.active .hamburger-line.line-2 {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active .hamburger-line.line-3 {
    transform: translateY(-9.5px) rotate(-45deg);
    width: 100%;
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background: rgba(14, 26, 54, 0.95); */
    /* backdrop-filter: blur(10px); */
    z-index: 1050;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* MOBILE NAVIGATION */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1060;
    padding: 100px 40px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

/* MOBILE NAV LOGO */
.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-logo img {
    width: 80px;
}

.mobile-nav-logo span {
    font-size: 22px;
    font-weight: 700;
    color: #0e1a36;
}

/* Active link styling */
.navbar ul li a.active,
.mobile-nav ul li a.active {
    color: #3db3ff !important;
    position: relative;
}

.navbar ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3db3ff;
    border-radius: 2px;
}

.mobile-nav ul li a.active::before {
    opacity: 1 !important;
    left: -15px !important;
    background: #3db3ff;
}

.mobile-nav ul li a.active {
    color: #3db3ff !important;
    padding-left: 15px;
}

/* MOBILE NAV LINKS */
.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 0;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    padding: 18px 0;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav ul li a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #3db3ff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: #3db3ff;
    padding-left: 15px;
}

.mobile-nav ul li a:hover::before {
    opacity: 1;
    left: -15px;
}

.mobile-nav ul li:last-child a {
    border-bottom: none;
}

/* MOBILE NAV ICONS */
.mobile-nav-icons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mobile-nav-icons .icon {
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.mobile-nav-icons .icon:hover {
    color: #3db3ff;
    transform: translateY(-3px);
}

/* CLOSE BUTTON */
.mobile-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1070;
}

.mobile-close-btn:hover {
    background: #3db3ff;
    transform: rotate(90deg);
}

.mobile-close-btn i {
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover i {
    color: white;
}

/* ===========================
   RESPONSIVE UPDATES
=========================== */

@media (max-width: 1024px) {
    .navbar ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    .navbar {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    /* Adjust header for mobile */
    .header {
        padding: 0 20px;
    }
    
    .header-icons {
        margin-left: auto;
    }
    
    /* Mobile menu active state for header */
    .header.menu-open {
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    .hamburger-icon {
        width: 28px;
        height: 20px;
    }
    
    .hamburger-menu {
        margin-left: 10px;
    }
}

/* ===========================
   ANIMATION FOR MOBILE LINKS
=========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav.active ul li {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.mobile-nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav.active ul li:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav.active ul li:nth-child(6) { animation-delay: 0.6s; }

        /* ---------- HERO SLIDER ---------- */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 90vh;
            min-height: 600px;
            overflow: hidden;
            margin-top: 120px;
        }

        .slide {
            position: absolute;
            margin-top: 0px;
            pointer-events: none;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.3s ease-in-out;
        }

        .slide.active {
            opacity: 1;
            pointer-events: auto;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: rgba(14, 52, 79, 0.65); */
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: #fff;
            max-width: 710px;
        }

        /* Tagline styles */
        .hero-content p {
            font-size: 18px;
            opacity: 0.7;
            margin-bottom: 15px;
            letter-spacing: 1px;
            transform: translateY(30px);
            opacity: 0;
        }

        /* Main title styles */
        .hero-content h1,
        .hero-content h2 {
             font-family: 'Montserrat', sans-serif;
            font-size: 70px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        /* Subtitle/Description styles */
        .hero-content .description {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.5;
            font-weight: 300;
            opacity: 0.9;
            max-width: 500px;
            transform: translateY(30px);
            opacity: 0;
        }

        /* CTA button styles */
        .hero-content .cta-button {
            display: inline-block;
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            transform: translateY(30px);
            opacity: 0;
        }

        .hero-content .cta-button:hover {
            background: white;
            color: #0e1a36;
        }

/* =====================================================
   HERO RESPONSIVE — SECOND SLIDE (h2 + letter spans)
   Mirrors the exact breakpoints used for h1 on slide 1
   ===================================================== */

/* Mobile large <= 768px */
@media (max-width: 768px) {
    .second-slide .hero-content h2,
    .second-slide .hero-content .letter-animate {
        font-size: 30px !important;
        line-height: 1.2 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 2px !important;
    }
    .second-slide .hero-content .letter-animate span {
        font-size: 30px !important;
        margin: 0 1px !important;
        display: inline-block !important;
    }
    .second-slide .hero-content .letter-animate .space {
        width: 8px !important;
        min-width: 8px !important;
    }
    .second-slide .hero-content h2 br {
        display: none !important;
    }
    .second-slide .hero-content p {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
}

/* Mobile small <= 576px */
@media (max-width: 576px) {
    .second-slide .hero-content h2,
    .second-slide .hero-content .letter-animate {
        font-size: 26px !important;
    }
    .second-slide .hero-content .letter-animate span {
        font-size: 26px !important;
    }
}

/* Mobile XS <= 480px */
@media (max-width: 480px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }
    .hero-content .description {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
    .hero-content p {
        font-size: 12px !important;
    }
    .second-slide .hero-content h2,
    .second-slide .hero-content .letter-animate {
        font-size: 22px !important;
    }
    .second-slide .hero-content .letter-animate span {
        font-size: 22px !important;
    }
}

/* Mobile XXS <= 375px */
@media (max-width: 375px) {
    .second-slide .hero-content h2,
    .second-slide .hero-content .letter-animate {
        font-size: 20px !important;
    }
    .second-slide .hero-content .letter-animate span {
        font-size: 20px !important;
    }
}
/* ====================
   SLIDE INDICATORS 
   ==================== */
.slide-indicators {
    position: absolute;
    bottom: 60px; 
    left: 10%; 
    display: flex;
    gap: 12px;
    z-index: 10;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.2); */
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    margin-bottom: 60px;
}

.indicator-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.indicator-number:hover {
    color: white;
    border-color: white;
    transform: scale(1.1);
}

.indicator-number.active {
    background: white;
    color: #0e1a36;
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


        /* Slide counter */
        /* .slide-counter {
            position: absolute;
            bottom: 40px;
            right: 50px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            z-index: 10;
            background: rgba(0, 0, 0, 0.3);
            padding: 5px 15px;
            border-radius: 20px;
        } */

        /* Animation for tagline */
        .slide.active .hero-content p {
            animation: slideUpFadeIn 1s ease forwards;
            animation-delay: 0.3s;
        }

        /* Animation for description */
        .slide.active .hero-content .description {
            animation: slideUpFadeIn 1s ease forwards;
            animation-delay: 0.9s;
        }

        /* Animation for CTA button */
        .slide.active .hero-content .cta-button {
            animation: slideUpFadeIn 1s ease forwards;
            animation-delay: 1.2s;
        }

        /* Letter-by-letter animation for main title */
        /* .hero-content h1 span {
            display: inline-block;
            opacity: 0;
        }

        .slide.active .hero-content h1 span {
            animation: letterFadeIn 0.5s ease forwards;
        } */

        /* Stagger the letter animations */
        /* .slide.active .hero-content h1 span:nth-child(1) { animation-delay: 0.5s; }
        .slide.active .hero-content h1 span:nth-child(2) { animation-delay: 0.55s; }
        .slide.active .hero-content h1 span:nth-child(3) { animation-delay: 0.6s; }
        .slide.active .hero-content h1 span:nth-child(4) { animation-delay: 0.65s; }
        .slide.active .hero-content h1 span:nth-child(5) { animation-delay: 0.7s; }
        .slide.active .hero-content h1 span:nth-child(6) { animation-delay: 0.75s; }
        .slide.active .hero-content h1 span:nth-child(7) { animation-delay: 0.8s; }
        .slide.active .hero-content h1 span:nth-child(8) { animation-delay: 0.85s; }
        .slide.active .hero-content h1 span:nth-child(9) { animation-delay: 0.9s; } */

        /* Reset animation for next slide */
        /* .slide:not(.active) .hero-content p,
        .slide:not(.active) .hero-content .description,
        .slide:not(.active) .hero-content .cta-button,
        .slide:not(.active) .hero-content h1 span {
            animation: none;
            opacity: 0;
        } */

        /* Keyframes */
        /* @keyframes slideUpFadeIn {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes letterFadeIn {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        } */

/* letter base */
/* fallback: always show text */
.animate-text {
    opacity: 1;
}

/* letters created by JS */
.animate-text span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-60px);
}

/* animate only first slide */
.first-slide.active .animate-text span {
    animation: letterSlideIn 0.6s ease forwards;
}

@keyframes letterSlideIn {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Generic per-letter animation for title-animate and letter-animate */
.hero-content h1.title-animate span,
.hero-content h1.letter-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: letterPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    70% {
        opacity: 1;
        transform: translateY(-6px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* small spacer for explicit spaces inserted as spans */
.hero-content h1.title-animate .space,
.hero-content h1.letter-animate .space {
    display: inline-block;
    width: 10px;
    min-width: 10px;
}

/* Animation for tagline */
.slide.active .hero-content p {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

/* Animation for description */
.slide.active .hero-content .description {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 0.9s;
}

/* Animation for CTA button */
.slide.active .hero-content .cta-button {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

/* Add this for the main title of second slide */
.second-slide.active .hero-content h1 {
     font-family: 'Montserrat', sans-serif;
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 0.6s;
}

/* Keyframes for slide up */
@keyframes slideUpFadeIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for tagline */
.slide.active .hero-content p {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

/* Animation for description */
.slide.active .hero-content .description {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 0.9s;
}

/* Animation for CTA button */
.slide.active .hero-content .cta-button {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

/* Add this for the main title of second slide */
.second-slide.active .hero-content h1 {
     font-family: 'Montserrat', sans-serif;
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 0.6s;
}

/* Keyframes for slide up */
@keyframes slideUpFadeIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Reset for inactive slides */
.slide:not(.active) .hero-content p,
.slide:not(.active) .hero-content .description,
.slide:not(.active) .hero-content .cta-button,
.slide:not(.active) .hero-content h1 {
     font-family: 'Montserrat', sans-serif;
     animation: slideUpFadeIn 1s ease forwards;
    animation: none;
    opacity: 0;
    transform: translateY(50px);
}

/* Remove or comment out the old anime.js specific styles */
/*
.second-slide .fade-up-text,
.second-slide .anime-letters .letter {
    opacity: 0;
    transform: translateY(50px);
}
*/





/* Keep other text animations */
.hero-content p,
.hero-content .description,
.hero-content .cta-button {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

/* When slide is active, animate all elements with delays */
.slide.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide.active .hero-content .description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

.slide.active .hero-content .cta-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.4s;
}

/* Reset for next slide */
.slide:not(.active) .hero-content p,
.slide:not(.active) .hero-content .letter-animate span,
.slide:not(.active) .hero-content .description,
.slide:not(.active) .hero-content .cta-button {
    opacity: 0;
    transform: translateY(50px);
    transition-delay: 0s !important;
    animation: none !important;
}

/* LETTER BY LETTER ANIMATION - BOTTOM TO TOP */
.second-slide .letter-animate {
    display: inline-flex;
    position: relative;
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
}

.second-slide .hero-content p {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    transform: translateY(50px);
}

.second-slide .hero-content .description {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 1s; /* Wait for all letters to finish */
    opacity: 0;
    transform: translateY(50px);
}

.second-slide .hero-content .cta-button {
    animation: slideUpFadeIn 1s ease forwards;
    animation-delay: 1.3s; /* Wait a bit more */
    opacity: 0;
    transform: translateY(50px);
}

.second-slide .letter-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    animation: letterRiseUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes letterRiseUp {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    70% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger each letter with a small delay */
.second-slide.active .letter-animate span:nth-child(1) { animation-delay: 0.3s; }
.second-slide.active .letter-animate span:nth-child(2) { animation-delay: 0.35s; }
.second-slide.active .letter-animate span:nth-child(3) { animation-delay: 0.4s; }
.second-slide.active .letter-animate span:nth-child(4) { animation-delay: 0.45s; }
.second-slide.active .letter-animate span:nth-child(5) { animation-delay: 0.5s; }
.second-slide.active .letter-animate span:nth-child(6) { animation-delay: 0.55s; }
.second-slide.active .letter-animate span:nth-child(7) { animation-delay: 0.6s; }
.second-slide.active .letter-animate span:nth-child(8) { animation-delay: 0.65s; }
.second-slide.active .letter-animate span:nth-child(9) { animation-delay: 0.7s; }
.second-slide.active .letter-animate span:nth-child(10) { animation-delay: 0.75s; }

/* Other elements animation */
.hero-content p,
.hero-content .description,
.hero-content .cta-button {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide.active .hero-content .description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.2s; /* After letters finish */
}

.slide.active .hero-content .cta-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s;
}

/* Reset for inactive slides */
.slide:not(.active) .hero-content p,
.slide:not(.active) .letter-animate span,
.slide:not(.active) .hero-content .description,
.slide:not(.active) .hero-content .cta-button {
    opacity: 0;
    transform: translateY(50px);
    transition-delay: 0s !important;
    animation: none !important;
}

.navbar ul li a {
    text-decoration: none;
    color: inherit;
    padding: 8px 12px;
    display: block;
}

.navbar ul li a:hover {
    color: #667eea;
}

.navbar ul li a.active {
    color: #667eea;
    font-weight: bold;
}


        /* Content section below slider */
        .content-section {
            padding: 100px 50px;
            text-align: center;
            background: #f8f9fa;
        }

        .content-section h2 {
             font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            color: #0e1a36;
            margin-bottom: 20px;
        }

        .content-section p {
            font-size: 18px;
            color: #555;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

/* TOP TO BOTTOM ANIMATION FOR THIRD SLIDE */
.third-slide .animate-down {
    animation: slideDownFadeIn 1s ease forwards;
    opacity: 0;
    transform: translateY(-50px);
}

/* Title letters animation - top to bottom, letter by letter */
.third-slide .title-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(-100px);
    animation: letterDropDown 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Space between "IT" and "SERVICES" */
.third-slide .title-animate .space {
    width: 10px;
    min-width: 10px;
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes letterDropDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotateX(90deg);
    }
    50% {
        opacity: 1;
        transform: translateY(15px) rotateX(0deg) scale(1.1);
    }
    70% {
        transform: translateY(-5px) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Stagger animation for paragraph (first) */
.third-slide.active .hero-content p.animate-down {
    animation-delay: 0.3s;
}

/* Stagger animation for title letters */
/* "I" */
.third-slide.active .title-animate span:nth-child(1) { animation-delay: 0.6s; }
/* "T" */
.third-slide.active .title-animate span:nth-child(2) { animation-delay: 0.68s; }
/* space */
.third-slide.active .title-animate span:nth-child(3) { animation-delay: 0.76s; }
/* "S" */
.third-slide.active .title-animate span:nth-child(4) { animation-delay: 0.84s; }
/* "E" */
.third-slide.active .title-animate span:nth-child(5) { animation-delay: 0.92s; }
/* "R" */
.third-slide.active .title-animate span:nth-child(6) { animation-delay: 1.0s; }
/* "V" */
.third-slide.active .title-animate span:nth-child(7) { animation-delay: 1.08s; }
/* "I" */
.third-slide.active .title-animate span:nth-child(8) { animation-delay: 1.16s; }
/* "C" */
.third-slide.active .title-animate span:nth-child(9) { animation-delay: 1.24s; }
/* "E" */
.third-slide.active .title-animate span:nth-child(10) { animation-delay: 1.32s; }
/* "S" */
.third-slide.active .title-animate span:nth-child(11) { animation-delay: 1.4s; }

/* Stagger animation for description */
.third-slide.active .hero-content .description.animate-down {
    animation-delay: 1.7s; /* After title letters finish */
}

/* Stagger animation for button */
.third-slide.active .hero-content .cta-button.animate-down {
    animation-delay: 2.0s; /* After description */
}

/* Reset for inactive slides */
.slide:not(.active) .animate-down,
.slide:not(.active) .title-animate span {
    opacity: 0;
    /* transform: translateY(-50px); */
    animation: none !important;
}

.slide:not(.active) .animate-down {
    transform: translateY(-50px);
}

.slide:not(.active) .title-animate span {
    transform: translateY(-100px);
}

/* Ensure proper styling for third slide */
.third-slide .hero-content h1 {
     font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.third-slide .hero-content h1 span {
     font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

/* RIGHT TO LEFT ANIMATION FOR FIRST SLIDE */
.first-slide .slide-right {
    animation: slideRightFadeIn 1s ease forwards;
    opacity: 0;
    transform: translateX(100px);
}

/* Title letters animation - each letter slides from right */
.first-slide .animate-text span {
    display: inline-block;
    opacity: 0;
    transform: translateX(100px);
    animation: letterSlideRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideRightFadeIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes letterSlideRight {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    70% {
        opacity: 1;
        transform: translateX(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Stagger animation for paragraph (first) */
.first-slide.active .hero-content p.slide-right {
    animation-delay: 0.3s;
}

/* Stagger animation for title letters */
/* .first-slide.active .animate-text span:nth-child(1) { animation-delay: 0.6s; }  
.first-slide.active .animate-text span:nth-child(2) { animation-delay: 0.65s; } 
.first-slide.active .animate-text span:nth-child(3) { animation-delay: 0.7s; }  
.first-slide.active .animate-text span:nth-child(4) { animation-delay: 0.75s; } 
.first-slide.active .animate-text span:nth-child(5) { animation-delay: 0.8s; } 
.first-slide.active .animate-text span:nth-child(6) { animation-delay: 0.85s; }
.first-slide.active .animate-text span:nth-child(7) { animation-delay: 0.9s; }  
.first-slide.active .animate-text span:nth-child(8) { animation-delay: 0.95s; } 
.first-slide.active .animate-text span:nth-child(9) { animation-delay: 1.0s; }  
.first-slide.active .animate-text span:nth-child(10) { animation-delay: 1.05s; } 
.first-slide.active .animate-text span:nth-child(11) { animation-delay: 1.1s; }  */

/* Stagger animation for description */
.first-slide.active .hero-content .description.slide-right {
    animation-delay: 1.4s; /* After all letters finish */
}

/* Stagger animation for button */
.first-slide.active .hero-content .cta-button.slide-right {
    animation-delay: 1.7s; /* After description */
}

/* Reset for inactive slides */
.slide:not(.active) .slide-right,
.slide:not(.active) .animate-text span {
    opacity: 0;
    transform: translateX(100px);
    animation: none !important;
}


/* ═══════ ABOUT V2 — REDESIGNED ═══════ */
.about-v2 {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}
.about-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}
/* ── Left: Image stack ── */
.about-v2-left {
    flex: 0 0 46%;
    position: relative;
}
.about-v2-img-wrap {
    position: relative;
}
.about-v2-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.about-v2-img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.about-v2-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3db3ff, #7b4fe0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 28px rgba(61,179,255,0.35);
    z-index: 2;
}
.about-v2-badge strong {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.about-v2-badge span {
    font-size: 10px;
    text-align: center;
    line-height: 1.3;
    margin-top: 2px;
    opacity: 0.9;
}
/* ── Right: Content ── */
.about-v2-right {
    flex: 1;
}
.about-v2-tag {
    color: #7b4fe0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-v2-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    color: #0e1a36;
    margin-bottom: 16px;
}
.about-v2-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 28px;
}
/* Feature cards */
.about-v2-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
.about-v2-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #f8f9fb;
    transition: all 0.3s ease;
}
.about-v2-feat:hover {
    background: #eef4ff;
    transform: translateX(4px);
}
.about-v2-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3db3ff, #7b4fe0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.about-v2-feat h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0e1a36;
    margin: 0 0 4px;
}
.about-v2-feat p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}
/* Stats */
.about-v2-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.about-v2-stat {
    text-align: center;
}
.about-v2-stat strong {
    display: block;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    background: linear-gradient(100deg, #3db3ff, #7b4fe0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-v2-stat span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Button */
.about-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #3db3ff, #7b4fe0);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(61,179,255,0.3);
    transition: all 0.3s ease;
}
.about-v2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61,179,255,0.45);
}
/* ── Responsive ── */
@media (max-width: 991px) {
    .about-v2-container { flex-direction: column; gap: 40px; }
    .about-v2-left { flex: none; width: 100%; max-width: 500px; margin: 0 auto; }
    .about-v2-img-main { height: 320px; }
}
@media (max-width: 575px) {
    .about-v2 { padding: 60px 0; }
    .about-v2-img-main { height: 260px; }
    .about-v2-img-small { width: 130px; height: 100px; bottom: -20px; right: -10px; }
    .about-v2-badge { width: 85px; height: 85px; top: -14px; left: -10px; }
    .about-v2-badge strong { font-size: 22px; }
    .about-v2-badge span { font-size: 8px; }
    .about-v2-stats { gap: 20px; }
    .about-v2-feat { padding: 12px; }
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    width: 100%;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.about-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
}

.about-left {
    width: 48%;
}

.top-label {
    color: #7b4fe0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.25;
    color: #0e1a36;
    margin: 0 0 16px;
}

.desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.about-features {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.about-right {
    width: 48%;
    position: relative;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    
}

.section-tag {
    display: inline-block;
    background: linear-gradient(90deg, rgba(14, 52, 79, 0.1), rgba(14, 52, 79, 0.05));
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.section-tag span {
    color: #0e344f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.main-img-wrapper {
    position: relative;
    width: 100%;
}

/* Feature card */
.feature-box {
    width: 50%;
    cursor: pointer;
     transition: all 0.3s ease;
}

/* ICON IMAGE */
.feature-icon {
    width: 50px;
    margin-bottom: 15px;
     transition: transform 0.3s ease;
}

/* TITLE */
.feature-box h3 {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
      transition: color 0.3s ease;
}

/* LINE */
.feature-box .line {
    width: 100px;
    height: 3px;
    background: #ddd;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

/* Hover effect like reference */
.feature-box:hover .line {
    width: 100%;
    background: #0d6efd;
}


.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

/* TEXT */
.feature-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #6d6d6d;
}


/* active state */
.feature-box.active .line {
    width: 100%;
     background-color: #0d6efd;
}

.feature-box h3 {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.feature-box p {
    color: #555;
    line-height: 1.6;
}

/* Update or add these styles */
.learn-more-btn-container {
    position: absolute;
    bottom: 30px; /* Position from bottom - adjust as needed */
    right: 300px; 
    margin-top: 0;
    z-index: 10
}

.learn-more-btn {
     display: inline-block;
    padding: 12px 30px;
    /* background-color: #0066ff; */
    color:white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    margin-right: 0; /* Remove the 50% margin */
    transition: background-color 0.3s ease;
}


.main-img {
    width: 140%;
    /* border-radius: 10px; */
}

.small-img {
    position: absolute;
    width: 230px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.top-img {
    top: -40px;
    right: -60px;
}

.bottom-img {
    bottom: -60px;
    right: 40px;
}

.why-choose {
.card h3 { margin: 40px 0 15px; 
 font-family: 'Montserrat', sans-serif;}


.card p {
color: #cfd2ff;
font-size: 15px;
}


.card a {
display: inline-block;
margin-top: 25px;
color: #39c6ff;
text-decoration: none;
font-weight: 600;
}


.card .icon {
position: absolute;
right: 25px;
bottom: 25px;
width: 42px;
}


.stats {
display: grid;
grid-template-columns: 1fr 1fr;
margin-top: 90px;
}


.stat {
position: relative;
padding: 60px;
color: #fff;
text-align: left;
background-size: cover;
background-position: center;
}


.stat-left {
background-image: url('images/stat1.jpg');
}


.stat-right {
background-image: url('images/stat2.jpg');
}


.stat h3 {
     font-family: 'Montserrat', sans-serif;
font-size: 48px;
margin-bottom: 10px;
}


.stat h4 {
     font-family: 'Montserrat', sans-serif;
font-size: 22px;
margin-bottom: 10px;
}


.stat p { max-width: 420px; }


.overlay {
position: absolute;
inset: 0;
opacity: 0.85;
}


.overlay.blue { background: #2aa7ff; }
.overlay.purple { background: #7b61ff; }
}

/* WHY CHOOSE US SECTION */
.why-choose {
    background: linear-gradient(180deg, #1b1a3a, #22204a);
    padding: 120px 0 200px;
    color: #fff;
}

.why-container {
    width: 85%;
    margin: auto;
    text-align: center;
}

/* Header */
.why-tag {
    color: #7aa2ff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 60px;
}

/* MAIN SECTION */
.why-section {
    position: relative;
}

/* DARK BACKGROUND ONLY FOR TOP PART */
.why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(180deg, #1b1a3a, #22204a);
    z-index: -1;
}

/* CONTAINER */
.why-container {
    width: 85%;
    margin: auto;
}

/* =====================
   TOP (DARK AREA)
===================== */
.why-top {
     background: linear-gradient(180deg, #0e1a36 0%, #1b2141 100%);
    padding: 120px 0 160px;
    text-align: center;
    color: #fff;
}

.why-tag {
    color: #7aa2ff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 60px;
}

/* CARDS */
.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    position: relative;
    height: 340px;
    padding: 35px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
     cursor: pointer;
}

.why-card::before {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: all 0.3s ease;
     z-index: 1;
}

.why-card:hover::before {
      background: linear-gradient(135deg, rgba(61, 179, 255, 0.4), rgba(92, 197, 255, 0.5));
    transform: scale(1.15);
}

.why-card:hover {
    background: #ffffff;
    border-color: rgba(61, 179, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 88px;
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    z-index: 1;
     transition: color 0.4s ease;
}

.why-card:hover .card-number {
    color: rgba(61, 179, 255, 0.12);
}

.why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
    position: relative;
    z-index: 3;
    transition: color 0.4s ease;
}

.why-card:hover h3 {
    color: #0e1a36;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cfd3ff;
    max-width: 90%;
    position: relative;
    z-index: 3;
    transition: color 0.4s ease;
}

.why-card:hover p {
    color: #6d6d6d;
}

.why-card a {
    position: absolute;
    bottom: 35px;
    left: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #4da3ff;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.why-card:hover a {
    color: #0d6efd;
    transform: translateX(5px);
}

.card-icon {
    display: none;
}


/* CARD ICON - HOVER (COLORED) */
.why-card:hover .card-icon {
    display: none;
}

/* OPTIONAL: Add arrow animation to "LEARN MORE" */
.why-card a::after {
    content: "→";
    transition: transform 0.3s ease;
}

.why-card:hover a::after {
    transform: translateX(5px);
}

/* =====================
   BOTTOM (WHITE AREA)
===================== */
.why-bottom {
    
  
    margin-top: -80px; 
    
}

/* STATS */
.why-stats {
    display: flex;
    gap: 30px;
}

/* STAT CARD */
.stat-card {
    width: 50%;
    height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
}

/* BACKGROUND IMAGES */
.stat-left {
    background: url("images/country.jpg") center/cover no-repeat;
}

.stat-right {
    background: url("images/customer.jpg") center/cover no-repeat;
}

/* DARK OVERLAY */
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

@media (max-width: 1024px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-card {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-top {
        padding: 60px 20px 100px;
    }
    
    .why-title {
        font-size: 32px;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        height: auto;
        min-height: 280px;
        padding: 25px 20px;
    }
    
    .card-number {
        font-size: 72px;
    }
    
    .why-card::before {
        bottom: -80px;
        right: -80px;
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    .why-title {
        font-size: 28px;
    }
    
    .why-card {
        min-height: 260px;
    }
    
    .card-number {
        font-size: 60px;
        top: 15px;
        right: 15px;
    }
    
    .why-card h3 {
        font-size: 18px;
    }
    
    .why-card p {
        font-size: 13px;
    }
}

/* DIAGONAL COLORS
.stat-color {
    position: absolute;
    width: 140%;
    height: 140%;
    transform: rotate(-12deg);
    z-index: 2;
}

.left-color {
    bottom: -60%;
    left: -50%;
    background: rgba(0,153,255,0.45);
}

.right-color {
    top: -60%;
    right: -50%;
    background: rgba(155,81,224,0.45);
} */

/* TEXT */
.stat-content {
    position: relative;
    z-index: 3;
    padding: 50px;
    max-width: 75%;
}

.stat-content h3 {
     font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
}

.stat-content h4 {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 6px 0 10px;
}

.stat-content p {
    font-size: 14px;
    line-height: 1.6;
}

.stat-content h3,
.stat-content h4,
.stat-content p {
  text-align: center;
  margin-right: -80px;
}

.services-section {
    padding: 120px 0;
    background: #ffffff;
}

.services-container {
    width: 85%;
    margin: auto;
}

/* HEADER */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
}

.services-tag {
    color: #7a5cff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-title h2 {
     font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: #0e1a36;
}

/* BUTTON */
.services-btn {
    padding: 14px 26px;
    background: #3db3ff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}

.services-btn:hover {
    background: #259be6;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 60px;
}

/* SERVICE BOX */
.service-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 179, 233, 0.2);
    background: linear-gradient(135deg, rgba(62, 179, 233, 0.05), rgba(14, 26, 54, 0.05));
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.service-header img {
  width: 42px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-header h3 {
     font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0e1a36;
  margin: 0;
  transition: all 0.3s ease;
}

.service-box:hover .service-header h3 {
  color: #3db3ff;
}

.service-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    max-width: 95%;
    transition: all 0.3s ease;
}

.service-box:hover p {
    color: #0e1a36;
}

.hero {
max-width: 1200px;
margin: 60px auto;
height: 280px;
background: linear-gradient(135deg, #0e1a36 0%, #1a3a5c 100%);
position: relative;
overflow: hidden;
padding: 50px 80px;
color: #ffffff;
}


.hero-tag {
font-size: 16px;
letter-spacing: 0.5px;
margin-bottom: 20px;
opacity: 0.95;
}


.hero-title {
font-size: 54px;
font-weight: 800;
line-height: 1.15;
max-width: 700px;
}


.hero-btn {
position: absolute;
right: 80px;
top: 50%;
transform: translateY(-50%);
padding: 18px 38px;
border: 2px solid #ffffff;
color: #ffffff;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}


.hero-btn:hover {
background: #ffffff;
color: #0e1a36;
}


@media (max-width: 900px) {
.hero {
height: auto;
padding: 50px 30px 180px;
}


.hero-title {
font-size: 36px;
}


.hero-btn {
position: static;
transform: none;
display: inline-block;
margin-top: 30px;
}
}

h1, h2, h4, h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 800;
}
 p{
    font-family: 'Nunito Sans', sans-serif
 }

.case-studies,
.recent-projects {
  padding: 90px 0;
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.section-header .left {
  width: 45%;
}

.section-header .tag {
  color: #6f42c1;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
     font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0b0b0b;
}

.section-header .right {
  width: 45%;
}

.section-header .right p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b6b6b;
}

/* PROJECT GRID */
/* .projects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
} */

.project-card {
  position: relative;
  overflow: hidden;
  height: 360px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlays {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  height: 145px;
  background: #2c265c;
  padding: 22px;
  color: #fff;
  overflow: hidden;
}

.overlays::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08); /* default light circle */
  border-radius: 50%;
  transition: background 0.3s ease;
}

.project-card:hover .overlays::after {
  background: rgba(30, 144, 255, 0.35); /* blue circle on hover */
}

.overlays h3 {
     font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.overlays span {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.arrow {
  position: absolute;
  right: 22px;
  bottom: 60px;
  font-size: 22px;
  color: #6dd5ff;
}

/* CAROUSEL STYLES */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

.projects-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 25px;
}

.project-card {
  flex: 0 0 calc(25% - 19px); /* 4 cards per view with gap */
  height: 360px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* OVERLAY */
.project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 12.5px;
  right: 12.5px;
  height: 115px;
  background: #2c265c;
  padding: 22px;
  color: #fff;
  border-radius: 0 0 4px 4px;
  margin: 0;
  box-sizing: border-box;
}

/* For first and last card overlays */
.project-card:first-child .overlay {
  left: 0;
}

.project-card:last-child .overlay {
  right: 0;
}

.overlay::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.project-card:hover .overlay::after {
  background: rgba(30, 144, 255, 0.35);
}

.overlay h3 {
     font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.overlay span {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.arrow {
  position: absolute;
  right: 22px;
  bottom: 60px;
  font-size: 22px;
  color: #6dd5ff;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 38, 92, 0.9);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: rgba(44, 38, 92, 1);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .carousel-container {
    padding: 0 30px;
  }

  .project-card {
    flex: 0 0 calc(33.333% - 17px); /* 3 cards on tablet */
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
  
  .project-card {
    flex: 0 0 100%; /* 1 card on mobile */
    padding: 0;
    height: 300px;
  }
  
  .project-card .overlay {
    left: 0;
    right: 0;
  }
  
  .container {
    width: 95%;
  }
}

/* Ensure container has proper width */
.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}

/* TECHNOLOGY INDEX */
.technology-index {
  position: relative;
  height: 420px;
  background: url("images/technology.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* DARK BLUE OVERLAY */
.tech-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(14, 26, 54, 0.88); */
}

/* CONTENT */
.tech-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 85%;
}

/* TAG */
.tech-tag {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.85;
  display: block;
  margin-bottom: 14px;
}

/* TITLE */
.tech-content h2 {
     font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* GRID */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

/* CARD */
.tech-card {
  border: 1px solid rgba(255,255,255,0.35);
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

/* ICON */
.tech-card i {
  font-size: 36px;
  opacity: 0.9;
}

/* TEXT */
.tech-card p {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0;
}

/* HOVER (matches premium theme) */
.tech-card:hover {
  background: rgba(255,255,255,0.08);
  background-color: #3db3ff;
}
/* ===============================
   TRUSTED CLIENTS — 2 CARDS CENTERED
================================ */

.trusted-section {
    background: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

.trusted-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

/* MAP AREA */
.trusted-map {
    position: relative;
    min-height: 600px;
    background: url("images/map.png") center / contain no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Keep hidden to hide extra cards */
}

/* HEADER INSIDE MAP */
.trusted-header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    margin-bottom: 20px;
    width: 90%;
}

.trusted-tag {
    font-size: 14px;
    font-weight: 600;
    color: #7a5cff;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.trusted-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: #0e1a36;
    margin: 0;
}

/* CAROUSEL WRAPPER - CENTERS 2 CARDS */
.trusted-cards-container {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px; /* Width for 2 cards + gap */
    overflow: hidden;
    z-index: 1;
}

/* CARD WRAPPER */
.trusted-cards {
    display: flex;
    gap: 40px;
    transition: transform 0.6s ease;
    transform: translateX(0);
}

/* CARD */
.trusted-card {
    width: 530px;
    min-width: 530px;
    min-height: 180px;
    background: #ffffff;
    padding: 20px 28px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.trusted-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 10px 25px rgba(0,0,0,0.08);
}

/* CARD HEADER */
.trusted-card-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.trusted-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trusted-logo img {
    width: 28px;
}

.trusted-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0e1a36;
    margin: 0;
}

.trusted-card span {
    font-size: 14px;
    color: #8a8a8a;
}

.trusted-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6d6d6d;
}

/* ARROWS */
.trusted-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trusted-prev {
    left: 10px;
}

.trusted-next {
    right: 10px;
}

.trusted-arrow:hover {
    background: #3db3ff;
    color: #fff;
    border-color: #3db3ff;
    transform: translateY(-50%) scale(1.1);
}

.trusted-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
============================================= */

/* Large Desktop */
@media (max-width: 1400px) {
    .trusted-cards-container {
        width: 1000px;
    }
    
    .trusted-card {
        width: 480px;
        min-width: 480px;
    }
    
    .trusted-prev {
        left: 50px;
    }
    
    .trusted-next {
        right: 50px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .trusted-cards-container {
        width: 900px;
    }
    
    .trusted-card {
        width: 430px;
        min-width: 430px;
    }
    
    .trusted-title {
        font-size: 32px;
    }
    
    .trusted-prev {
        left: 30px;
    }
    
    .trusted-next {
        right: 30px;
    }
}

/* Tablet - Show 1 card centered */
@media (max-width: 992px) {
    .trusted-section {
        padding: 80px 0;
    }
    
    .trusted-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .trusted-map {
        background: none;
        min-height: auto;
        padding: 0;
        display: block;
        overflow: visible;
        position: static;
    }
    
    .trusted-header {
        position: static;
        transform: none;
        margin-bottom: 40px;
        text-align: left;
        width: 100%;
    }
    
    .trusted-cards-container {
        position: static;
        transform: none;
        width: 100%;
        overflow: visible;
    }
    
    .trusted-cards {
        flex-direction: column;
        gap: 30px;
        transform: none !important;
    }
    
    .trusted-card {
        width: 100% !important;
        min-width: 100%;
    }
    
    .trusted-arrow {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 0;
    }
    
    .trusted-container {
        padding: 0 15px;
    }
    
    .trusted-title {
        font-size: 26px;
    }
    
    .trusted-card {
        padding: 20px;
    }
    
    .trusted-card h4 {
        font-size: 16px;
    }
    
    .trusted-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .trusted-title {
        font-size: 24px;
    }
    
    .trusted-card {
        padding: 18px;
    }
    
    .trusted-card p {
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .trusted-title {
        font-size: 22px;
    }
    
    .trusted-card {
        padding: 16px;
    }
    
    .trusted-card h4 {
        font-size: 14px;
    }
    
    .trusted-card p {
        font-size: 12px;
    }
}
/* FOOTER BASE */
/* =========================
   FOOTER – FULL RESPONSIVE
========================= */

.footer {
  background: #1c1b3a;
  background-image: url("images/image.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 20px 40px;
  
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* LOGO */
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.footer-logo img {
  width: 80px;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 600;
}

/* INFO BOXES */
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.info-box {
  text-align: center;
}

.info-box .icon {
  font-size: 22px;
  color: #3db3ff;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 15px;
  margin-bottom: 4px;
}

.info-box span {
  font-size: 13px;
  color: #b7b9ff;
}

/* MENU */
.footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;        
  gap: 28px;
  padding: 0;
  margin: 25px 0 20px;
}

.footer-menu li {
  margin: 0;
}

.footer-menu li a {
  text-decoration: none;
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;     /* prevents breaking words */
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: #3db3ff;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #b7b9ff;
  margin-bottom: 25px;
  line-height: 1.6;
  padding: 0 15px;        
}

/* SOCIAL */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #1c1b3a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #3db3ff;
  color: #ffffff;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Tablet */
@media (max-width: 900px) {
  .footer-info {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-logo span {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .footer-menu {
    gap: 18px;
  }

  .footer-menu li a {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer {
    padding: 60px 15px 35px;
  }

  .footer-logo img {
    width: 30px;
  }

  .footer-logo span {
    font-size: 18px;
  }

  .info-box p {
    font-size: 14px;
  }

  .footer-menu {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* ============================================
   RESPONSIVE STYLES FOR ALL DEVICES
============================================ */

/* ---------- GENERAL RESPONSIVE ---------- */
@media (max-width: 1200px) {
    .container,
    .services-container,
    .why-container,
    .trusted-container,
    .about-container {
        width: 90% !important;
    }
    
    .hero-content h1,
    .hero-content h2,
    .why-title,
    .services-title h2,
    .tech-content h2,
    .trusted-title,
    .about-left h1 {
        font-size: 52px !important;
    }
}

/* ---------- TABLET (768px - 1024px) ---------- */
@media (max-width: 1024px) {
    /* Topbar */
    .topbar {
        padding: 8px 30px !important;
        font-size: 12px !important;
    }
    
    .topbar .right {
        gap: 12px !important;
    }
    
    /* Header */
    .header {
        padding: 0 30px !important;
        height: 70px !important;
    }
    
    .logo span {
        font-size: 18px !important;
    }
    
    .logo img {
        width: 40px !important;
    }
    
    .navbar ul {
        gap: 20px !important;
    }
    
    .navbar ul li {
        font-size: 14px !important;
    }
    
    /* Hero Slider */
    /* .hero-slider {
        height: 0vh !important;
        min-height: 500px !important;
        margin-top: 110px !important;
    } */
    
    .hero-content {
        left: 5% !important;
        max-width: 500px !important;
    }
    
    .hero-content h1,
    .hero-content h2 {
        font-size: 42px !important;
    }
    
    .hero-content .description {
        font-size: 17px !important;
    }
    
    /* About Section */
    .about-container {
        flex-direction: column !important;
        gap: 50px !important;
    }
    
    .about-left,
    .about-right {
        width: 100% !important;
    }
    
    .main-img {
        width: 100% !important;
    }
    
    .learn-more-btn-container {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 30px !important;
        text-align: left !important;
    }
    
    /* Why Choose Section */
    .why-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 30px !important;
    }
    
    .services-header {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: flex-start !important;
    }
    
    /* Technology Grid */
    .tech-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    
    /* Trusted Section */
    .trusted-cards {
        gap: 20px !important;
        top: 200px !important;
    }
    
    .trusted-card {
        width: 400px !important;
    }
    
    /* Carousel */
    .project-card {
        flex: 0 0 33.333% !important;
    }
}

/* ---------- MOBILE LARGE (576px - 768px) ---------- */
@media (max-width: 768px) {
    /* Topbar - Hide on mobile */
    .topbar {
        display: none !important;
    }
    
    /* Header - Mobile menu style */
    .header {
        padding: 0 20px !important;
        height: 60px !important;
        top: 0 !important;
    }
    
    .navbar ul {
        display: none !important; /* Will be replaced with mobile menu */
    }
    
    .header-icons {
        gap: 10px !important;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: block !important;
        font-size: 24px;
        cursor: pointer;
        color: #333;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 60vh !important;
        min-height: 400px !important;
        margin-top: 60px !important;
    }
    
    .hero-content {
        left: 20px !important;
        right: 20px !important;
        transform: translateY(-50%) !important;
        
    }
    
    .hero-content h1,
    .hero-content h2 {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }
    
    .hero-content p {
        font-size: 13px !important;
    }
    
    .hero-content .description {
        font-size: 14px !important;
        max-width: 100% !important;
    }
    
    .cta-button {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
    
    .slide-indicator {
        bottom: 20px !important;
    }
    
    .slide-counter {
        bottom: 20px !important;
        right: 20px !important;
        font-size: 14px !important;
    }
    
    /* About Section */
    .about-section {
        padding: 60px 20px !important;
    }
    
    .about-features {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .feature-box {
        width: 100% !important;
    }
    
    .about-left h1 {
        font-size: 32px !important;
    }
    
    .desc {
        font-size: 16px !important;
    }
    
    /* Why Choose Section */
    .why-top {
        padding: 60px 20px 100px !important;
    }
    
    .why-cards {
        grid-template-columns: 1fr !important;
    }
    
    .why-card {
        height: auto !important;
        min-height: 300px !important;
    }
    
    .why-stats {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .stat-card {
        width: 100% !important;
        height: 220px !important;
    }
    
    .stat-content {
        padding: 30px !important;
    }
    
    .stat-content h3 {
        font-size: 36px !important;
    }
    
    .stat-content h4 {
        font-size: 18px !important;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 20px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .services-title h2 {
        font-size: 32px !important;
    }
    
    /* Hero Banner */
    .hero {
        margin: 40px auto !important;
        padding: 40px !important;
        height: auto !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 32px !important;
    }
    
    .hero-btn {
        position: static !important;
        transform: none !important;
        display: inline-block !important;
        margin-top: 20px !important;
    }
    
    /* Case Studies */
    .recent-projects {
        padding: 60px 20px !important;
    }
    
    .section-header {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .section-header .left,
    .section-header .right {
        width: 100% !important;
    }
    
    .project-card {
        flex: 0 0 50% !important;
        height: 300px !important;
    }
    
    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }
    
    .prev-btn {
        left: 10px !important;
    }
    
    .next-btn {
        right: 10px !important;
    }
    
    /* Technology Section */
    .technology-index {
        height: auto !important;
        padding: 60px 20px !important;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .tech-card {
        height: 100px !important;
    }
    
    .tech-card i {
        font-size: 28px !important;
    }
    
    /* Trusted Section */
    .trusted-section {
        padding: 60px 20px !important;
    }
    
    .trusted-map {
        margin-top: 0 !important;
        min-height: auto !important;
        background: none !important;
    }
    
    .trusted-header {
        position: static !important;
        transform: none !important;
        margin-bottom: 40px !important;
        text-align: left !important;
    }
    
    .trusted-cards {
        position: static !important;
        transform: none !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .trusted-card {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    .trusted-arrow {
        display: none !important;
    }
    
    /* Footer */
    .footer {
        padding: 60px 20px 30px !important;
    }
    
    .footer-info {
        flex-direction: column !important;
        gap: 30px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .footer-menu {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 15px !important;
    }
    
    .footer-menu li {
        margin-bottom: 10px !important;
    }
    
    .footer-logo {
        margin-bottom: 40px !important;
    }
}

/* ---------- MOBILE SMALL (up to 576px) ---------- */
@media (max-width: 576px) {
    /* General spacing */
    .hero-slider,
    .about-section,
    .why-section,
    .services-section,
    .recent-projects,
    .trusted-section,
    .footer {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Header adjustments */
    .header {
        padding: 0 15px !important;
    }
    
    .logo span {
        font-size: 16px !important;
    }
    
    /* Hero Slider */
    .hero-content h1,
    .hero-content h2 {
        font-size: 26px !important;
    }
    
    .hero-content .description {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    /* About Section */
    .about-left h1 {
        font-size: 28px !important;
    }
    
    .desc {
        font-size: 15px !important;
    }
    
    /* Why Choose Section */
    .why-title {
        font-size: 28px !important;
    }
    
    .why-card {
        padding: 25px 20px !important;
        min-height: 280px !important;
    }
    
    /* Services Section */
    .services-title h2 {
        font-size: 28px !important;
    }
    
    /* Hero Banner */
    .hero-title {
        font-size: 28px !important;
    }
    
    /* Case Studies */
    .project-card {
        flex: 0 0 100% !important;
    }
    
    .section-header h2 {
        font-size: 28px !important;
    }
    
    /* Technology Section */
    .tech-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .tech-card {
        flex-direction: row !important;
        justify-content: flex-start !important;
        padding: 0 20px !important;
        height: 70px !important;
        gap: 15px !important;
    }
    
    .tech-content h2 {
        font-size: 28px !important;
    }
    
    /* Trusted Section */
    .trusted-title {
        font-size: 28px !important;
    }
    
    .trusted-card-header {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    /* Footer */
    .footer-menu {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
   
}

/* ---------- VERY SMALL DEVICES (up to 375px) ---------- */
@media (max-width: 375px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 20px !important;
    }
    .hero-content p {
        font-size: 11px !important;
    }
    .hero-content .description {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }
    
    .cta-button {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
    
    .about-left h1,
    .why-title,
    .services-title h2,
    .section-header h2,
    .tech-content h2,
    .trusted-title {
        font-size: 24px !important;
    }
    
    .icon {
        font-size: 18px !important;
    }
    
    .header-icons {
        gap: 8px !important;
    }
    
    .feature-box h3 {
        font-size: 18px !important;
    }
}

/* ---------- TABLET LANDSCAPE (768px - 1024px) ORIENTATION ---------- */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh !important;
    }
    
    .hero-content h1,
    .hero-content h2 {
        font-size: 38px !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ---------- DESKTOP LARGE (above 1440px) ---------- */
@media (min-width: 1440px) {
    .container,
    .services-container,
    .why-container,
    .trusted-container,
    .about-container {
        width: 85% !important;
        max-width: 1400px !important;
    }
    
    .hero-content {
        left: 15% !important;
        max-width: 700px !important;
    }
    
    .hero-content h1,
    .hero-content h2 {
        font-size: 80px !important;
    }
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .topbar,
    .header-icons,
    .cta-button,
    .hero-btn,
    .services-btn,
    .carousel-btn,
    .trusted-arrow,
    .footer-social {
        display: none !important;
    }
    
    .hero-slider,
    .technology-index,
    .trusted-map {
        height: auto !important;
        min-height: auto !important;
    }
    
    .hero-content,
    .tech-content {
        position: static !important;
        transform: none !important;
        color: #000 !important;
    }
    
    .overlay,
    .tech-overlay,
    .stat-card::before {
        display: none !important;
    }
}

/* Align slide indicators with the hero content alignment at common breakpoints */
.slide-indicators {
    margin-top: 10px;
    position: absolute;
    left: 18%; /* desktop default requested */
    bottom: 10px; /* desktop vertical positioning */
    transform: none;
    z-index: 10;
}

/* Slightly reduce left offset on very large but not full-width screens */
@media (max-width: 1400px) {
    .slide-indicators {
        left: 12%;
        bottom: -20px;
    }
}

/* Tablet: reduce left offset and bring indicators a bit lower */
@media (max-width: 1024px) {
    .slide-indicators {
        left: 8%;
        bottom: 28px;
    }
}

/* Mobile: center indicators under the hero content */
@media (max-width: 768px) {
    .slide-indicators {
        left: 50%;
        transform: translateX(-50%);
        bottom: 8px;
    }
}

/* Small phones: tighten vertical spacing */
@media (max-width: 480px) {
    .slide-indicators {
        bottom: -2px;
    }
}

/* BREADCRUMB STYLES */
.breadcrumb-hero {
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
}

.breadcrumb-hero .breadcrumb,
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #ffffff !important;
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 12px 5px;
    border-radius: 4px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #fff;
    font-weight: 600;
    margin: 0 4px;
}

        /* ===================================
   CUSTOM ALERT STYLES
   =================================== */

.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    overflow: hidden;
    animation: slideInRight 0.4s ease-out;
    font-family: 'Montserrat', sans-serif;
    border-left: 4px solid #4CAF50;
}

.custom-alert.error {
    border-left-color: #f44336;
}

.custom-alert.warning {
    border-left-color: #ff9800;
}

.custom-alert.info {
    border-left-color: #2196F3;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.alert-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.alert-header {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    padding-right: 50px;
    position: relative;
}

.alert-icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.custom-alert.success .alert-icon {
    color: #4CAF50;
}

.custom-alert.error .alert-icon {
    color: #f44336;
}

.custom-alert.warning .alert-icon {
    color: #ff9800;
}

.custom-alert.info .alert-icon {
    color: #2196F3;
}

.alert-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.alert-message {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.alert-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.alert-progress {
    height: 100%;
    background: #4CAF50;
    width: 100%;
    animation: progressShrink linear forwards;
}

.custom-alert.error .alert-progress {
    background: #f44336;
}

.custom-alert.warning .alert-progress {
    background: #ff9800;
}

.custom-alert.info .alert-progress {
    background: #2196F3;
}

@keyframes progressShrink {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .custom-alert {
        width: 90%;
        max-width: 350px;
        right: 5%;
        left: 5%;
    }
}
.topbar .left a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}
.topbar .left a:hover {
    opacity: 0.75;
}
.feature-purple { background: #7b4fe0; }
.feature-blue   { background: #35b4ff; }
.feature-dark   { background: #1f235c; }
.trusted-logo span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1;
    text-align: center;
}

/* ═══════ ML6 LETTER ANIMATION (Global) ═══════ */
.ml6-title {
    position: relative;
    overflow: hidden;
}
.ml6-title .letter {
    display: inline-block;
    line-height: 1.1em;
    transform-origin: 0 100%;
    opacity: 0;
}
.ml6-sub {
    position: relative;
    overflow: hidden;
}
.ml6-sub .letter {
    display: inline-block;
    line-height: 1.1em;
    transform-origin: 0 100%;
    opacity: 0;
}

/* AOS loaded via script.js */