* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F8;
        }
        
        
        /* Navbar Styles */
        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 42px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }

        .navbar-nav .nav-link.active {
            color: #86BC25 !important;
        }

        .navbar-nav .dropdown-toggle.active {
            color: black !important;
        }
        
        .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

        
    .btn-get-started:hover {
    background: #86BC25;
}

        
        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: stretch;
            overflow: hidden;
            position: relative;
        }

        .hero-right {
            border-radius: 0;
            overflow: hidden;
            background-image: url("../images/home.jpg");
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            width: 100%;
            margin-top: calc(-1 * clamp(1rem, 2vw, 2rem));
            margin-bottom: calc(-1 * clamp(2.5rem, 5vw, 4.5rem));
            margin-right: calc(-1 * clamp(2.5rem, 5vw, 4.5rem));
        }
        /* HERO BASE */
        


        .hero-content {
            width: 100%;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            padding: clamp(1rem, 2vw, 2rem) 0 clamp(2.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4.5rem);
            align-items: stretch;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            justify-content: center;
        }

        .hero-left h1 {
            margin: 0;
            font-weight: 700;
            font-size: 3.3rem;
        }
        .hero h1 .highlight {
            color: #86bc25;
        }
        

        .hero-left hr {
            border: none;
            height: 3px;
            background-color: rgb(0, 0, 0);
        }

        .hero-subheading {
            font-size: 1.3rem;
            font-weight: 200;
            color: black;
            margin: 0;
            line-height: 1.3;
            letter-spacing: 0.02em;
            text-transform: none;
            text-align: left;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.6rem;
        }

        .hero-cta a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
        }

        .hero-btn-primary {
            background-color:#86BC25 ;
            color:black;
            border: none;
        }

        .hero-btn-primary:hover,
        .hero-btn-primary:focus-visible {
            background-color:black;
            color: #fff;
        }

        .hero-btn-secondary {
            background-color: black;
            color: white;
            
            
        }
      

        .hero-btn-primary:hover,
        .hero-btn-primary:focus-visible {
            background-color: black;
        }


        .hero-btn-secondary:hover,
        .hero-btn-secondary:focus-visible {
            background-color: #86BC25;
        }

        /* .hero-right {
            background-image: url("/static/images/home.jpg");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 500px;
            width: 100%;
            border-radius: 24px;
        } */

        @media (max-width: 768px) {
            .hero {
                min-height: 100vh;
                padding: clamp(1.5rem, 4vw, 2rem) 1rem;
                background-image: url("/static/images/hero.png");
                background-size: cover;
                background-position: center top;
                background-repeat: no-repeat;
                background-color: #f4f6f7;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: clamp(1.25rem, 3vw, 1.75rem);
                position: relative;
                z-index: 2;
            }

            .hero-left {
                position: relative;
                z-index: 3;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.92));
                border-radius: 32px;
                padding: clamp(1.75rem, 5vw, 2.5rem);
                box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
                max-width: 640px;
                margin: 0 auto;
                -webkit-backdrop-filter: blur(18px);
                backdrop-filter: blur(18px);
            }

            .hero-left h1 {
                font-size: clamp(2.4rem, 5vw, 2.8rem);
            }

            .hero-subheading {
                text-align: center;
                font-size: 1.2rem;
                line-height: 1.4;
            }

            .hero-left h1,
            .hero-left p,
            .hero-subheading {
                color: #111;
                text-shadow: none;
            }

            .hero-cta {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.75rem;
                flex-direction: column;
                align-items: stretch;
            }

            .hero-cta a {
                flex: none;
                width: 100%;
                min-width: initial;
                text-align: center;
                justify-content: center;
            }

            .hero-right {
                min-height: clamp(320px, 50vw, 420px);
                border-radius: 28px;
                margin-top: clamp(2rem, 5vw, 2.5rem);
                margin-bottom: clamp(1rem, 3vw, 1.5rem);
                margin-right: 0;
                overflow: hidden;
                box-shadow: 0 30px 45px rgba(0, 0, 0, 0.18);
                max-width: 100%;
            }

            body.dark-mode .hero {
                background-color: #0d0f12;
                background-image: none;
            }

            body.dark-mode .hero-left {
                background: rgba(9, 11, 15, 0.92);
                box-shadow: 0 35px 55px rgba(0, 0, 0, 0.5);
            }

            body.dark-mode .hero-left h1,
            body.dark-mode .hero-left p,
            body.dark-mode .hero-subheading {
                color: #fff;
                text-shadow: 0 6px 25px rgba(0, 0, 0, 0.8);
            }

            body.dark-mode .hero-left .hero-cta a {
                border-color: rgba(255, 255, 255, 0.6);
                background-color: rgba(0, 0, 0, 0.04);
            }

            body.dark-mode .hero-left .hero-cta .hero-btn-primary {
                background-color: #86BC25 !important;
                color: #000 !important;
                border-color: #86BC25 !important;
            }
        }
        @media (max-width: 480px) {
            .hero-left h1 {
                font-size: clamp(1.8rem, 8vw, 2.4rem);
            }

            .hero-subheading {
                font-size: 1.05rem;
                line-height: 1.4;
                text-align: center;
            }

            .hero-cta {
                align-items: stretch;
            }

            .hero-cta a {
                width: 100%;
                padding: 0.65rem 1rem;
                font-size: 1rem;
                border-radius: 12px;
                justify-content: center;
                align-items: center;
            }

            .hero-right {
                margin-top: 1.5rem;
                min-height: 300px;
            }
        }

        /* Mission and Vision Section */
        .mission-vision-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .mission-vision-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .mission-card, .vision-card {
            padding: 2.5rem;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        .mission-card h2, .vision-card h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .mission-card h2 .keyword, .vision-card h2 .keyword {
            color: #86BC25;
        }

        .mission-card p, .vision-card p {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            margin: 1.5rem 0;
        }

        .mission-icon, .vision-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #e3f2fd;
            border-radius: 8px;
            margin-right: 0.5rem;
        }

        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #1a1a1a;
            color: #e0e0e0;
        }

        body.dark-mode .navbar {
            background-color: #2a2a2a;
            box-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        body.dark-mode .navbar-nav .nav-link {
            color: #e0e0e0 !important;
        }

        body.dark-mode .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }

        body.dark-mode .navbar-nav .nav-link.active {
            color: #86BC25 !important;
        }

        body.dark-mode .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }

        body.dark-mode .hero {
            position: relative;
            background-color:#1a1a1a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .hero-content {
            position: relative;
            z-index: 2;
        }

        body.dark-mode .hero h1,
        body.dark-mode .hero-content h1,
        body.dark-mode .hero h2,
        body.dark-mode .hero-content h2 {
            color: white !important;
        }

        body.dark-mode .hero p,
        body.dark-mode .hero-content p {
            color: #d1dbff !important;
        }

        body.dark-mode .hero h1 .highlight {
            color: #86bc25;
        }

        body.dark-mode .hero-left hr {
            background-color: white;
        }

        body.dark-mode .hero p strong,
        body.dark-mode .hero-content p strong {
            color: #ffffff !important;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
        }

        body.dark-mode .hero-btn-primary {
            background-color:#86BC25 ;
            color: black;
            border: none;
            box-shadow: 0 14px 30px rgba(15, 42, 15, 0.45);
        }
         body.dark-mode .hero-btn-primary:hover {
            background-color:#fff ;
            color: black;
            border: none;
            box-shadow: 0 14px 30px rgba(15, 42, 15, 0.45);
        }

        body.dark-mode .hero-btn-secondary {
            background-color: black;
            color: white;
            
        }
        body.dark-mode .hero-btn-secondary:hover {
            background-color: #86BC25;
            color:black;
        }

        body.dark-mode .mission-vision-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .mission-card,
        body.dark-mode .vision-card {
            background-color: #2a2a2a;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        body.dark-mode .mission-card:hover,
        body.dark-mode .vision-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.5);
        }

        body.dark-mode .mission-card h2,
        body.dark-mode .vision-card h2 {
            color: #ffffff;
        }

        body.dark-mode .mission-card p,
        body.dark-mode .vision-card p {
            color: #b0b0b0;
        }

        body.dark-mode .mission-icon,
        body.dark-mode .vision-icon {
            background-color: #1a3a52;
        }

        body.dark-mode .core-values-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .core-values-container h2,
        body.dark-mode .values-header h2 {
            color: #ffffff;
        }

        body.dark-mode .values-subtitle {
            color: #b0b0b0;
        }

        body.dark-mode .value-card {
            background-color: #2a2a2a;
            border-color: #3a3a3a;
        }

        body.dark-mode .value-card h3 {
            color: #ffffff;
        }

        body.dark-mode .value-card p {
            color: #b0b0b0;
        }

        body.dark-mode .value-subtitle-text {
            color: #b0b0b0;
        }

        body.dark-mode .value-item h5 {
            color: #ffffff;
        }

        body.dark-mode .value-item p {
            color: #b0b0b0;
        }

        body.dark-mode .value-card-icon {
            color: #4a9eff;
        }

        body.dark-mode .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}



        body.dark-mode .btn-get-started:hover {
    background: #86BC25;
}


        body.dark-mode .mission-vision-container h2 {
            color: #ffffff !important;
        }

        .mission-vision-container span[style*="color: #666"] {
            color: #555 !important;
        }

        .mission-vision-container p {
            color: #555 !important;
        }

        body.dark-mode .mission-vision-container span[style*="color: #666"] {
            color: #b0b0b0 !important;
        }

        body.dark-mode .mission-vision-container p {
            color: #b0b0b0 !important;
        }

        body.dark-mode .ai-testimonial-section {
            background-color: #86BC25;
            color: #e5e7eb;
        }

        body.dark-mode .ai-card {
            background-color: #86BC25;
            color: #000;
        }

        body.dark-mode .ai-card h3 {
            color: #000;
        }

        body.dark-mode .ai-card span,
        body.dark-mode .ai-card .ai-stars {
            color: #000;
        }

        body.dark-mode .ai-card p {
            color:#000;
        }
        body.dark-mode .ai-quote{
            color: #000;
        }

        .vision-icon {
            background-color: #f3e5f5;
        }

        body.dark-mode .mission-vision-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .mission-card, body.dark-mode .vision-card {
            background-color: #222222;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        body.dark-mode .mission-card:hover, body.dark-mode .vision-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
        }

        body.dark-mode .mission-card h2, body.dark-mode .vision-card h2 {
            color: #ffffff;
        }

        body.dark-mode .mission-card p, body.dark-mode .vision-card p {
            color: #b0b0b0;
        }

        body.dark-mode .mission-icon {
            background-color: #1f3a7a;
        }

        body.dark-mode .vision-icon {
            background-color: #3a1a4a;
        }

        body.dark-mode .industries-container h2 {
            color: #ffffff;
        }

        body.dark-mode .clients-container h2 {
            color: #ffffff;
        }


        body.dark-mode .industries-highlight {
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: #86BC25 !important;
            -webkit-text-fill-color: #86BC25 !important;
        }

        @media (max-width: 1024px) {
            .navbar {
                padding: 0.8rem 0;
            }

            .navbar-brand img {
                height: 45px;
            }

            .navbar-nav .nav-link {
                font-size: 0.95rem;
                margin-left: 0.75rem;
            }

            .dropdown-menu {
                font-size: 0.95rem;
            }

            .dropdown-item {
                padding: 0.7rem 1rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .hero {
                min-height: 80vh;
                padding-inline: clamp(1rem, 3vw, 2rem);
            }

            .hero-content {
                padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 3vw, 2rem);
                width: 100%;
            }

            .hero-subheading {
                text-align: left;
                align-self: flex-start;
                font-size: clamp(1.6rem, 2.4vw, 1.9rem);
            }

            .hero h1 {
                font-size: 3rem;
            }

            .mission-vision-container {
                gap: 2rem;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.7rem 0;
            }

            .navbar-brand img {
                height: 42px;
            }

            .navbar-nav {
                
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                font-size: 0.9rem;
                margin-left: 0;
                padding: 0.6rem 0;
            }

            .dropdown-menu {
                min-width: 200px;
                font-size: 0.9rem;
                text-align: left;
            }

            .dropdown-item {
                font-size: 0.9rem;
                padding: 0.75rem 1rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .navbar-toggler {
                border: 1px solid rgba(15, 23, 42, 0.25);
                border-radius: 12px;
                padding: 0.35rem 0.8rem;
            }

            .navbar-collapse {
                background-color: #ffffff;
                border-radius: 16px;
                padding: 1rem 1.25rem 1.5rem;
                margin-top: 0.65rem;
                box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
            }

            .navbar-collapse.show {
                transform: none;
            }

            .navbar-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 0.75rem;
            }

            .navbar-nav .nav-link {
                width: 100%;
                padding: 0.6rem 0;
            }

            /* .theme-toggle,
            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
 */

            .theme-toggle {
                justify-content: flex-start;
            }

            .hero {
                min-height: 100vh;
                height: auto;
                padding: 2rem 1.5rem;
                background-image: url("/static/images/hero.png");
                background-size: cover;
                background-position: center top;
                background-repeat: no-repeat;
                background-attachment: scroll;
                align-items: flex-start;
            }

            .hero-content {
                padding: 2rem 0;
                width: 100%;
                margin-left: 0;
                align-items: center;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.2rem;
                margin: 0 0 1rem 0;
                margin-left: 0;
                text-align: center;
                line-height: 1.3;
                word-break: break-word;
            }

            .hero h1 .highlight {
                display: block;
                width: 100%;
                margin-top: 0.25rem;
            }

            .hero-subheading {
                font-size: 1.45rem;
            }

            .hero p {
                font-size: 1rem;
                line-height: 1.6;
                margin: 0 auto 1rem;
                text-align: left;
            }

            .hero-content h1 {
                margin-bottom: 1.5rem;
                margin-left: 0;
            }

            .hero-content p {
                max-width: 100%;
                margin-left: 0;
            }

            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
                width: 100%;
            }

            .mission-vision-section {
                padding: 3rem 1.5rem;
            }

            .mission-vision-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0;
            }

            .mission-card, .vision-card {
                padding: 1.5rem;
            }

            .mission-card h2, .vision-card h2 {
                font-size: 1.5rem;
            }

            .core-values-section {
                padding: 2rem 1.5rem;
            }

            .values-header h2 {
                font-size: 1.75rem;
            }

            .values-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .value-card {
                padding: 1.5rem;
            }

            .value-card h3 {
                font-size: 1.25rem;
            }

            .industries-section {
                padding: 2rem 1.5rem;
            }

            .industries-container h2 {
                font-size: 1.75rem;
                margin-bottom: 0.5rem;
            }

            .industries-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            .industries-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .industry-card {
                padding: 1.5rem;
            }

            .industry-card h3 {
                font-size: 1.1rem;
            }

            .testimonials-section {
                padding: 2rem 1.5rem;
            }

            .testimonials-container h2 {
                font-size: 1.75rem;
                margin-bottom: 0.5rem;
            }

            .testimonials-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            .testimonial-card {
                width: calc(100vw - 4rem);
                max-width: 340px;
                padding: 1.5rem;
                height: auto;
            }

            .testimonials-container-wrapper {
                gap: 1rem;
            }

            .testimonial-nav-btn {
                width: 24px;
                height: 24px;
                font-size: 0.7rem;
            }

        }

        @media (max-width: 640px) {
            .navbar {
                padding: 0.6rem 0;
            }

            .navbar-brand img {
                height: 38px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                font-size: 0.85rem;
                padding: 0.5rem 0;
            }

            .dropdown-menu {
                min-width: 180px;
                font-size: 0.85rem;
            }

            .dropdown-item {
                font-size: 0.85rem;
                padding: 0.65rem 0.9rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .navbar-collapse {
                padding: 0.75rem 1rem 1.25rem;
            }

            .navbar-nav {
                gap: 0.5rem;
            }

            .hero {
                min-height: 100vh;
                height: auto;
                padding: 1.5rem 1rem;
                align-items: center;
                background-image: url("/static/images/hero.png");
                background-size: cover;
                background-position: center top;
                background-repeat: no-repeat;
                background-attachment: scroll;
            }

            .hero-content {
                padding: 1rem 0;
                align-items: center;
                text-align: center;
            }

            .hero h1 {
                font-size: 1.5rem;
                line-height: 1.3;
                margin-bottom: 1rem;
                text-align: center;
                word-break: break-word;
            }

            .hero h1 .highlight {
                display: block;
                width: 100%;
                margin-top: 0.2rem;
            }

            .hero-subheading {
                font-size: 1.25rem;
            }

            .hero p {
                font-size: 0.9rem;
                margin: 0 auto 1.5rem;
                text-align: left;
            }

            .hero-buttons {
                gap: 0.75rem;
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .btn-primary-hero,
            .btn-secondary-hero {
                width: 100%;
                text-align: center;
                padding: 0.65rem 1.5rem;
                font-size: 0.95rem;
            }

            .mission-vision-container {
                gap: 1.5rem;
            }

            .mission-card, .vision-card {
                padding: 1.25rem;
            }

            .mission-card h2, .vision-card h2 {
                font-size: 1.25rem;
                gap: 0.5rem;
            }

            .mission-card p, .vision-card p {
                font-size: 0.9rem;
            }

            .values-header h2 {
                font-size: 1.4rem;
            }

            .value-card {
                padding: 1.25rem;
            }

            .value-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }

            .value-item {
                gap: 0.75rem;
                margin-bottom: 1rem;
            }

            .value-item h5 {
                font-size: 0.95rem;
            }

            .value-item p {
                font-size: 0.8rem;
            }

            .industries-container h2,
            .clients-container h2,
            .testimonials-container h2 {
                font-size: 1.4rem;
            }

            .industry-card {
                padding: 1.25rem;
            }

            .industry-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
                margin-bottom: 1rem;
            }

            .industry-card h3 {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }

            .industry-card p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }

            .client-logo-item {
                width: 100px;
                height: 70px;
            }

            .clients-marquee {
                gap: 15px;
                animation: scroll 20s linear infinite;
            }

            .testimonial-card {
                width: calc(100vw - 3.5rem);
                max-width: 320px;
                padding: 1.25rem;
                height: auto;
            }

            .testimonial-name {
                font-size: 0.95rem;
            }

            .testimonial-location {
                font-size: 0.85rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
            }

        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.5rem 0;
            }

            .navbar-brand img {
                height: 35px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                font-size: 0.8rem;
                margin-left: 0;
                padding: 0.4rem 0;
            }

            .dropdown-menu {
                min-width: 160px;
                font-size: 0.8rem;
            }

            .dropdown-item {
                font-size: 0.8rem;
                padding: 0.6rem 0.8rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .hero {
                min-height: 100vh;
                padding: 1rem;
                align-items: center;
                background-image: url("/static/images/hero.png");
                background-size: cover;
                background-position: center top;
                background-repeat: no-repeat;
                background-attachment: scroll;
            }

            .hero-content {
                align-items: center;
                text-align: center;
            }

            .hero h1 {
                font-size: 1.25rem;
                margin-bottom: 0.75rem;
                text-align: center;
            }

            .hero-subheading {
                font-size: 1.1rem;
            }

            .hero p {
                font-size: 0.85rem;
                margin: 0 auto 1rem;
                text-align: left;
            }

            .btn-primary-hero,
            .btn-secondary-hero {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .mission-card h2, .vision-card h2 {
                font-size: 1.1rem;
            }

            .mission-card p, .vision-card p {
                font-size: 0.85rem;
                margin: 1rem 0;
            }

            .values-header h2 {
                font-size: 1.25rem;
            }

            .values-badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }

            .value-card h3 {
                font-size: 1rem;
            }

            .value-subtitle-text {
                font-size: 0.85rem;
            }

            .industries-container h2 {
                font-size: 1.25rem;
            }

            .industries-grid {
                gap: 1rem;
            }

            .industry-card {
                padding: 1rem;
            }

            .industry-card h3 {
                font-size: 0.95rem;
                margin-bottom: 0.4rem;
            }

            .industry-card p {
                font-size: 0.8rem;
                margin-bottom: 0.75rem;
            }

            .learn-more {
                font-size: 0.85rem;
            }

            .client-logo-item {
                width: 80px;
                height: 60px;
            }

            .clients-marquee {
                gap: 10px;
            }

            .clients-marquee-container {
                padding: 10px 0;
            }

            .testimonials-container h2 {
                font-size: 1.25rem;
            }

            .testimonial-card {
                width: calc(100vw - 3rem);
                max-width: 300px;
                padding: 1rem;
                height: auto;
            }

            .testimonial-name {
                font-size: 0.9rem;
            }

            .testimonial-text {
                font-size: 0.85rem;
            }

        }

        /* Theme Toggle Button */
        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .theme-toggle svg {
            width: 24px;
            height: 24px;
            stroke: #333;
            stroke-width: 2;
            fill: none;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover svg {
            stroke: #86BC25;
        }
        
        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #1a1a1a;
            color: #e0e0e0;
        }
        
        body.dark-mode .navbar {
            background-color: #2a2a2a;
            border-bottom: none;
        }
        
        body.dark-mode .navbar-nav .nav-link {
            color: #e0e0e0 !important;
        }
        
        body.dark-mode .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }
        
        body.dark-mode .navbar-nav .nav-link.active,
        body.dark-mode .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }
        
        body.dark-mode .navbar-collapse {
            background-color: transparent;
            box-shadow: none;
        }
        
        body.dark-mode .navbar-collapse .nav-link {
            color: #f1f5f9 !important;
        }
        
        body.dark-mode .navbar-collapse .nav-link:hover {
            color: #86BC25 !important;
        }
        
        body.dark-mode .theme-toggle svg {
            stroke: #e0e0e0;
        }
        
        body.dark-mode .theme-toggle:hover svg {
            stroke: #86BC25;
        }
        

        
        body.dark-mode .mission-vision-section {
            background-color: #1a1a1a;
        }
        
        body.dark-mode .mission-card, body.dark-mode .vision-card {
            background-color: #222222;
            border: 1px solid #333333;
        }
        
        body.dark-mode .mission-card p, body.dark-mode .vision-card p {
            color: #b0b0b0;
        }

        /* Core Values Section */
        .core-values-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .core-values-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .values-header {
            text-align: center;
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .values-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin: 0;
        }

        .values-highlight {
            /* background: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; */
            background: #86BC25;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .values-badge {
             
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: #e3f2fd;
            border-radius: 9999px;
            border: 1px solid #dbeafe;
            color: #86BC25;
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
        
        }

        .values-badge:hover,
        .values-badge:focus-visible {
            text-decoration: none;
        }

        .values-subtitle {
            text-align: center;
            font-size: 1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-card {
            background-color: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .value-card-link {
            display: block;
            color: inherit;
            text-decoration: none;
        }

        .value-card-link:hover {
            text-decoration: none;
        }

        .value-card:hover {
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
            transform: translateY(-8px) scale(1.05);
        
        }

        .value-card-centered {
            grid-column: 1 / -1;
            max-width: 600px;
            margin: 0 auto;
        }

        .value-card-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-card:hover .value-card-icon {
            opacity: 1;
            
        }

        .value-card-icon.human-excellence-icon {
            background-color: #e8eef5;
            color: #5a6c7d;
        }

        .value-card-icon.innovation-icon {
            background-color: #d1f4e8;
            color: #10b981;
        }

        .value-card-icon.impact-icon {
            background-color: #e8e5ff;
            color: #4f46e5;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            transition: transform 0.3s ease;
        }

        .value-icon i {
            color: white;
            font-size: 28px;
        }
        
        .value-card:hover .value-icon {
            transform: scale(1.15);
        }

        .value-icon.human-excellence {
            background-color: #5a6c7d;
        }

        .value-icon.innovation-leadership {
            background-color: #10b981;
        }

        .value-icon.impact-delivery {
            background-color: #4f46e5;
        }

        .value-icon.digital-marketing {
            background-color: #ec4899;
        }

        .value-icon.software-dev {
            background-color: #3b82f6;
        }

        .value-icon.data-bi {
            background-color: #10b981;
        }

        .value-icon.startup-tax {
            background-color: #f59e0b;
        }

        .value-icon.business-loans {
            background-color: #8b5cf6;
        }

        .value-icon.recruitment {
            background-color: #ec4899;
        }

        .value-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.75rem;
        }

        .value-subtitle-text {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 1.5rem !important;
            line-height: 1.6;
        }

        .value-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .value-item:last-child {
            margin-bottom: 0;
        }

        .value-item-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .value-item-icon.respect {
            background-color: #5a6c7d;
        }

        .value-item-icon.learn {
            background-color: #5a6c7d;
        }

        .value-item-icon.challenge {
            background-color: #10b981;
        }

        .value-item-icon.innovate {
            background-color: #10b981;
        }

        .value-item-icon.contribute {
            background-color: #4f46e5;
        }

        .value-item-icon.act {
            background-color: #4f46e5;
        }

        .value-item h5 {
            font-size: 1rem;
            font-weight: 700;
            color: #000;
            margin: 0 0 0.5rem 0;
            text-align: left;
        }

        .value-item p {
            font-size: 0.875rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
            text-align: left;
        }

        body.dark-mode .core-values-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .value-card {
            background-color: #222222;
            border-color: #333333;
        }

        body.dark-mode .value-card h3,
        body.dark-mode .value-item h5 {
            color: #ffffff;
        }

        body.dark-mode .values-subtitle,
        body.dark-mode .value-subtitle-text,
        body.dark-mode .value-item p {
            color: #b0b0b0;
        }

        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .values-header h2 {
                font-size: 1.75rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .value-card-centered {
                grid-column: auto;
                max-width: 100%;
            }
            
            /* .navbar-nav {
                text-align: center;
            } */
            
            .navbar-nav .nav-link {
                margin-left: 0;
                padding: 0.5rem 0;
            }
        }

        .industries-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .industries-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .industries-container h2 {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .industries-highlight {
            background: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .clients-container h2 {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .industries-subtitle {
            text-align: center;
            color: #666;
            font-size: 1rem;
            margin-bottom: 3rem;
        }
        .clients-subtitle {
            text-align: center;
            color: #666;
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            align-items: stretch;
        }

        .industry-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            min-height: 340px;
        }
        .industry-card .learn-more {
            margin-top: auto;
        }

        .industry-card:hover {
            box-shadow: 0 8px 16px rgba(0,0,0,0.12);
            transform: translateY(-4px);
        }

        .industry-card:hover h3 {
            color: #86BC25;
        }

        .industry-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            border: 2px solid #000;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            color: white;
            font-size: 28px;
        }

        .industry-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.75rem;
        }

        .industry-card p {
            font-size: 1.75rem;
            color: #000;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            flex: 1;
            text-align: center;
        }

        .learn-more {
            color: #86BC25;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
            flex-wrap: nowrap;
            transition: all 0.3s ease;
        }

        .learn-more:hover {
            color: #1E4A7A;
            gap: 0.75rem;
        }

        .learn-more i {
            font-size: 0.875rem;
        }

        @media (max-width: 1024px) {
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .industries-grid {
                grid-template-columns: 1fr;
            }

            .industries-container h2 {
                font-size: 2rem;
            }
        }
      

        body.dark-mode .industries-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .industry-card {
            background-color: #222222;
            border-color: #333333;
        }

        body.dark-mode .industry-card h3 {
            color: #ffffff;
        }

        body.dark-mode .industry-card p {
            color: #b0b0b0;
        }

        body.dark-mode .learn-more {
            color: #ffffff !important;
        }
   

        /* body.dark-mode .learn-more:hover {
            color: #000 !important;
        } */

        body.dark-mode .industry-card:hover {
            background-color:transparent;
        }

       

        body.dark-mode .industry-card:hover h3 {
            color: #000;
        }
        body.dark-mode .industry-card:hover p{
            color: #000;
        }
      body.dark-mode .industry-card:hover a{
            color: #000;
        }
      


        .clients-section {
            background-color: #f5f5f5;
        }

        .clients-marquee-container {
            overflow: hidden;
            background: transparent;
            border-radius: 20px;
            padding: 30px 0;
            width: 100%;
        }
       

        .clients-marquee {
            --clients-marquee-gap: 40px;
            --clients-marquee-duration: 30s;
            display: flex;
            flex-wrap: nowrap;
            gap: 0;
            animation: scroll var(--clients-marquee-duration) linear infinite;
            -webkit-animation: scroll var(--clients-marquee-duration) linear infinite;
            width: max-content;
            will-change: transform;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
        }

        @-webkit-keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .clients-marquee:hover {
            animation-play-state: paused;
        }

        .client-logo-item {
            margin-right: var(--clients-marquee-gap);
            flex-shrink: 0;
            width: 200px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .client-logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            opacity: 1;
            transition: all 0.3s ease;
            background-color: #f5f5f5;
            border-radius: 8px;
            filter: none;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            transform-style: preserve-3d;
            backface-visibility: hidden;
            image-rendering: optimizeQuality;
            image-rendering: -moz-crisp-edges;
            image-rendering: crisp-edges;
            image-rendering: pixelated;
            will-change: transform;
        }

        .client-logo-item:hover img {
            opacity: 1;
            transform: scale(1.26);
        }

        @media (max-width: 1024px) {
            .client-logo-item {
                width: 150px;
                height: 100px;
            }

            .clients-marquee {
                --clients-marquee-gap: 30px;
                --clients-marquee-duration: 40s;
            }
        }

        @media (max-width: 768px) {
            .client-logo-item {
                width: 120px;
                height: 80px;
            }

            .clients-marquee {
                --clients-marquee-gap: 20px;
                --clients-marquee-duration: 30s;
            }

            .clients-marquee-container {
                padding: 20px 0;
            }
        }

        @media (max-width: 480px) {
            .client-logo-item {
                width: 100px;
                height: 70px;
            }

            .clients-marquee {
                --clients-marquee-gap: 15px;
                --clients-marquee-duration: 200s;
            }

            .clients-marquee-container {
                padding: 15px 0;
            }
        }

        body.dark-mode .clients-section {
            background-color: #1a1a1a !important;
        }

        body.dark-mode .clients-container h2 {
            color: #ffffff;
        }

        body.dark-mode .clients-subtitle {
            color: #b0b0b0;
        }

        body.dark-mode .client-logo-item {
            opacity: 0.9;
        }

        /* Client Testimonials Section */
        .testimonials-section {
            padding: 60px 20px;
            background-color: #F7F7F8;
            --testimonials-gap: 2.3rem;
            --testimonial-card-width: 320px;
            --visible-testimonials: 3;
        }

        .testimonials-container h2 {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .testimonials-subtitle {
            text-align: center;
            color: #666;
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .testimonials-container-wrapper {
            position: relative;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .testimonials-scroll {
            overflow-x: auto;
            overflow-y: visible;
            background: transparent;
            border-radius: 12px;
            width: 100%;
            max-width: 100%;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            box-sizing: border-box;
            padding: 12px 32px;
            scroll-padding-inline: 32px;
            margin: 0;
        }

        .testimonials-scroll::-webkit-scrollbar {
            display: none;
        }

        .testimonials-marquee {
            display: flex;
            gap: var(--testimonials-gap);
            padding-inline: 0;
            will-change: transform;
            transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
            transform-style: preserve-3d;
            -webkit-transform-style: preserve-3d;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            align-items: stretch;
        }

        .testimonial-nav-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #0066FF;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            color: white;
            font-size: 0.75rem;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
        }

        .testimonial-nav-btn:hover {
            background-color: #0052CC;
            transform: translateY(-50%) scale(1.1);
        }

        .testimonial-nav-btn.prev {
            left: -20px;
        }

        .testimonial-nav-btn.next {
            right: -20px;
        }

        @media (max-width: 768px) {
            .testimonial-nav-btn.prev {
                left: 8px;
            }

            .testimonial-nav-btn.next {
                right: 8px;
            }
        }

        .testimonial-nav-btn.prev svg {
            transform: rotate(180deg);
        }

        .testimonial-card {
            flex: 0 0 min(var(--testimonial-card-width), 100%);
            width: min(var(--testimonial-card-width), 100%);
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            transform: translateZ(0);
        }

        .testimonial-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
            transform: translateY(-10px);
        }

        .testimonial-name {
            font-weight: 700;
            color: #86BC25;
            margin-bottom: 0.25rem;
        }

        .testimonial-location {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        body.dark-mode .testimonials-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .testimonials-container h2 {
            color: #ffffff;
        }

        body.dark-mode .testimonials-subtitle {
            color: #b0b0b0;
        }

        body.dark-mode .testimonial-card {
            background-color: #2a2a2a;
        }

        body.dark-mode .testimonial-name {
            color: #86BC25;
        }

        body.dark-mode .testimonial-location {
            color: #888;
        }

        body.dark-mode .testimonial-text {
            color: #ccc;
        }

        body.dark-mode .testimonial-nav-btn {
            background-color: #0066FF;
        }

        body.dark-mode .testimonial-nav-btn:hover {
            background-color: #0052CC;
        }

        @media (max-width: 1100px) {
            .testimonials-section {
                --testimonials-gap: 1.5rem;
                --visible-testimonials: 2;
            }

            .testimonials-container-wrapper {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                --testimonials-gap: 1rem;
                --visible-testimonials: 1;
            }

            .testimonials-container-wrapper {
                flex-direction: column;
                gap: 0.75rem;
            }

            .testimonial-nav-btn {
                width: 36px;
                height: 36px;
            }

            .growth-cta-section {
                padding: 3rem 1.25rem;
            }

            .growth-cta-heading {
                font-size: 2.2rem;
            }

            .growth-cta-subtitle {
                font-size: 1rem;
            }
        }

        .growth-cta-section {
            margin: 0 auto;
            padding: clamp(2.8rem, 4vw, 4rem) 1.5rem;
            border-radius: 0;
            background: #86BC25;
            color: #1d2309;
            box-shadow: inset 0 0 65px rgba(255,255,255,0.2);
        }

        .growth-cta-content {
            max-width: 960px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        .growth-cta-heading {
            font-size: clamp(2.3rem, 3vw, 3.1rem);
            font-weight: 800;
            margin: 0;
            line-height: 1.2;
        }

        .growth-cta-heading .growth-cta-highlight {
            /* color: #ffffff; */
            display: inline;
        }

        .growth-cta-subtitle {
            margin: 0;
            max-width: 640px;
            font-size: 1.15rem;
            color: rgba(17, 18, 12, 0.92);
        }

        .growth-cta-button {
            margin-top: 1.5rem;
            padding: 0.85rem 2.75rem;
            border-radius: 8px;
            background-color: #1b2008;
            color: #86BC25;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            border: none;
        }

        .growth-cta-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 35px rgba(13, 14, 7, 0.45);
        }

        @media (max-width: 640px) {
            .growth-cta-section {
                padding: 2.3rem 1rem;
                border-radius: 0;
            }

            .growth-cta-heading {
                font-size: 1.9rem;
            }

            .growth-cta-subtitle {
                font-size: 1rem;
            }

            .growth-cta-button {
                width: 100%;
                max-width: 320px;
            }
        }

        @keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Floating WhatsApp circle */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px #0003;
    z-index: 999;
    animation: pulse 1.5s infinite;
}

/* Icon inside */
.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

        .footer-connect-link {
            gap: 0.65rem;
            align-items: flex-start;
            text-align: left;
        }

        .footer-connect-link svg {
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .connect-address {
            margin: 0;
            line-height: 1.45;
        }

        body.dark-mode footer,
        body.dark-mode footer.bg-light {
            background-color: #1a1a1a !important;
            border-top: 1px solid #333;
        }

        body.dark-mode footer h6 {
            color: #ffffff !important;
        }

        body.dark-mode footer a {
            color: #b0b0b0 !important;
        }

        body.dark-mode footer a:hover {
            color: #d3d3d8 !important;
        }

        body.dark-mode footer .text-muted {
            color: #888 !important;
        }

        body.dark-mode footer .text-dark {
            color: #ffffff !important;
        }

        body.dark-mode footer hr {
            border-color: #333 !important;
        }

        body.dark-mode footer svg {
            stroke: #b0b0b0;
        }
         footer a:hover {
            color: #86BC25 !important;
        }

        body.dark-mode footer a:hover svg {
            stroke: #4a9eff;
        }

        .footer-email-line {
            margin-bottom: 0.65rem;
            color: #e3ecf4;
            font-size: 0.95rem;
            letter-spacing: 0.01em;
        }

        .footer-email-line .footer-email-label {
            white-space: normal;
        }

        @media (min-width: 992px) {
            .footer-email-line .footer-email-label {
                white-space: nowrap;
            }
        }

        .footer-email-line .footer-email-label {
            color: #ffffff;
            font-weight: 600;
            display: inline-block;
            margin-right: 0.45rem;
        }

        .footer-email-line a {
            color: #cfd9e6;
            text-decoration: none;
        }

        .footer-email-line a:hover {
            color: #ffffff;
        }

        @media (max-width: 1024px) {
            footer .row {
                gap: 1.5rem !important;
            }

            footer h6 {
                font-size: 0.95rem;
            }

            footer small {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 2rem 1rem !important;
            }

            footer .row {
                display: flex !important;
                flex-direction: column !important;
                gap: 1.5rem !important;
                justify-content: flex-start !important;
            }

            footer .row > div {
                flex: none !important;
                width: 100% !important;
                min-width: auto !important;
            }

            footer img {
                max-width: 120px !important;
            }

            footer h6 {
                font-size: 0.95rem;
                margin-bottom: 1rem !important;
            }

            footer ul {
                padding-left: 0;
            }

            footer li {
                margin-bottom: 0.75rem !important;
            }

            footer small {
                font-size: 0.8rem;
            }

            footer svg {
                width: 16px !important;
                height: 16px !important;
            }

            .row.align-items-center {
                flex-direction: column !important;
                text-align: center !important;
                gap: 1rem !important;
            }

            .row.align-items-center .col-md-4 {
                width: 100% !important;
                text-align: center !important;
            }

            footer hr {
                margin: 1rem 0 !important;
            }
        }

        @media (max-width: 640px) {
            footer {
                padding: 1.5rem 1rem !important;
            }

            footer img {
                max-width: 100px !important;
                margin-bottom: 0.75rem !important;
            }

            footer h6 {
                font-size: 0.9rem;
                margin-bottom: 0.75rem !important;
            }

            footer .mb-4 {
                margin-bottom: 0.75rem !important;
            }

            footer li {
                margin-bottom: 0.5rem !important;
            }

            footer small {
                font-size: 0.75rem;
            }

            footer .text-muted.small {
                margin-bottom: 0.5rem !important;
            }

            footer p {
                margin-bottom: 0.5rem !important;
            }

            footer svg {
                width: 14px !important;
                height: 14px !important;
                margin-right: 0.4rem !important;
            }

            .row.align-items-center .col-md-4 p {
                font-size: 0.75rem;
            }

            footer hr {
                margin: 0.75rem 0 !important;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 1rem !important;
            }

            footer .mb-5 {
                margin-bottom: 1rem !important;
            }

            footer .row {
                gap: 1rem !important;
            }

            footer img {
                max-width: 90px !important;
                margin-bottom: 0.5rem !important;
            }

            footer h6 {
                font-size: 0.85rem;
                margin-bottom: 0.5rem !important;
            }

            footer ul.list-unstyled {
                margin-bottom: 0;
            }

            footer li {
                margin-bottom: 0.35rem !important;
            }

            footer small {
                font-size: 0.7rem;
                line-height: 1.4;
            }

            footer .text-muted {
                font-size: 0.7rem !important;
            }

            footer svg {
                width: 12px !important;
                height: 12px !important;
                margin-right: 0.3rem !important;
            }

            footer a {
                font-size: 0.7rem;
            }

            footer hr {
                margin: 0.5rem 0 !important;
            }

            .row.align-items-center .col-md-4 p {
                font-size: 0.7rem;
            }
        }

        body.dark-mode h2[style*="color: #1f2937"],
        body.dark-mode h2[style*="color:#1f2937"] {
            color: #ffffff !important;
        }

        body.dark-mode div[style*="background-color: #eff6ff"],
        body.dark-mode div[style*="background-color:#eff6ff"],
        body.dark-mode div[style*="background-color: #e3f2fd"],
        body.dark-mode div[style*="background-color:#e3f2fd"] {
            background-color: #1a3a52 !important;
            border-color: #2a4a62 !important;
        }

        body.dark-mode div[style*="background-color: #c8e6c9"],
        body.dark-mode div[style*="background-color:#c8e6c9"] {
            background-color: #1a4d2e !important;
        }

        body.dark-mode div[style*="background-color: #bbdefb"],
        body.dark-mode div[style*="background-color:#bbdefb"] {
            background-color: #1a3a52 !important;
        }

        body.dark-mode div[style*="background-color: #e1bee7"],
        body.dark-mode div[style*="background-color:#e1bee7"] {
            background-color: #3a1a4a !important;
        }

        body.dark-mode div[style*="background-color:#E0F2FE"],
        body.dark-mode div[style*="background-color: #E0F2FE"] {
            background-color: #1a3a52 !important;
        }

        body.dark-mode div[style*="background-color:#DCFCE7"],
        body.dark-mode div[style*="background-color: #DCFCE7"] {
            background-color: #1a4d2e !important;
        }

        body.dark-mode div[style*="background-color:#FEF3C7"],
        body.dark-mode div[style*="background-color: #FEF3C7"] {
            background-color: #4a3a1a !important;
        }

        body.dark-mode div[style*="background-color:#E0E7FF"],
        body.dark-mode div[style*="background-color: #E0E7FF"] {
            background-color: #2a2a4a !important;
        }

        body.dark-mode hr {
            border-color: #333 !important;
            opacity: 1;
        }

        body.dark-mode span[style*="color: #666"],
        body.dark-mode span[style*="color:#666"] {
            color: #b0b0b0 !important;
        }

        body.dark-mode span[style*="color: #1d4ed8"],
        body.dark-mode span[style*="color:#1d4ed8"],
        body.dark-mode span[style*="color: #2563eb"],
        body.dark-mode span[style*="color:#2563eb"] {
            color: #60a5fa !important;
        }

        body.dark-mode .text-dark {
            color: #ffffff !important;
        }

        body.dark-mode .bg-light {
            background-color: #1a1a1a !important;
        }

        body.dark-mode .text-muted {
            color: #b0b0b0 !important;
        }


body.dark-mode .home-page .navbar .resources-dropdown-menu {
  background-color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.35);
}

body.dark-mode .home-page .navbar .resources-dropdown-menu .dropdown-item {
  color: #e5e7eb;
}

body.dark-mode .home-page .navbar .resources-dropdown-menu .dropdown-item:hover,
body.dark-mode .home-page .navbar .resources-dropdown-menu .dropdown-item:focus,
body.dark-mode .home-page .navbar .resources-dropdown-menu .dropdown-item:focus-visible,
body.dark-mode .home-page .navbar .resources-dropdown-menu .dropdown-item:active {
  background-color: #86BC25;
  color: #000;
}

body.dark-mode .home-page .navbar .resources-dropdown-menu .resources-learning-label {
  color: #86BC25;
}


.navbar .resources-dropdown-menu .dropdown-item,
.navbar .services-dropdown-menu .dropdown-item {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 0.75rem !important;
  white-space: normal !important;
}


/* =========================================================
   HOME PAGE — INDUSTRIES SECTION (FIXED)
   ========================================================= */

/* Section */
.home-page .industries-section{
  padding: 4rem 2rem;
  background-color: #F7F7F8;
}

/* Container */
.home-page .industries-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.home-page .industries-container h2{
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.home-page .industries-highlight{
  color: #86BC25;
}

/* Subtitle */
.home-page .industries-subtitle{
  text-align: center;
  color: black;
  font-size: 1rem;
  margin-bottom: 3rem;
}
body.dark-mode  .industries-subtitle{
  text-align: center;
  color: #F7F7F8 !important;
  font-size: 1rem;
  margin-bottom: 3rem;
}


/* ✅ Grid: 4 columns */
.home-page .industries-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 2rem !important;
  align-items: stretch;
}

/* ✅ Card FIX: NO space-between (this caused blank area) */
.home-page .industry-card{
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ✅ FIXED */
  align-items: center;
  gap: 0.2rem;

  min-height: 220px; /* ✅ avoids huge empty space */
  text-align: center;
  cursor: pointer;
}

.home-page .industry-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Icon */
.home-page .industry-icon{
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #86BC25;
  color: #000;
  font-size: 26px;
}
.home-page .industry-icon i {
  color: #000;
}

/* Title */
.home-page .industry-card h3{
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* Description (optional) */
.home-page .industry-card p{
  font-size: 0.90rem;
  line-height: 1.6;
  color: #666;;
  margin: 0;
  max-width: 520px;
   font-weight: 400;
 
   
}

/* Learn more (optional) */
.home-page .industry-card .learn-more{
  margin-top: auto; /* ✅ only pushes link down when it exists */
  color: black;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.home-page .industry-card .learn-more:hover{
  color: #86BC25;
  gap: 0.75rem;
}

/* Icon background helpers */
.home-page .industry-icon.bg-it{ background: #86BC25; }
.home-page .industry-icon.bg-bfsi{ background: #86BC25; }
.home-page .industry-icon.bg-health{ background: #86BC25; }
.home-page .industry-icon.bg-retail{ background: #86BC25; }
.home-page .industry-icon.bg-ngo{ background: #86BC25; }
.home-page .industry-icon.bg-edu{ background: #86BC25; }

/* ✅ Tablet: keep 2 columns */
@media (max-width: 1024px){
  .home-page .industries-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ✅ Mobile: 1 column */
@media (max-width: 768px){
  .home-page .industries-section{ padding: 2rem 1.25rem; }
  .home-page .industries-container h2{ font-size: 1.75rem; }
  .home-page .industries-subtitle{ margin-bottom: 2rem; }
  .home-page .industries-grid{
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .home-page .industry-card{
    padding: 1.5rem;
    min-height: auto;
  }
}
.home-page .navbar .industries-dropdown{
  left: 0 !important;
  right: auto !important;          /* aligns dropdown to right edge */
  width: min(700px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
  min-width: 0 !important;
}


/* ✅ Dark mode */
body.dark-mode .home-page .industries-section{
  background-color: #1a1a1a;
}

body.dark-mode .home-page .industries-container h2{
  color: #ffffff;
}

body.dark-mode .home-page .industries-subtitle{
  color: #F7F7F8;
}

body.dark-mode .home-page .industry-card{
  background-color: #222222;
  border-color: #333333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

body.dark-mode .home-page .industry-card h3{
  color: #ffffff;
}

body.dark-mode .home-page .industry-card p{
  color: #b0b0b0;
}








.contact-strip {
    background: linear-gradient(135deg, rgba(13, 17, 38, 0.95), rgba(6, 11, 26, 0.95));
    border-radius: 28px;
    margin: 3rem auto;
    padding: clamp(2.5rem, 3vw, 3.75rem) clamp(1.75rem, 4vw, 3rem);
    box-shadow: 0 25px 70px rgba(5, 8, 20, 0.55);
    color: #f8fafc;
}
.contact-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.contact-strip__copy {
    flex: 1 1 280px;
}
.contact-strip__copy h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.2;
}
.contact-strip__subtitle {
    margin: 0;
    color: rgba(248, 250, 252, 0.72);
    font-size: 1rem;
    max-width: 42ch;
}
.contact-strip__actions {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-strip__phones {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.contact-phone {
    margin: 0;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.contact-phone-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.65);
}
.contact-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.contact-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.contact-social-link:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
}
.contact-strip__social {
    display: flex;
}
.phone-link {
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}
.phone-link:hover {
    color: #86BC25;
    transform: scale(1.05);
    text-decoration: none;
}
.phone-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: #86BC25;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.phone-link:hover::before {
    width: 100%;
    opacity: 1;
}
@media (max-width: 768px) {
    .contact-strip-inner {
        flex-direction: column;
    }
    .contact-strip__actions {
        order: 1;
    }
}
body.dark-mode .home-page .navbar .resources-dropdown-menu {
    background-color: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.35);
}
body.dark-mode .home-page .navbar .resources-dropdown-menu .dropdown-item {
    color: #e5e7eb;
}
body.dark-mode .home-page .navbar .resources-dropdown-menu .resources-learning-label {
    color: #86BC25;
}

/* =====================================================
   HOME PAGE — NAVBAR INDUSTRIES DROPDOWN (CLEAN FINAL)
   Paste at END of home.css
===================================================== */

/* Dropdown container */
.home-page .navbar .industries-dropdown{
  min-width: 710px;
  max-width: 980px;
  width: min(700px, calc(100vw - 24px));
  padding: 24px !important;

  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);

  max-height: none !important;
  overflow: visible !important;
}

/* Grid layout */
.home-page .navbar .industries-dropdown .industries-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px 22px !important; /* row-gap col-gap */
  align-items: start !important;
  grid-auto-rows: auto !important;
}

/* Card = pill row (fix your screenshot issue) */
.home-page .navbar .industries-dropdown .industry-card{
  width: 103% !important;

  /* ✅ override your normal .home-page .industry-card */
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;

  padding: 18px 22px !important;
  min-height: 76px !important;
  height: auto !important;


  border-radius: 22px !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;

  gap: 0.25px !important;
  cursor: pointer;
  text-decoration: none;
  transform: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  color: #000 !important;
}
 body.dark-mode .home-page .navbar .industries-dropdown .industry-card:hover,
body.dark-mode .home-page .navbar .industries-dropdown .industry-card:focus-visible{
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2) !important;
  background: #86BC25 !important;
  color: #000 !important;
}

/* Hover */
.home-page .navbar .industries-dropdown .industry-card:hover,
.home-page .navbar .industries-dropdown .industry-card:focus-visible{
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2) !important;
  background: #86BC25 !important;
  color: #000 !important;
}
/* Title text */
.home-page .navbar .industries-dropdown .industry-title{
  margin: 0 !important;
  padding: 0 !important;

  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #000 !important;

  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Mobile */
@media (max-width: 768px){
  .home-page .navbar .industries-dropdown{
    min-width: auto;
    width: calc(100vw - 18px);
    padding: 16px !important;
    border-radius: 22px;
  }

  .home-page .navbar .industries-dropdown .industries-grid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .home-page .navbar .industries-dropdown .industry-card{
    padding: 12px 16px !important;
    min-height: 58px !important;
    border-radius: 18px !important;
    gap:18px !important;
    
  }
.home-page .navbar .industries-dropdown .industry-title{
    font-size: 1rem !important;
  }
}

/* Dark mode */
body.dark-mode .home-page .navbar .industries-dropdown{
  background-color: #0f172a !important;
  border-color: rgba(148, 163, 184, 0.35) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,0.45) !important;
}

body.dark-mode .home-page .navbar .industries-dropdown .industry-card{
  background-color: rgba(255,255,255,0.06) !important;
  border-color: rgba(148, 163, 184, 0.22) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.40) !important;
}

body.dark-mode .home-page .navbar .industries-dropdown .industry-title{
  color: #e5e7eb !important;
}
/* ===== Industries dropdown: smaller cards (override) ===== */
.home-page .navbar .industries-dropdown{
  padding: 16px !important;
  border-radius: 24px;
}

.home-page .navbar .industries-dropdown .industries-grid{
  gap: 12px 14px !important;
}

.home-page .navbar .industries-dropdown .industry-card{
  padding: 12px 16px !important;
  min-height: 58px !important;
  border-radius: 18px !important;
  gap: 10px !important;
}
.home-page .navbar .industries-dropdown .industry-title{
  font-size: 0.98rem !important;
  line-height: 1.15 !important;
}




/* ==============================
   FORCE DARK MODE — INDUSTRIES DROPDOWN
   Paste this at END of home.css
============================== */

/* dropdown panel */
body.dark-mode .navbar .industries-dropdown,
body.dark-mode .home-page .navbar .industries-dropdown{
  background-color:#000  !important;
  
}

/* ✅ cards (your class) */
body.dark-mode .navbar .industries-dropdown .industry-card,
body.dark-mode .home-page .navbar .industries-dropdown .industry-card{
  background-color: #000;
  
 
  color: #e5e7eb !important;
}

/* ✅ if your items are bootstrap dropdown-item */
body.dark-mode .navbar .industries-dropdown .dropdown-item{
  background: linear-gradient(180deg, rgba(27,39,62,0.95) 0%, rgba(18,28,46,0.95) 100%) !important;
  border: 1px solid rgba(148,163,184,0.18) !important;
  color: #e5e7eb !important;
}

/* title */
body.dark-mode .navbar .industries-dropdown .industry-title,
body.dark-mode .home-page .navbar .industries-dropdown .industry-title{
  color: #e5e7eb !important;
}

/* hover */
body.dark-mode .navbar .industries-dropdown .industry-card:hover,
body.dark-mode .home-page .navbar .industries-dropdown .industry-card:hover,
body.dark-mode .navbar .industries-dropdown .dropdown-item:hover{
  background: linear-gradient(180deg, rgba(33,48,78,0.97) 0%, rgba(20,32,55,0.97) 100%) !important;
  border-color: rgba(148,163,184,0.26) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06) !important;
  transform: translateY(-2px) !important;
  color:#000 !important;
}




/* SECTION SPLIT */
.ai-testimonial-section{
  padding: clamp(3rem, 4vw, 4.5rem) clamp(1.5rem, 4.5vw, 3.5rem);
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 62%,
    #0f0f0f 62%,
    #0f0f0f 100%
  );
  overflow-x: clip;
  overflow-y: visible;
}

/* Layout */
.ai-testimonial-wrap{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(1.75rem, 2.5vw, 3rem);
}

.ai-testimonial-left{
  display: flex;
  justify-content: center;
}

/* ===== LEFT SLIDER ===== */
.ai-viewport{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 0;
}

.ai-track{
  display: flex;
  width: 100%;
  transition: transform 0.7s ease;
  align-items: flex-start;
}

/* EACH CARD = 100% WIDTH (CRITICAL) */
.ai-card{
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: #86BC25;
  padding: 50px clamp(2rem, 4vw, 3rem);
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(0.75rem, 1vw, 1.25rem);
  overflow: visible;
  /* on mobile this is overridden to overflow:hidden in the @media blocks */
}

.ai-stars{
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 20px;
  font-size: 0;
}

.ai-star{
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.ai-star::before,
.ai-star::after{
  content: '★';
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-star::before{
  color: #d8d8d8;
}

.ai-star::after{
  color: #000;
  clip-path: inset(0 100% 0 0);
}

.ai-star--full::after{
  clip-path: inset(0 0 0 0);
}

.ai-star--half::after{
  clip-path: inset(0 50% 0 0);
}

.ai-star--empty::after{
  clip-path: inset(0 100% 0 0);
}

.ai-card h3{
  font-size: 38px;
  margin: 0;
  color: #000;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.ai-card span{
  color: #000;
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.ai-card p{
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.ai-quote{
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 90px;
  color: #000;
  pointer-events: none;
  z-index: 1;
}

/* ===== RIGHT TEXT ===== */
.ai-testimonial-right{
  text-align: right;
  color: #fff;
  padding-left: 40px;
  max-width: 520px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.ai-testimonial-right p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.ai-testimonial-right h6{
  color: #86BC25;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.ai-testimonial-right h2{
  font-size: 52px;
  margin: 20px 0 0;
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
}

.ai-line{
  width: 200px;
  height: 4px;
  background: #86BC25;
  margin-left: auto;
}

/* TABLET */
@media (max-width: 1024px){
  .ai-testimonial-wrap{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ai-testimonial-section{
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 50%,
      #1A2322 50%,
      #1A2322 100%
    );
  }

  .ai-card{
    padding: clamp(2.25rem, 2.5vw, 3rem);
    max-width: 100%;
  }

  .ai-testimonial-left,
  .ai-testimonial-right{
    width: 100%;
  }

  .ai-testimonial-right{
    text-align: left;
    padding: 24px 0 0;
    margin-left: 0;
    align-items: flex-start;
  }

  .ai-testimonial-right h2{
    font-size: clamp(2.75rem, 3vw, 3.25rem);
  }

  .ai-line{
    margin-left: 0;
  }
}

/* MOBILE */
@media (max-width: 768px){
  .ai-testimonial-wrap{
    grid-template-columns: 1fr;
    padding: 0 clamp(0.75rem, 4vw, 1.25rem);
    box-sizing: border-box;
  }

  .ai-testimonial-section{
    padding-left: 0;
    padding-right: 0;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 55%,
      #1A2322 55%,
      #1A2322 100%
    );
  }

  .ai-testimonial-right{
    text-align: left;
    
  }

  .ai-testimonial-right h2{
    font-size: clamp(2.25rem, 3vw, 2.75rem);
  }

  .ai-viewport{
    min-height: 0;
    overflow-x: clip;
    overflow-y: visible;
  }

  .ai-card{
    padding: clamp(1.75rem, 3vw, 2.25rem);
    max-width: 100%;
    height: auto;
  }

  .ai-card h3{
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.25;
    word-break: break-word;
  }

  .ai-card span{
    font-size: clamp(0.95rem, 3vw, 1.05rem);
  }

  .ai-card p{
    font-size: clamp(0.95rem, 3vw, 1rem);
    line-height: 1.6;
    overflow-wrap: anywhere;
    box-sizing: border-box;
    width: 100%;
    padding-right: 3.5rem;
  }

  .ai-quote{
    font-size: 72px;
    right: 20px;
    top: 24px;
  }

  .ai-line{
    margin-left: 0;
  }
}

@media (max-width: 640px){

  .ai-testimonial-section{
    padding: clamp(1.5rem, 4vw, 3rem) 0;
  }

  .ai-testimonial-wrap{
    padding: 0 clamp(0.75rem, 4vw, 1.25rem);
    box-sizing: border-box;
  }

  .ai-testimonial-wrapper{ 
    flex-wrap: wrap; 
  }

  /* ✅ MAIN FIX: remove internal scrolling + fixed height */
  .ai-card,
  .ai-card .content,
  .ai-card .inner,
  .ai-testimonial-content,
  .ai-testimonial-right,
  .ai-testimonial-text{
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
  }

  .ai-card{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .ai-card,
  .ai-testimonial-right,
  .ai-testimonial-content,
  .ai-text,
  .ai-message{
    min-width: 0;
  }

  /* ✅ Force wrapping + remove any ellipsis/line clamp */
  .ai-card p,
  .ai-testimonial-right p,
  .ai-testimonial-text{
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    display: block !important;
    text-overflow: unset !important;

    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;

    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  /* slider clipping safety */
  .swiper,
  .swiper-wrapper,
  .swiper-slide,
  .slick-list,
  .slick-track,
  .slick-slide{
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }

  .ai-quote{
    font-size: 54px;
    right: 16px;
    top: 16px;
  }

  .ai-testimonial-right{
    gap: 0.5rem;
    padding: 16px 0 0;
  }

  .ai-testimonial-right h2{
    font-size: 2rem;
    line-height: 1.3;
  }

  .ai-line{
    width: 140px;
  }
}




@media (max-width: 480px){
  .ai-testimonial-section{
    padding: clamp(2rem, 5vw, 2.5rem) 0;
  }

  .ai-testimonial-wrap{
    padding: 0 clamp(0.75rem, 4vw, 1.25rem);
    box-sizing: border-box;
  }

  .ai-viewport{
    width: 100%;
    max-width: 100%;
  }

  .ai-card{
    padding: 1.5rem 1.25rem 2rem;
    max-width: 100%;
    min-height: unset !important;
    box-sizing: border-box;
  }

  .ai-card p{
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
    box-sizing: border-box;
    width: 100%;
    padding-right: 3rem;
  }

  .ai-testimonial-right{
    padding: 12px clamp(0.75rem, 4vw, 1.25rem) 0;
  }

  .ai-testimonial-right h2{
    font-size: 1.6rem;
    line-height: 1.35;
  }

  .ai-testimonial-right p{
    font-size: 0.9rem;
  }
}

/* FIX: stop cutting content on mobile */


.ai-viewport{
  overflow-x: clip;
  overflow-y: visible;
}

/* Mobile safety */
@media (max-width: 768px){
  .ai-card{
    height: auto;
  }
}

/* FIX mobile content cutting */
@media (max-width: 768px){
  .ai-viewport{
    min-height: 0;
    overflow-x: clip;
    overflow-y: visible;
  }

  .ai-card{
    height: auto;
    padding-bottom: 2rem;
  }
}
/* Ensure slider height adapts to content */
.ai-track{
  align-items: stretch;
}
/* ===== FINAL FIX ===== */

/* clip horizontal overflow (for gradient background) without creating BFC,
   so overflow-y stays truly visible and cards are never clipped vertically */
.ai-testimonial-section{
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.ai-viewport{
  overflow-x: clip !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: 0 !important;
}

/* important: card must not be clipped by flex/track height */
.ai-track{
  align-items: stretch !important;
}

.ai-card{
  height: auto !important;
  min-height: unset !important;
  align-self: stretch;
}

/* mobile safety spacing */
@media (max-width: 768px){
  .ai-testimonial-section{
    overflow-x: clip !important;
    overflow-y: visible !important;
  }

  .ai-viewport{
    overflow-x: clip !important;
    overflow-y: visible !important;
    min-height: 0 !important;
  }

  .ai-card{
    padding-bottom: 2rem;
    height: auto !important;
    box-sizing: border-box;
  }

  .ai-card p{
    box-sizing: border-box;
    width: 100%;
    padding-right: 3.5rem;
  }
}

@media (max-width: 480px){
  .ai-testimonial-section{
    overflow-x: clip !important;
    overflow-y: visible !important;
  }

  .ai-viewport{
    overflow-x: clip !important;
    overflow-y: visible !important;
    min-height: 0 !important;
  }

  .ai-card{
    padding-bottom: 2.5rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .ai-card p{
    box-sizing: border-box;
    width: 100%;
    padding-right: 3rem;
  }
}

body:not(.dark-mode) .hero-subheading {
    font-size: 1.3rem;
    font-weight: 200;
}

body.dark-mode .navbar .industries-dropdown .industry-card:hover,
body.dark-mode .home-page .navbar .industries-dropdown .industry-card:hover,
body.dark-mode .navbar .industries-dropdown .industry-card:focus-visible,
body.dark-mode .home-page .navbar .industries-dropdown .industry-card:focus-visible,
body.dark-mode .navbar .industries-dropdown .dropdown-item:hover,
body.dark-mode .navbar .industries-dropdown .dropdown-item:focus-visible{
  background: #86BC25 !important;
  color: #000 !important;
  border-color: rgba(0, 0, 0, 0.35) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06) !important;
  transform: translateY(-2px) !important;
}

.core-values-section .value-card-image {
    display: block;
    margin: 0 auto 1rem;
    width: 140px;
    height: 140px;
    object-fit: c;
    border-radius: 16px;
    background: #86BC25;
    padding: 0.35rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}





/* ===== FIX: Industries we serve hover (Dark Mode) ===== */
body.dark-mode .industries-section .industry-card:hover,
body.dark-mode .home-page .industries-section .industry-card:hover {
  background: #86BC25 !important;
  border-color: #86BC25 !important;
}

/* Make ALL text inside card black on hover (including Learn More) */
body.dark-mode .industries-section .industry-card:hover h3,
body.dark-mode .industries-section .industry-card:hover p,
body.dark-mode .industries-section .industry-card:hover a.learn-more,
body.dark-mode .industries-section .industry-card:hover a.learn-more i,
body.dark-mode .home-page .industries-section .industry-card:hover h3,
body.dark-mode .home-page .industries-section .industry-card:hover p,
body.dark-mode .home-page .industries-section .industry-card:hover a.learn-more,
body.dark-mode .home-page .industries-section .industry-card:hover a.learn-more i {
  color: #000 !important;
}

/* ✅ FIX: Mobile testimonial card height + 3-line text fully visible */
@media (max-width: 480px){

  /* let the slider container grow vertically */
  .ai-testimonial-section,
  .ai-testimonial-wrap,
  .ai-testimonial-left,
  .ai-viewport{
    height: auto !important;
    min-height: unset !important;
    overflow-y: visible !important;
  }

  
  

  /* make each card taller + full width */
  .ai-card{
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 260px !important;      /* ✅ increase card size */
    padding: 24px 20px 32px !important; /* ✅ more space for text */
    box-sizing: border-box !important;
  }

  .ai-card p{
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    line-height: 1.6 !important;
    max-height: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    padding-right: 3.5rem !important;
  }
  
}

@media (max-width: 768px) {
  .ai-testimonial-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ai-testimonial-wrap {
    max-width: 100% !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
    gap: 1.5rem !important;
  }
  .ai-testimonial-left {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .ai-viewport {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
  }
  .ai-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 100% !important;
    margin: 0 !important;
    padding: 1.5rem 1.25rem 2rem !important;
    min-height: unset !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .ai-card h3 {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    white-space: normal !important;
  }
  .ai-card span {
    font-size: 0.9rem !important;
  }
  .ai-card p {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
    -webkit-line-clamp: unset !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    padding-right: 3.5rem !important;
  }
  .ai-quote {
    font-size: 50px !important;
    right: 12px !important;
    top: 12px !important;
  }
}

/* ===== DEFINITIVE MOBILE TESTIMONIAL FIX =====
   Uses vw units so width resolution cannot be broken
   by any parent overflow/scroll context issues.
   This block MUST stay last in the file.
======================================================= */
@media (max-width: 768px) {
  .ai-viewport {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .ai-card {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .ai-card p {
    /* vw units bypass broken percentage resolution from scroll-container context */
    max-width: calc(100vw - 5rem) !important;
    width: calc(100vw - 5rem) !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    padding-right: 2.5rem !important;
  }
}












