
:root {
    --primary-blue: #0069AD;
    --dark-blue: #004A91;
    --highlight-blue: #007387;
    --light-blue: #acd7ff;
    --text-dark: #1F1A17;
    --bg-black: #000000;
    --bg-white: #ffffff;
    --footer-col-width: 200px;
    --footer-col-sm-width: 250px;
    --whatsapp-btn-padding: 12px 25px;
    --whatsapp-btn-font-size: 25px;
    --container-width: 90%;
    
    --fs-18: 18px;
    --fs-15: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
}

/* =========================================
   1. Moniter Screen Size (min-width: 1849px)
   ========================================= */

@media (min-width: 1849px)  {
     /* Global Utilities */

    h3 { 
        color: var(--light-blue); 
    }
    h4 {
         color: var(--dark-blue); 
         font-size: 20px;
        }
    ul { 
        margin-bottom: 20px; 
        line-height: 1.8; 
    }
    .section { 
        padding: 50px calc((100% - var(--container-width)) / 2); 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .section h2 {
        color: var(--dark-blue); 
        margin-bottom: 20px; 
        text-align: center;
    }
    .section ul { 
        margin-left: 20px; 
    }
    .text-center { 
        text-align: center; 
    }
    .justify-center { 
        justify-content: center; 
    }
    .w-100 { 
        max-width: 100%; 
    }
    .mt-20 { 
        margin-top: 20px; 
    }
    .mb-40 { 
        margin-bottom: 40px; 
    }
    .mb-50 { 
        margin-bottom: 50px; 
    }
    .ml-60 { 
        margin-left: 60px; 
    }
    .bg-light-gray { 
        background-color: #f9f9f9; 
    }
    .bg-white { 
        background-color: #fff; 
    }
    .bg-pale-blue { 
        background-color: var(--light-blue); 
    }
    .bg-white-90 { 
        background-color: #fff; 
        max-width: 90%; 
    }
    .bg-light-center { 
        background-color: #f9f9f9; 
        text-align: center; 
    }
    .bg-white-center { 
        background-color: #fff; 
        text-align: center; 
    }
    .list-unstyled { 
        list-style: none; 
        padding: 0; 
    }
    .hero-subtitle { 
        font-size: var(--fs-20);
        color: var(--dark-blue);
        text-align: center;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .section-title-mb { 
        margin-bottom: 30px; 
    }
    .icon-mr { 
        margin-right: 10px; 
    }
    .text-center-mb-40 { 
        text-align: center; 
        margin-bottom: 40px; 
    }
    .container-90 { 
        max-width: 90%; 
        margin: 0 auto; 
    }

    /* Navbar */
    nav {
        background: #dcefff;
        padding: 15px calc((100% - var(--container-width)) / 2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 10px var(--bg-black);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    nav .logo {
        color: var(--dark-blue);
        font-size: 22px;
        font-weight: bold;
        display: flex;
        align-items: center;
        margin-left: 0;
    }
    nav .logo img { 
        height: 80px; 
        width: auto; 
    }
    nav .nav-content { 
        margin-right: 0; 
        margin-top: 10px; 
        display: flex; 
    }
    nav ul {
        list-style: none;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    nav ul li { 
        margin-left: 30px; 
    }
    nav ul li a {
        color: var(--dark-blue);
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
    }
    nav ul li a:hover { 
        text-decoration: underline; 
    }
    .menu-icon { 
        display: none; 
    }

    /* Dropdowns */

    .dropdown { 
        position: relative; 
    }
    .dropdown-content, .dropdown-content-1, .dropdown-content-quick {
        display: none;
        position: absolute;
        background-color: var(--bg-white);
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
        z-index: 100;
        top: 100%;
        left: 0;
        border-radius: 5px;
        padding: 10px 0;
        text-align: left;
    }
    .dropdown-content { 
        min-width: 150px; 
    }
    .dropdown-content-1 { 
        min-width: 400px; 
    }
    .dropdown-content-quick { 
        min-width: 300px; 
    }
    .dropdown:hover .dropdown-content,
    .dropdown:hover .dropdown-content-1,
    .dropdown:hover .dropdown-content-quick { 
        display: block; 
    }
    .dropdown-content a, .dropdown-content-1 a, .dropdown-content-quick a {
        color: var(--highlight-blue) !important;
        padding: 10px 20px;
        display: block;
        font-size: 16px;
        font-weight: bold;
        white-space: nowrap;
    }
    .dropdown-content a:hover, .dropdown-content-1 a:hover, .dropdown-content-quick a:hover {
        background-color: var(--bg-white);
        text-decoration: underline;
    }
    .nav-dropdown-logo { 
        height: 35px; 
        width: auto; 
        display: block; 
    }

    /* =========================================
   Product Dropdown Custom Styles (Global)
   ========================================= */
   
    .dropdown-content .product-nav-box {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 5px !important;
        margin: 10px 15px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .dropdown-content .product-nav-box:hover {
        transform: scale(1.6);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        background: #ffffff;
        z-index: 100;
        position: relative;
        border-color: var(--primary-blue);
        text-decoration: none !important;
    }

    .dropdown-content .product-nav-box img {
        height: 45px !important;
        width: auto !important;
        max-width: 100%;
        object-fit: contain;
    }

    /* Buttons */

    .contact-btn {
        background-color: var(--dark-blue);
        color: var(--bg-white) !important;
        padding: 10px 25px;
        border-radius: 50px;
        transition: background-color 0.3s ease;
    }
    .contact-btn:hover { 
        background-color: var(--primary-blue); 
        text-decoration: none; 
    }
    .whatsapp-btn {
        background-color: #25D366;
        color: #ffffff !important;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        text-decoration: none !important;
    }
    .whatsapp-btn:hover {
        background-color: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        text-decoration: none !important;
    }
    .mobile-wa-btn { display: none; }

    /* Home / Hero */

    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: flex-start; 
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: var(--bg-white);
        padding: 15px;
    }
    .slider-container { 
        position: absolute; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        z-index: 1; 
    }
    .slide {
        position: absolute; 
        top: 0; left: 0; 
        width: 100%; 
        height: 100%;
        background-size: cover; 
        background-position: center; 
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    .slide.active { 
        opacity: 1; 
    }
    .slide::before {
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
        background: none;
    }
    .hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 60%; 
    }
    .hero h1 { 
        font-size: 36px; 
        color: var(--bg-white); 
        margin-bottom: 20px; 
    }
    .hero p { 
        margin: 20px auto; 
        max-width: 100%; 
        font-size: 18px; 
    }
    .btn-group a {
        display: inline-block; 
        margin: 10px; 
        padding: 12px 25px;
        background: var(--dark-blue); 
        color: var(--bg-white);
        text-decoration: none; 
        border-radius: 4px;
    }

    /* Service */

    .service-hero {
        position: relative; 
        width: 100%; 
        height: 60vh; 
        min-height: 400px;
        background-size: cover; 
        background-position: center;
        display: flex; 
        align-items: flex-start; 
        justify-content: center;
        text-align: center; 
        color: var(--bg-white);
    }
    .service-hero::before {
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
    }
    .service-hero-content {
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 70%;
        animation: fadeIn 1s ease-in-out;
    }
    .service-hero-content h1 {
        font-size: 40px; 
        margin-bottom: 0px; 
        color: var(--bg-white);
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }
    .service-hero-content h2 {
        font-size: 30px; 
        font-weight: normal; 
        color: var(--bg-white);
        margin-top: 0; 
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }
    .service-intro-text {
        font-size: 20px;
        font-weight: bold;
        color: var(--dark-blue);
    }
    .service-detail-header {
        background-color: var(--bg-white);
        padding: 60px calc((100% - var(--container-width)) / 2) 40px;
        text-align: center; 
        border-bottom: 1px solid #eee;
    }
    .service-detail-header h1 { 
        color: var(--dark-blue); 
        font-size: 36px; 
        margin-bottom: 10px; 
    }
    .service-detail-header h2 { 
        color: #555; 
        font-size: 20px; 
        font-weight: normal; 
        margin-bottom: 20px; 
    }
    .service-detail-header p { 
        max-width: 100%; 
        margin: 0 auto; 
        font-size: 18px; 
        color: #444; 
        line-height: 1.6; 
    }
    .service-detail-content {
        padding: 60px calc((100% - var(--container-width)) / 2);
        background-color: #f8f9fa;
    }
    .service-grid {
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px; 
        max-width: 100%; 
        margin: 0 auto;
    }
    .service-card {
        background: var(--bg-white); 
        padding: 20px 30px; 
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid var(--primary-blue); 
        display: grid;
        grid-template-columns: auto 1fr; 
        column-gap: 20px; 
        align-items: center;
    }
    .service-card:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    }
    .service-card .icon-wrapper { 
        font-size: 40px; 
        color: var(--highlight-blue); 
        margin-bottom: 0; 
        grid-column: 1; 
        grid-row: 1; 
    }
    .service-card h3 { 
        color: var(--dark-blue); 
        font-size: 25px; 
        margin-top: 0; 
        margin-bottom: 0; 
        grid-column: 2; 
        grid-row: 1; 
    }
    .service-card .description { 
        font-size: 20px; 
        color: #555; 
        margin-bottom: 20px; 
        font-style: italic; 
        grid-column: 1 / -1; 
        grid-row: 2; 
        margin-top: 15px; 
    }
    .service-card ul { 
        grid-column: 1 / -1; 
        grid-row: 3; 
    }
    .service-card ul li { 
        font-size: 18px; 
        margin-bottom: 8px; 
        color: #555; 
        list-style-type: disc; 
        margin-left: 20px; 
    }
    .service-cta-btn {
        display: inline-block; 
        background-color: var(--primary-blue); 
        color: #fff;
        padding: 12px 25px; 
        border-radius: 50px; 
        text-decoration: none;
        font-weight: bold; 
        transition: background-color 0.3s;
    }
    .service-cta-btn:hover { 
        background-color: var(--dark-blue); 
        text-decoration: none; 
        color: #fff; }
    .qs-banner {
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        align-items: center;
        max-width: 60%;
        margin: 0 auto; 
        gap: 40px;
    }
    .qs-divider { 
        width: 3px; 
        height: 150px; 
        background-color: var(--light-blue); 
    }
    .qs-content-left {
        flex: 1; 
        min-width: 100px; 
        text-align: left; 
        font-size: 20px;
        font-weight: bold; 
        line-height: 1.6; 
        color: var(--bg-white);
    }
    .qs-content-left p { 
        margin: 5px 0; 
    }
    .qs-content-right { 
        flex: 1; 
        min-width: 300px; 
    }
    .glass-cta-box {
        background: rgba(255, 255, 255, 0.1); 
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); 
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 60px 100px; 
        border-radius: 4px; 
        display: inline-block;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    }
    .glass-cta-box .contact-btn { 
        font-weight: bold; 
        text-decoration: none; 
    }
    .glass-cta-box .contact-btn:hover { 
        text-decoration: underline !important; 
    }

    /* Outcome Section */
    .outcome-section { 
        background-color: var(--bg-light-gray); 
    }
    .outcome-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--dark-blue);
    }
    .outcome-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .outcome-card { 
        background: var(--bg-white); 
        padding: 20px; 
        border-radius: 8px; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.5); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        text-align: center; 
    }
    .outcome-icon { 
        color: var(--primary-blue); 
        font-size: 30px; 
        margin-bottom: 15px; 
    }

    /* Service CTA Section */

    .service-cta-section { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 60px 20px; 
    }
    .service-cta-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--bg-white); 
    }
    .service-cta-right { 
        text-align: center; 
    }
    .service-cta-btn-white { 
        background-color: var(--bg-white); 
        color: var(--dark-blue) !important; 
        font-size: 20px; 
        padding: 15px 30px; 
    }

    /* About */

    .about-overview { 
        text-align: center; 
        justify-content: center; 
        max-width: 70%; 
        margin: 0 auto; 
        font-size: 20px;
    }
    .about-text { 
        font-size: var(--fs-20); 
        line-height: 1.8; 
        color: #555; 
    }
    .mission-vision-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
        justify-content: center; 
        max-width: 80%; 
        margin: 0 auto; 
    }
    .mv-card { 
        flex: 1; 
        min-width: 300px; 
        background: #fff; 
        padding: 40px; 
        border-radius: 8px; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
        text-align: center; 
    }
    .mv-card.mission { 
        border-top: 4px solid var(--primary-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-card.vision { 
        border-top: 4px solid var(--highlight-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-title { 
        margin-top: 0; 
    }
    .mv-title.mission { 
        color: var(--dark-blue); 
    }
    .mv-title.vision { 
        color: var(--highlight-blue); 
    }
    .mv-desc { 
        font-size: var(--fs-18); 
        color: #444; 
        line-height: 1.6; 
    }
    .partners-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px; 
    }
    .partner-pill { 
        background: #fff; 
        padding: 10px 20px; 
        font-size: var(--fs-18); 
        border-radius: 50px; 
        font-weight: bold; 
        color: var(--dark-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .approach-desc { 
        font-size: 18px; 
        margin-bottom: 40px; 
        color: #555; 
    }
    .process-flow { 
        display: flex; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 30px; 
        margin-top: 30px; 
    }
    .process-step { 
        background: #fff; 
        padding: 20px 30px; 
        border-radius: 50px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        border: 1px solid #eee; 
    }
    .approach-circle { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px; 
        width: 250px; 
        height: 250px; 
        border-radius: 50%; 
        justify-content: center; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
    }
    .process-icon { 
        font-size: 40px; 
        color: var(--primary-blue); 
        margin-bottom: 10px; 
    }
    .step-title { 
        font-weight: bold; 
        color: var(--dark-blue); 
        font-size: 18px; 
    }
    .step-title-lg { 
        font-size: var(--fs-20); 
    }
    .step-outcome { 
        color: var(--primary-blue); 
        font-weight: bold; 
        font-size: 18px; 
    }
    .step-outcome-md { 
        font-size: var(--fs-18); 
        font-weight: normal; 
        color: #666; 
    }
    .value-expertise-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 50px; 
    }
    .ve-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .ve-col-h1 { 
        margin-bottom: 20px; 
    }
    .value-list-item { 
        font-size: var(--fs-18); 
        margin-bottom: 15px; 
        display: flex; 
        align-items: start; 
    }
    .value-icon { 
        color: var(--highlight-blue); 
        margin-right: 10px; 
        margin-top: 5px; 
    }
    .expertise-desc { 
        font-size: var(--fs-18); 
        line-height: 1.8; 
        color: #555; 
    }
    .why-choose-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
        max-width: 100%; 
    }
    .ch-box-padding { 
        padding: 20px; 
    }
    .ch-text { 
        font-size: var(--fs-18); 
    }
    .team-carousel-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        position: relative; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .carousel-view { 
        overflow: hidden; 
        width: 100%; 
        padding: 20px 0; 
    }
    .carousel-track { 
        display: flex; 
        gap: 30px; 
        transition: transform 0.5s ease-in-out; 
        justify-content: flex-start; 
    }
    .team-card-carousel { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        flex: 0 0 300px; 
        text-align: center; 
        border-top: 4px solid var(--primary-blue); 
        transition: transform 0.3s ease; 
    }
    .team-card-carousel:hover { 
        transform: translateY(-5px); 
    }
    .team-img-circle { 
        width: 200px; 
        height: 200px; 
        background: #f0f4f8; 
        border-radius: 50%; 
        margin: 15px auto 20px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 60px; 
        color: var(--dark-blue); 
        overflow: hidden; 
    }
    .team-img-circle img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
    }
    .team-bio-text { 
        font-size: 15px; 
        color: #555; 
        line-height: 1.6; 
        margin-top: 10px; 
    }
    .team-desig { 
        color: var(--primary-blue); 
        font-size: 18px; 
        margin: 10px 0px; 
    }
    .nav-btn-carousel { 
        background: transparent; 
        border: none; 
        font-size: 2rem; 
        color: var(--primary-blue); 
        cursor: pointer; 
        padding: 0 15px; 
        z-index: 2; 
    }
    .nav-btn-carousel:hover { 
        color: var(--dark-blue); 
    }
    .dots-nav-container { 
        text-align: center; 
        margin-top: 10px; 
    }
    .dot-nav { 
        height: 12px; 
        width: 12px; 
        margin: 0 5px; 
        background-color: #ccc; 
        border-radius: 50%; 
        display: inline-block; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .dot-nav.active { 
        background-color: var(--primary-blue); 
    }

    /* Career */

    .why-work-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .career-highlight-box { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        font-size: 18px;
        text-align: center; 
        transition: transform 0.3s; 
    }
    .career-highlight-box:hover { 
        transform: translateY(-5px); 
    }
    .career-highlight-box i { 
        font-size: 35px; 
        color: var(--primary-blue); 
        margin-bottom: 15px; 
    }
    .job-container { 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .job-category-title { 
        color: var(--dark-blue); 
        font-size: 24px; 
        margin-top: 50px; 
        margin-bottom: 25px; 
        border-bottom: 2px solid var(--light-blue); 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .job-block { 
        background: #fff; 
        border: 1px solid #e0e0e0; 
        padding: 25px; 
        margin-bottom: 20px; 
        border-radius: 6px; 
        transition: box-shadow 0.3s; 
    }
    .job-block:hover { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
        border-color: var(--light-blue); 
    }
    .job-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 10px; 
        flex-wrap: wrap; 
    }
    .job-title { 
        font-size: 20px; 
        color: var(--primary-blue); 
        margin: 0; 
    }
    .job-exp { 
        background: #f0f4f8; 
        padding: 5px 10px; 
        border-radius: 4px; 
        font-size: 14px; 
        color: #555; 
        font-weight: bold; 
    }
    .job-desc { 
        font-size: 16px; 
        color: #333; 
        margin-bottom: 15px; 
        font-style: italic; 
    }
    .job-details { 
        margin-bottom: 20px; 
        color: #444; 
        line-height: 1.6; 
    }
    .apply-btn { 
        display: inline-block; 
        padding: 8px 25px; 
        background-color: var(--dark-blue); 
        color: white; 
        border-radius: 4px; 
        text-decoration: none; 
        font-size: 15px; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .apply-btn:hover { 
        background-color: var(--primary-blue); 
        color: white; 
        text-decoration: none; 
    }
    .internship-section {
        text-align: center;
        align-items: center;
        background-color: var(--dark-blue);
    }
    .internship-section h2 {
        color: var(--bg-white);
    }
    .internship-text {
        color: var(--bg-white);
        font-size: 20px;
        max-width: 60%;
        margin: 0 auto;
        margin-bottom: 20px;

    }
    .internship-btn {
        background-color: var(--bg-white);
        color: var(--dark-blue) !important;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .who-apply-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
    }
    .who-apply-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .process-flow-vertical { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px; 
        margin-top: 10px; 
    }
    .process-step-vertical { 
        width: 100%; 
        padding: 15px 25px; 
    }

    /* Contact */

    .contact-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 20px; 
    }
    .contact-image { 
        flex: 0 0 calc(40% - 20px); 
        max-width: 40%; 
        min-width: 300px; 
        margin-left: 50px; 
    }
    .contact-image img {
        width: 100%; 
        height: auto; 
        border-radius: 10px; 
    }
    .contact-wrapper .contact-container { 
        flex: 0 0 calc(60% - 20px); 
        max-width: 50%; 
        margin: auto; 
        width: 100%; 
    }
    .contact-container { 
        max-width: 100%; 
        margin: 0 auto; 
        background: var(--bg-white); 
        padding: 40px; 
        border-radius: 10px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.8); 
    }
    .contact-form .form-group { 
        margin-bottom: 20px; 
    }
    .contact-form label { 
        display: block; 
        margin-bottom: 8px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }
    .contact-form input, .contact-form select, .contact-form textarea { 
        width: 100%; 
        padding: 12px; 
        border: 1px solid #ccc; 
        border-radius: 5px; 
        font-size: 16px; 
        font-family: inherit; 
    }
    .contact-form button {
        width: 100%; 
        padding: 15px; 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        border: none; 
        border-radius: 50px; 
        font-size: 18px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .contact-form button:hover { 
        background-color: var(--primary-blue); 
    }
    .form-text { 
        font-size: 13px; 
        color: #666; 
        margin-top: 5px; 
        display: block; 
    }
    .contact-form-row { 
        display: flex; 
        gap: 20px; 
        flex-wrap: wrap; 
    }
    .contact-form-col { 
        flex: 1; 
        min-width: 200px; 
    }

    /* Modal */

    .modal { 
        display: none; 
        position: fixed; 
        z-index: 2000; 
        left: 0; 
        top: 0; 
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0,0,0,0.6); 
        justify-content: center; 
        align-items: center; 
    }
    .modal-content { 
        background-color: var(--bg-white); 
        margin: 5% auto; 
        padding: 30px; 
        border: 1px solid #888; 
        width: 90%; 
        max-width: 700px; 
        border-radius: 10px; 
        position: relative; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
        animation: fadeIn 0.3s; 
    }
    @keyframes fadeIn { 
        from {
            opacity: 0; 
            transform: translateY(-20px);
        } 
        to {
            opacity: 1; 
            transform: translateY(0);
        } 
    }
    .close-btn { 
        color: #aaa; 
        float: right; 
        font-size: 28px; 
        font-weight: bold; 
        cursor: pointer; 
        position: absolute; 
        right: 20px; 
        top: 10px; 
    }
    .close-btn:hover, .close-btn:focus { 
        color: #000; 
        text-decoration: none; 
        cursor: pointer; 
    }
    .qs-form-row { 
        display: flex; 
        gap: 20px; 
        margin-bottom: 15px; 
    }
    .qs-form-group { 
        flex: 1; 
        display: flex; 
        flex-direction: column; 
    }
    .qs-form-group label { 
        margin-bottom: 5px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }

    /* Footer */

    footer { 
        background: var(--dark-blue); 
        color: var(--bg-white); 
    }
    footer p { 
        margin: 0px 0; 
    }
    footer a { 
        color: var(--bg-white); 
        text-decoration: none; 
    }
    .main-footer { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 20px calc((95% - var(--container-width)) / 2) 20px; 
        margin-top: 60px; 
    }
    .footer-container { 
        display: flex;
        flex-wrap: wrap;
        max-width: 100%; 
        margin: 0 auto; 
        gap: 30px; 
        margin-bottom: 5px;
        align-items: flex-start;
    }
    .footer-col { 
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .footer-col-group {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 30px;
        min-width: 0;
    }
    .footer-col-row {
        display: flex;
        gap: 30px;
        width: 100%;
    }
    .footer-col-row .footer-col {
        flex: 1;
    }
    .footer-follow-container {
        margin-top: 50px;
    }
    .footer-col-sm { 
        min-width: 0;
    }
    .footer-col h3 { 
        font-size: 25px; 
        color: var(--light-blue); 
        margin-bottom: 5px; 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .footer-col ul {
        list-style: disc;
        padding-left: 20px;
        margin: 0;
    }
    .footer-col > *:last-child {
        margin-bottom: 0;
    }
    .footer-services-wrapper {
        display: flex;
        gap: 20px;
    }
    .footer-wa-box {
        display: flex;
        margin: 0 auto;
        margin-top: 90px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .footer-wa-title {
        font-size: 25px;
    }
    .footer-col p, .footer-col a { 
        color: var(--bg-white); 
        font-size: 16px; 
        line-height: 1.8; 
        text-decoration: none; 
        display: block; 
    }
    .footer-col a:hover { 
        color: var(--bg-white); 
        text-decoration: underline; 
    }
    .footer-logo { 
        height: 200px; 
        width: auto; 
        margin-bottom: 15px; 
        background: var(--bg-white); 
        padding: 5px; 
        border-radius: 20px; 
    }
    .aassay-btn { 
        background-color: var(--bg-white); 
        color: #0a3450 !important; 
        padding: 10px 20px; 
        border-radius: 5px; 
        font-weight: bold; 
        display: inline-block; 
        margin-top: 10px; 
        text-align: center; 
        width: 80%; 
    }
    .aassay-btn:hover { 
        background-color: var(--light-blue); 
        text-decoration: none !important; 
    }
    .aassay-logo-img { 
        max-width: 100%; 
        height: auto; 
        display: block; 
    }
    .footer-map {
        width: 100%;
        margin-top: 0 !important;
    }
    .footer-bottom { 
        border-top: 1px solid var(--text-dark); 
        margin-top: 0; 
        padding-top: 10px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        flex-wrap: wrap; 
    }
    .footer-bottom p { 
        font-size: 20px; 
        margin: 0; 
    }
    .footer-links { 
        display: flex; 
        gap: 20px; 
    }
    .footer-links a { 
        color: var(--bg-white); 
        text-decoration: none; 
        font-size: 18px; 
    }
    .social-icons { 
        margin-bottom: 0px; 
        display: flex; 
        align-items: center; 
    }
    .social-icons a { 
        color: var(--bg-white); 
        font-size: 30px; 
        margin-right: 25px; 
        transition: color 0.3s, transform 0.3s; 
        display: inline-block; 
    }
    .social-icons a:hover { 
        transform: scale(1.2); 
    }
    .footer-whatsapp-btn { 
        display: inline-flex; 
        align-items: center; 
        background-color: #25D366; 
        color: #ffffff !important; 
        padding: var(--whatsapp-btn-padding); 
        border-radius: 5px; 
        font-size: var(--whatsapp-btn-font-size); 
        margin-top: 5px; 
        transition: background-color 0.3s ease; 
    }
    .footer-whatsapp-btn:hover { 
        background-color: #128C7E; 
        text-decoration: none; 
    }

    /* =========================================
       AASSAY Page Styles (Monitor)
       ========================================= */
    .aassay-hero {
        /* background: linear-gradient(135deg, var(--primary-blue), var(--highlight-blue)); */
        background: linear-gradient(135deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 50px 20px;
        text-align: center;
    }
    .aassay-hero-content {
        max-width: 60%;
        margin: 0 auto;
    }
    .aassay-hero-logo {
        height: 120px;
        margin-bottom: 15px;
        padding: 10px 10px;
        background-color: white;
        border-radius: 10px;
    }
    .aassay-hero-content h1 {
        font-size: 56px;
        margin-bottom: 20px;
        color: #fff;
        line-height: 1.2;
    }
    .aassay-hero-content h1 span {
        font-size: 28px;
        font-weight: normal;
        display: block;
        margin-top: 10px;
        color: var(--light-blue);
    }
    .aassay-hero-content p {
        font-size: 22px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
    .aassay-btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .aassay-btn-primary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-primary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-secondary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-section {
        padding: 80px 20px;
    }
    .aassay-desc {
        font-size: 22px;
        max-width: 1000px;
        margin: 0 auto 50px;
        color: #000000;
    }
    .aassay-use-cases-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-card {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        font-weight: bold;
        color: var(--dark-blue);
        text-align: center;
        flex: 1 1 300px;
        border-left: 5px solid  rgb(176, 77, 137);
        font-size: 20px;
    }
    .aassay-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .benefit-item {
        background: #fff;
        padding: 20px 25px;
        border-radius: 5px;
        font-size: 20px;
        color: #444;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .benefit-item i {
        color:  rgb(176, 77, 137);
        font-size: 24px;
    }
    .aassay-feature-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-feature-row.reverse {
        flex-direction: row-reverse;
    }
    .aassay-feature-text {
        flex: 1;
    }
    .aassay-feature-text h3 {
        font-size: 36px;
        color: var(--dark-blue);
        margin-bottom: 25px;
    }
    .aassay-feature-text p {
        font-size: 20px;
        color: #000000;
        margin-bottom: 35px;
        line-height: 1.6;
    }
    .aassay-btn-outline {
        display: inline-block;
        padding: 15px 30px;
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
        text-align: center;
    }
    .aassay-btn-outline:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-feature-img {
        flex: 1;
        text-align: center;
    }
    .aassay-big-icon {
        font-size: 200px;
        color:  rgb(176, 77, 137);
        /* opacity: 0.5; */
    }
    .aassay-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .aassay-info-box {
        background: #f9f9f9;
        padding: 50px;
        border-radius: 10px;
        border-top: 5px solid rgb(176, 77, 137);
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .aassay-info-box h3 {
        color: var(--dark-blue);
        margin-bottom: 20px;
        font-size: 28px;
    }
    .aassay-info-box i {
        margin-right: 10px;
        color: rgb(176, 77, 137);
    }
    .aassay-info-box p {
        font-size: 20px;
        line-height: 1.6;
    }
    .aassay-cta-section {
       background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        text-align: center;
        padding: 100px 20px;
    }
    .aassay-cta-section h1 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 40px;
    }
    .aassay-cta-section p {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .aassay-btn-primary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-primary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-secondary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
}


/* =========================================
   1. Desktop Screen Size (min-width: 1201px) and (max-width: 1848px)
   ========================================= */

@media (min-width: 1201px) and (max-width: 1848px)  {

    /* Global Utilities */

    h3 { 
        color: var(--light-blue); 
    }
    h4 {
         color: var(--dark-blue); 
         font-size: 20px;
        }
    ul { 
        margin-bottom: 20px; 
        line-height: 1.8; 
    }
    .section { 
        padding: 50px calc((100% - var(--container-width)) / 2); 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .section h2 {
        color: var(--dark-blue); 
        margin-bottom: 20px; 
        font-size: 25px;
        text-align: center;
    }
    .section ul { 
        margin-left: 20px; 
    }
    .text-center { 
        text-align: center; 
    }
    .justify-center { 
        justify-content: center; 
    }
    .w-100 { 
        max-width: 100%; 
    }
    .mt-20 { 
        margin-top: 20px; 
    }
    .mb-40 { 
        margin-bottom: 40px; 
    }
    .mb-50 { 
        margin-bottom: 50px; 
    }
    .ml-60 { 
        margin-left: 60px; 
    }
    .bg-light-gray { 
        background-color: #f9f9f9; 
    }
    .bg-white { 
        background-color: #fff; 
    }
    .bg-pale-blue { 
        background-color: var(--light-blue); 
    }
    .bg-white-90 { 
        background-color: #fff; 
        max-width: 90%; 
    }
    .bg-light-center { 
        background-color: #f9f9f9; 
        text-align: center; 
    }
    .bg-white-center { 
        background-color: #fff; 
        text-align: center; 
    }
    .list-unstyled { 
        list-style: none; 
        padding: 0; 
    }
    .hero-subtitle { 
       font-size: var(--fs-20);
        color: var(--dark-blue);
        text-align: center;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .section-title-mb { 
        margin-bottom: 30px; 
    }
    .icon-mr { 
        margin-right: 10px; 
    }
    .text-center-mb-40 { 
        text-align: center; 
        margin-bottom: 40px; 
    }
    .container-90 { 
        max-width: 90%; 
        margin: 0 auto; 
    }

    /* Navbar */
    nav {
        background: #dcefff;
        padding: 10px calc((100% - var(--container-width)) / 2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 10px var(--bg-black);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    nav .logo {
        color: var(--dark-blue);
        font-size: 22px;
        font-weight: bold;
        display: flex;
        align-items: center;
        margin-left: 0;
    }
    nav .logo img { 
        height: 60px; 
        width: auto; 
    }
    nav .nav-content { 
        margin-right: 0; 
        display: flex; 
    }
    nav ul {
        list-style: none;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    nav ul li { 
        margin-left: 30px; 
    }
    nav ul li a {
        color: var(--dark-blue);
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
    }
    nav ul li a:hover { 
        text-decoration: underline; 
    }
    .menu-icon { 
        display: none; 
    }

    /* Dropdowns */

    .dropdown { 
        position: relative; 
    }
    .dropdown-content, .dropdown-content-1, .dropdown-content-quick {
        display: none;
        position: absolute;
        background-color: var(--bg-white);
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
        z-index: 100;
        top: 100%;
        left: 0;
        border-radius: 5px;
        padding: 10px 0;
        text-align: left;
    }
    .dropdown-content { 
        min-width: 150px; 
    }
    .dropdown-content-1 { 
        min-width: 400px; 
    }
    .dropdown-content-quick { 
        min-width: 300px; 
    }
    .dropdown:hover .dropdown-content,
    .dropdown:hover .dropdown-content-1,
    .dropdown:hover .dropdown-content-quick { 
        display: block; 
    }
    .dropdown-content a, .dropdown-content-1 a, .dropdown-content-quick a {
        color: var(--highlight-blue) !important;
        padding: 10px 20px;
        display: block;
        font-size: 16px;
        font-weight: bold;
        white-space: nowrap;
    }
    .dropdown-content a:hover, .dropdown-content-1 a:hover, .dropdown-content-quick a:hover {
        background-color: var(--bg-white);
        text-decoration: underline;
    }
    .nav-dropdown-logo { 
        height: 35px; 
        width: auto; 
        display: block; 
    }

    /* =========================================
   Product Dropdown Custom Styles (Global)
   ========================================= */
   
    .dropdown-content .product-nav-box {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 5px !important;
        margin: 10px 15px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .dropdown-content .product-nav-box:hover {
        transform: scale(1.6);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        background: #ffffff;
        z-index: 100;
        position: relative;
        border-color: var(--primary-blue);
        text-decoration: none !important;
    }
    .dropdown-content .product-nav-box img {
        height: 45px !important;
        width: auto !important;
        max-width: 100%;
        object-fit: contain;
    }

    /* Buttons */

    .contact-btn {
        background-color: var(--dark-blue);
        color: var(--bg-white) !important;
        padding: 10px 25px;
        border-radius: 50px;
        transition: background-color 0.3s ease;
    }
    .contact-btn:hover { 
        background-color: var(--primary-blue); 
        text-decoration: none; 
    }
    .whatsapp-btn {
        background-color: #25D366;
        color: #ffffff !important;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        text-decoration: none !important;
    }
    .whatsapp-btn:hover {
        background-color: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        text-decoration: none !important;
    }
    .mobile-wa-btn { display: none; }

    /* Home / Hero */

    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: flex-start; 
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: var(--bg-white);
        padding: 15px;
    }
    .slider-container { 
        position: absolute; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        z-index: 1; 
    }
    .slide {
        position: absolute; 
        top: 0; left: 0; 
        width: 100%; 
        height: 100%;
        background-size: cover; 
        background-position: center; 
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    .slide.active { 
        opacity: 1; 
    }
    .slide::before {
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
        background: none;
    }
    .hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 60%; 
    }
    .hero h1 { 
        font-size: 30px; 
        color: var(--bg-white); 
        margin-bottom: 20px; 
    }
    .hero p { 
        margin: 20px auto; 
        max-width: 100%; 
        font-size: 15px; 
    }
    .btn-group a {
        display: inline-block; 
        margin: 10px; 
        padding: 12px 25px;
        background: var(--dark-blue); 
        color: var(--bg-white);
        text-decoration: none; 
        border-radius: 4px;
    }

    /* Service */

    .service-hero {
        position: relative; 
        width: 100%; 
        height: 60vh; 
        min-height: 400px;
        background-size: cover; 
        background-position: center;
        display: flex; 
        align-items: flex-start; 
        justify-content: center;
        text-align: center; 
        color: var(--bg-white);
    }
    .service-hero::before {
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
    }
    .service-hero-content {
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 80%;
        animation: fadeIn 1s ease-in-out;
    }
    .service-hero-content h1 {
        font-size: 30px; 
        margin-bottom: 0px; 
        color: var(--bg-white);
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }
    .service-hero-content h2 {
        font-size: 20px; 
        font-weight: normal; 
        color: var(--bg-white);
        margin-top: 0; 
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }
    .service-intro-text {
        font-size: 20px;
        font-weight: bold;
        color: var(--dark-blue);
    }
    .service-detail-header {
        background-color: var(--bg-white);
        padding: 60px calc((100% - var(--container-width)) / 2) 40px;
        text-align: center; 
        border-bottom: 1px solid #eee;
    }
    .service-detail-header h1 { 
        color: var(--dark-blue); 
        font-size: 36px; 
        margin-bottom: 10px; 
    }
    .service-detail-header h2 { 
        color: #555; 
        font-size: 20px; 
        font-weight: normal; 
        margin-bottom: 20px; 
    }
    .service-detail-header p { 
        max-width: 100%; 
        margin: 0 auto; 
        font-size: 18px; 
        color: #444; 
        line-height: 1.6; 
    }
    .service-detail-content {
        padding: 60px calc((100% - var(--container-width)) / 2);
        background-color: #f8f9fa;
    }
    .service-grid {
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px; 
        max-width: 100%; 
        margin: 0 auto;
    }
    .service-card {
        background: var(--bg-white); 
        padding: 20px 30px; 
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid var(--primary-blue); 
        display: grid;
        grid-template-columns: auto 1fr; 
        column-gap: 20px; 
        align-items: center;
    }
    .service-card:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    }
    .service-card .icon-wrapper { 
        font-size: 40px; 
        color: var(--highlight-blue); 
        margin-bottom: 0; 
        grid-column: 1; 
        grid-row: 1; 
    }
    .service-card h3 { 
        color: var(--dark-blue); 
        font-size: 25px; 
        margin-top: 0; 
        margin-bottom: 0; 
        grid-column: 2; 
        grid-row: 1; 
    }
    .service-card .description { 
        font-size: 20px; 
        color: #555; 
        margin-bottom: 20px; 
        font-style: italic; 
        grid-column: 1 / -1; 
        grid-row: 2; 
        margin-top: 15px; 
    }
    .service-card ul { 
        grid-column: 1 / -1; 
        grid-row: 3; 
    }
    .service-card ul li { 
        font-size: 18px; 
        margin-bottom: 8px; 
        color: #555; 
        list-style-type: disc; 
        margin-left: 20px; 
    }
    .service-cta-btn {
        display: inline-block; 
        background-color: var(--primary-blue); 
        color: #fff;
        padding: 12px 25px; 
        border-radius: 50px; 
        text-decoration: none;
        font-weight: bold; 
        transition: background-color 0.3s;
    }
    .service-cta-btn:hover { 
        background-color: var(--dark-blue); 
        text-decoration: none; 
        color: #fff; }
    .qs-banner {
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        align-items: center;
        max-width: 80%;
        margin: 0 auto; 
        gap: 40px;
    }
    .qs-divider { 
        width: 3px; 
        height: 150px; 
        background-color: var(--light-blue); 
    }
    .qs-content-left {
        flex: 1; 
        min-width: 100px; 
        text-align: left; 
        font-size: 20px;
        font-weight: bold; 
        line-height: 1.6; 
        color: var(--bg-white);
    }
    .qs-content-left p { 
        margin: 5px 0; 
    }
    .qs-content-right { 
        flex: 1; 
        min-width: 300px; 
    }
    .glass-cta-box {
        background: rgba(255, 255, 255, 0.1); 
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); 
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 60px 85px; 
        border-radius: 4px; 
        display: inline-block;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    }
    .glass-cta-box .contact-btn { 
        font-weight: bold; 
        text-decoration: none; 
    }
    .glass-cta-box .contact-btn:hover { 
        text-decoration: underline !important; 
    }

    /* Outcome Section */
    .outcome-section { 
        background-color: var(--bg-light-gray); 
    }
    .outcome-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--dark-blue);
    }
    .outcome-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .outcome-card { 
        background: var(--bg-white); 
        padding: 20px; 
        border-radius: 8px; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.5); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        text-align: center; 
    }
    .outcome-icon { 
        color: var(--primary-blue); 
        font-size: 30px; 
        margin-bottom: 15px; 
    }

    /* Service CTA Section */

    .service-cta-section { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 60px 20px; 
    }
    .service-cta-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--bg-white); 
    }
    .service-cta-right { 
        text-align: center; 
    }
    .service-cta-btn-white { 
        background-color: var(--bg-white); 
        color: var(--dark-blue) !important; 
        font-size: 20px; 
        padding: 15px 30px; 
    }

    /* About */

    .about-overview { 
        text-align: center; 
        justify-content: center; 
        max-width: 70%; 
        margin: 0 auto; 
        font-size: 20px;
    }
    .about-text { 
        font-size: var(--fs-20); 
        line-height: 1.8; 
        color: #555; 
    }
    .mission-vision-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
        justify-content: center; 
        max-width: 80%; 
        margin: 0 auto; 
    }
    .mv-card { 
        flex: 1; 
        min-width: 300px; 
        background: #fff; 
        padding: 40px; 
        border-radius: 8px; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
        text-align: center; 
    }
    .mv-card.mission { 
        border-top: 4px solid var(--primary-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-card.vision { 
        border-top: 4px solid var(--highlight-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-title { 
        margin-top: 0; 
    }
    .mv-title.mission { 
        color: var(--dark-blue); 
    }
    .mv-title.vision { 
        color: var(--highlight-blue); 
    }
    .mv-desc { 
        font-size: var(--fs-18); 
        color: #444; 
        line-height: 1.6; 
    }
    .partners-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px; 
    }
    .partner-pill { 
        background: #fff; 
        padding: 10px 20px; 
        font-size: var(--fs-18); 
        border-radius: 50px; 
        font-weight: bold; 
        color: var(--dark-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .approach-desc { 
        font-size: 18px; 
        margin-bottom: 40px; 
        color: #555; 
    }
    .process-flow { 
        display: flex; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 30px; 
        margin-top: 30px; 
    }
    .process-step { 
        background: #fff; 
        padding: 20px 30px; 
        border-radius: 50px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        border: 1px solid #eee; 
    }
    .approach-circle { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px; 
        width: 250px; 
        height: 250px; 
        border-radius: 50%; 
        justify-content: center; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
    }
    .process-icon { 
        font-size: 40px; 
        color: var(--primary-blue); 
        margin-bottom: 10px; 
    }
    .step-title { 
        font-weight: bold; 
        color: var(--dark-blue); 
        font-size: 18px; 
    }
    .step-title-lg { 
        font-size: var(--fs-20); 
    }
    .step-outcome { 
        color: var(--primary-blue); 
        font-weight: bold; 
        font-size: 18px; 
    }
    .step-outcome-md { 
        font-size: var(--fs-18); 
        font-weight: normal; 
        color: #666; 
    }
    .value-expertise-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 50px; 
    }
    .ve-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .ve-col-h1 { 
        margin-bottom: 20px; 
    }
    .value-list-item { 
        font-size: var(--fs-18); 
        margin-bottom: 15px; 
        display: flex; 
        align-items: start; 
    }
    .value-icon { 
        color: var(--highlight-blue); 
        margin-right: 10px; 
        margin-top: 5px; 
    }
    .expertise-desc { 
        font-size: var(--fs-18); 
        line-height: 1.8; 
        color: #555; 
    }
    .why-choose-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
        max-width: 100%; 
    }
    .ch-box-padding { 
        padding: 20px; 
    }
    .ch-text { 
        font-size: var(--fs-18); 
    }
    .team-carousel-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        position: relative; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .carousel-view { 
        overflow: hidden; 
        width: 100%; 
        padding: 20px 0; 
    }
    .carousel-track { 
        display: flex; 
        gap: 30px; 
        transition: transform 0.5s ease-in-out; 
        justify-content: flex-start; 
    }
    .team-card-carousel { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        flex: 0 0 300px; 
        text-align: center; 
        border-top: 4px solid var(--primary-blue); 
        transition: transform 0.3s ease; 
    }
    .team-card-carousel:hover { 
        transform: translateY(-5px); 
    }
    .team-img-circle { 
        width: 200px; 
        height: 200px; 
        background: #f0f4f8; 
        border-radius: 50%; 
        margin: 15px auto 20px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 60px; 
        color: var(--dark-blue); 
        overflow: hidden; 
    }
    .team-img-circle img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
    }
    .team-bio-text { 
        font-size: 15px; 
        color: #555; 
        line-height: 1.6; 
        margin-top: 10px; 
    }
    .team-desig { 
        color: var(--primary-blue); 
        font-size: 18px; 
        margin: 10px 0px; 
    }
    .nav-btn-carousel { 
        background: transparent; 
        border: none; 
        font-size: 2rem; 
        color: var(--primary-blue); 
        cursor: pointer; 
        padding: 0 15px; 
        z-index: 2; 
    }
    .nav-btn-carousel:hover { 
        color: var(--dark-blue); 
    }
    .dots-nav-container { 
        text-align: center; 
        margin-top: 10px; 
    }
    .dot-nav { 
        height: 12px; 
        width: 12px; 
        margin: 0 5px; 
        background-color: #ccc; 
        border-radius: 50%; 
        display: inline-block; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .dot-nav.active { 
        background-color: var(--primary-blue); 
    }

    /* Career */

    .why-work-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .career-highlight-box { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        font-size: 18px;
        text-align: center; 
        transition: transform 0.3s; 
    }
    .career-highlight-box:hover { 
        transform: translateY(-5px); 
    }
    .career-highlight-box i { 
        font-size: 35px; 
        color: var(--primary-blue); 
        margin-bottom: 15px; 
    }
    .job-container { 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .job-category-title { 
        color: var(--dark-blue); 
        font-size: 24px; 
        margin-top: 50px; 
        margin-bottom: 25px; 
        border-bottom: 2px solid var(--light-blue); 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .job-block { 
        background: #fff; 
        border: 1px solid #e0e0e0; 
        padding: 25px; 
        margin-bottom: 20px; 
        border-radius: 6px; 
        transition: box-shadow 0.3s; 
    }
    .job-block:hover { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
        border-color: var(--light-blue); 
    }
    .job-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 10px; 
        flex-wrap: wrap; 
    }
    .job-title { 
        font-size: 20px; 
        color: var(--primary-blue); 
        margin: 0; 
    }
    .job-exp { 
        background: #f0f4f8; 
        padding: 5px 10px; 
        border-radius: 4px; 
        font-size: 14px; 
        color: #555; 
        font-weight: bold; 
    }
    .job-desc { 
        font-size: 16px; 
        color: #333; 
        margin-bottom: 15px; 
        font-style: italic; 
    }
    .job-details { 
        margin-bottom: 20px; 
        color: #444; 
        line-height: 1.6; 
    }
    .apply-btn { 
        display: inline-block; 
        padding: 8px 25px; 
        background-color: var(--dark-blue); 
        color: white; 
        border-radius: 4px; 
        text-decoration: none; 
        font-size: 15px; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .apply-btn:hover { 
        background-color: var(--primary-blue); 
        color: white; 
        text-decoration: none; 
    }
    .internship-section {
        text-align: center;
        align-items: center;
        background-color: var(--dark-blue);
    }
    .internship-section h2 {
        color: var(--bg-white);
    }
    .internship-text {
        font-size: 20px;
        max-width: 60%;
        margin: 0 auto;
        margin-bottom: 20px;
        color: var(--bg-white);
    }
    .internship-btn {
        background-color: var(--bg-white);
        color: var(--dark-blue) !important;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .who-apply-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
    }
    .who-apply-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .process-flow-vertical { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px; 
        margin-top: 10px; 
    }
    .process-step-vertical { 
        width: 100%; 
        padding: 15px 25px; 
    }

    /* Contact */

    .contact-wrapper { 
        display: flex; 
        align-items: left; 
        justify-content: left; 
        flex-wrap: wrap; 
    }
    .contact-image { 
        flex: 0 0 calc(40% - 20px); 
        max-width: 40%; 
        min-width: 300px; 
        margin-left: 10px; 
    }
    .contact-image img {
        width: 100%; 
        margin-top: 50%;
        height: auto; 
        border-radius: 10px; 
    }
    .contact-wrapper .contact-container { 
        flex: 0 0 calc(60% - 20px); 
        max-width: 56%; 
        margin:  0 auto; 
        width: 100%; 
    }
    .contact-container { 
        max-width: 100%; 
        margin: 0 auto; 
        background: var(--bg-white); 
        padding: 40px; 
        border-radius: 10px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.8); 
    }
    .contact-form .form-group { 
        margin-bottom: 20px; 
    }
    .contact-form label { 
        display: block; 
        margin-bottom: 8px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }
    .contact-form input, .contact-form select, .contact-form textarea { 
        width: 100%; 
        padding: 12px; 
        border: 1px solid #ccc; 
        border-radius: 5px; 
        font-size: 16px; 
        font-family: inherit; 
    }
    .contact-form button {
        width: 100%; 
        padding: 15px; 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        border: none; 
        border-radius: 50px; 
        font-size: 18px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .contact-form button:hover { 
        background-color: var(--primary-blue); 
    }
    .form-text { 
        font-size: 13px; 
        color: #666; 
        margin-top: 5px; 
        display: block; 
    }
    .contact-form-row { 
        display: flex; 
        gap: 20px; 
        flex-wrap: wrap; 
    }
    .contact-form-col { 
        flex: 1; 
        min-width: 200px; 
    }

    /* Modal */

    .modal { 
        display: none; 
        position: fixed; 
        z-index: 2000; 
        left: 0; 
        top: 0; 
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0,0,0,0.6); 
        justify-content: center; 
        align-items: center; 
    }
    .modal-content { 
        background-color: var(--bg-white); 
        margin: 5% auto; 
        padding: 30px; 
        border: 1px solid #888; 
        width: 90%; 
        max-width: 700px; 
        border-radius: 10px; 
        position: relative; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
        animation: fadeIn 0.3s; 
    }
    @keyframes fadeIn { 
        from {
            opacity: 0; 
            transform: translateY(-20px);
        } 
        to {
            opacity: 1; 
            transform: translateY(0);
        } 
    }
    .close-btn { 
        color: #aaa; 
        float: right; 
        font-size: 28px; 
        font-weight: bold; 
        cursor: pointer; 
        position: absolute; 
        right: 20px; 
        top: 10px; 
    }
    .close-btn:hover, .close-btn:focus { 
        color: #000; 
        text-decoration: none; 
        cursor: pointer; 
    }
    .qs-form-row { 
        display: flex; 
        gap: 20px; 
        margin-bottom: 15px; 
    }
    .qs-form-group { 
        flex: 1; 
        display: flex; 
        flex-direction: column; 
    }
    .qs-form-group label { 
        margin-bottom: 5px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }

    /* Footer */

    footer { 
        background: var(--dark-blue); 
        color: var(--bg-white); 
    }
    footer p { 
        margin: 0px 0; 
    }
    footer a { 
        color: var(--bg-white); 
        text-decoration: none; 
    }
    .main-footer { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 20px calc((95% - var(--container-width)) / 2) 20px; 
        margin-top: 60px; 
    }
    .footer-container { 
        display: flex;
        flex-wrap: wrap;
        max-width: 100%; 
        margin: 0 auto; 
        gap: 30px; 
        margin-bottom: 5px;
        align-items: flex-start;
    }
    .footer-col { 
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .footer-col-group {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 30px;
        min-width: 0;
    }
    .footer-col-row {
        display: flex;
        gap: 30px;
        width: 100%;
    }
    .footer-col-row .footer-col {
        flex: 1;
    }
    .footer-follow-container {
        margin-top: 50px;
    }
    .footer-col-sm { 
        min-width: 0;
    }
    .footer-col h3 { 
        font-size: 25px; 
        color: var(--light-blue); 
        margin-bottom: 5px; 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .footer-col ul {
        list-style: disc;
        padding-left: 20px;
        margin: 0;
    }
    .footer-col > *:last-child {
        margin-bottom: 0;
    }
    .footer-services-wrapper {
        display: flex;
        gap: 20px;
    }
    .footer-wa-box {
        display: flex;
        margin: 0 auto;
        margin-top: 65px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .footer-wa-title {
        font-size: 25px;
    }
    .footer-col p, .footer-col a { 
        color: var(--bg-white); 
        font-size: 15px; 
        line-height: 1.8; 
        text-decoration: none; 
        display: block; 
    }
    .footer-col a:hover { 
        color: var(--bg-white); 
        text-decoration: underline; 
    }
    .footer-logo { 
        height: 200px; 
        width: auto; 
        margin-bottom: 15px; 
        background: var(--bg-white); 
        padding: 5px; 
        border-radius: 20px; 
    }
    .aassay-btn { 
        background-color: var(--bg-white); 
        color: #0a3450 !important; 
        padding: 10px 20px; 
        border-radius: 5px; 
        font-weight: bold; 
        display: inline-block; 
        margin-top: 10px; 
        text-align: center; 
        width: 80%; 
    }
    .aassay-btn:hover { 
        background-color: var(--light-blue); 
        text-decoration: none !important; 
    }
    .aassay-logo-img { 
        max-width: 100%; 
        height: auto; 
        display: block; 
    }
    .footer-map {
        width: 100%;
        margin-top: 0 !important;
    }
    .footer-bottom { 
        border-top: 1px solid var(--text-dark); 
        margin-top: 0; 
        padding-top: 10px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        flex-wrap: wrap; 
    }
    .footer-bottom p { 
        font-size: 20px; 
        margin: 0; 
    }
    .footer-links { 
        display: flex; 
        gap: 20px; 
    }
    .footer-links a { 
        color: var(--bg-white); 
        text-decoration: none; 
        font-size: 18px; 
    }
    .social-icons { 
        margin-bottom: 0px; 
        display: flex; 
        align-items: center; 
    }
    .social-icons a { 
        color: var(--bg-white); 
        font-size: 30px; 
        margin-right: 25px; 
        transition: color 0.3s, transform 0.3s; 
        display: inline-block; 
    }
    .social-icons a:hover { 
        transform: scale(1.2); 
    }
    .footer-whatsapp-btn { 
        display: inline-flex; 
        align-items: center; 
        background-color: #25D366; 
        color: #ffffff !important; 
        padding: var(--whatsapp-btn-padding); 
        border-radius: 5px; 
        font-size: var(--whatsapp-btn-font-size); 
        margin-top: 5px; 
        transition: background-color 0.3s ease; 
    }
    .footer-whatsapp-btn:hover { 
        background-color: #128C7E; 
        text-decoration: none; 
    }

    /* =========================================
       AASSAY Page Styles (Desktop)
       ========================================= */
     .aassay-hero {
        /* background: linear-gradient(135deg, var(--primary-blue), var(--highlight-blue)); */
        background: linear-gradient(135deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 50px 20px;
        text-align: center;
    }
    .aassay-hero-content {
        max-width: 65%;
        margin: 0 auto;
    }
    .aassay-hero-logo {
        height: 120px;
        margin-bottom: 15px;
        padding: 10px 10px;
        background-color: white;
        border-radius: 10px;
    }
    .aassay-hero-content h1 span {
        font-size: 28px;
        font-weight: normal;
        display: block;
        margin-top: 10px;
        color: var(--light-blue);
    }
    .aassay-hero-content p {
        font-size: 22px;
        max-width: 900px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
    .aassay-btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .aassay-btn-primary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-primary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-secondary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-section {
        padding: 80px 20px;
    }
    .aassay-desc {
        font-size: 22px;
        max-width: 1000px;
        margin: 0 auto 50px;
        color: #000000;
    }
    .aassay-use-cases-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-card {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        font-weight: bold;
        color: var(--dark-blue);
        text-align: center;
        flex: 1 1 300px;
        border-left: 5px solid  rgb(176, 77, 137);
        font-size: 20px;
    }
    .aassay-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .benefit-item {
        background: #fff;
        padding: 20px 25px;
        border-radius: 5px;
        font-size: 20px;
        color: #444;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .benefit-item i {
        color:  rgb(176, 77, 137);
        font-size: 24px;
    }
    .aassay-feature-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-feature-row.reverse {
        flex-direction: row-reverse;
    }
    .aassay-feature-text {
        flex: 1;
    }
    .aassay-feature-text h3 {
        font-size: 30px;
        color: var(--dark-blue);
        margin-bottom: 25px;
    }
    .aassay-feature-text p {
        font-size: 20px;
        color: #000000;
        margin-bottom: 35px;
        line-height: 1.6;
    }
    .aassay-btn-outline {
        display: inline-block;
        padding: 15px 30px;
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
        text-align: center;
    }
    .aassay-btn-outline:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-feature-img {
        flex: 1;
        text-align: center;
    }
    .aassay-big-icon {
        font-size: 200px;
        color:  rgb(176, 77, 137);
        /* opacity: 0.5; */
    }
    .aassay-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .aassay-info-box {
        background: #f9f9f9;
        padding: 50px;
        border-radius: 10px;
        border-top: 5px solid rgb(176, 77, 137);
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .aassay-info-box h3 {
        color: var(--dark-blue);
        margin-bottom: 20px;
        font-size: 28px;
    }
    .aassay-info-box i {
        margin-right: 10px;
        color: rgb(176, 77, 137);
    }
    .aassay-info-box p {
        font-size: 20px;
        line-height: 1.6;
    }
    .aassay-cta-section {
       background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        text-align: center;
        padding: 100px 20px;
    }
    .aassay-cta-section h1 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 30px;
    }
    .aassay-cta-section p {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .aassay-btn-primary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-primary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-secondary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
}

/* =========================================
   2. Laptop Screen Size (min-width: 993px) and (max-width: 1200px)
   ========================================= */

@media (min-width: 993px) and (max-width: 1200px) {

    /* Adjustments for Laptop */

    :root { 
        --fs-20: 20px; 
        --fs-18: 17px; 
    }
    .hero-subtitle { 
        font-size: var(--fs-20);
        color: var(--dark-blue);
        text-align: left;
        font-weight: bold;
        margin-top: -20px;
        margin-bottom: 20px;
    }
    .section-title-mb { 
        margin-bottom: 20px; 
    }

    /* Copy of Desktop Styles for editing */

    h3 {  
        color: var(--light-blue    ); 
    }
    h4 {
         color: var(--dark-blue); 
         font-size: 20px;
        }
    ul { 
        margin-bottom: 20px; 
        line-height: 1.8; 
    }
    .section { 
        padding: 50px calc((100% - var(--container-width)) / 2); 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .section h2 { 
        color: var(--dark-blue); 
        margin-bottom: 20px; 
        font-size: 25px;
        text-align: center;
    }
    .section ul { 
        margin-left: 20px; 
    }
    .text-center { 
        text-align: center; 
    }
    .justify-center { 
        justify-content: center; 
    }
    .w-100 { 
        max-width: 100%; 
    }
    .mt-20 { 
        margin-top: 20px; 
    }
    .mb-40 { 
        margin-bottom: 40px; 
    }
    .mb-50 { 
        margin-bottom: 50px; 
    }
    .ml-60 { 
        margin-left: 60px; 
    }
    .bg-light-gray { 
        background-color: #f9f9f9; 
    }
    .bg-white { 
        background-color: #fff; 
    }
    .bg-pale-blue { 
        background-color: var(--light-blue); 
    }
    .bg-white-90 { 
        background-color: #fff; 
        max-width: 90%; 
    }
    .bg-light-center { 
        background-color: #f9f9f9; 
        text-align: center; 
    }
    .bg-white-center { 
        background-color: #fff; 
        text-align: center; 
    }
    .list-unstyled { 
        list-style: none; 
        padding: 0; 
    }
    .icon-mr { 
        margin-right: 10px; 
    }
    .text-center-mb-40 { 
        text-align: center; 
        margin-bottom: 40px; 
    }
    .container-90 { 
        max-width: 90%; 
        margin: 0 auto; 
    }

    /* Navbar */

    nav { 
        background: #dcefff; 
        padding: 10px calc((100% - var(--container-width)) / 2); 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        box-shadow: 0 2px 10px var(--bg-black); 
        position: sticky; 
        top: 0; 
        z-index: 1000; 
    }
    nav .logo { 
        color: var(--dark-blue); 
        font-size: 22px; 
        font-weight: bold; 
        display: flex; 
        align-items: center; 
        margin-left: 0; 
    }
    nav .logo img { 
        height: 60px; 
        width: auto; 
    }
    nav .nav-content { 
        margin-right: 0; 
        display: flex; 
    }
    nav ul { 
        list-style: none; 
        display: flex; 
        align-items: center; 
        text-align: center; 
        justify-content: center; 
        margin: 0; 
        padding: 0; 
    }
    nav ul li { 
        margin-left: 30px; 
    }
    nav ul li a { 
        color: var(--dark-blue); 
        text-decoration: none; 
        font-size: 20px; 
        font-weight: bold; 
    }
    nav ul li a:hover { 
        text-decoration: underline; 
    }
    .menu-icon { 
        display: none; 
    }  

    /* Dropdowns */

    .dropdown { 
        position: relative; 
    }
    .dropdown-content, .dropdown-content-1, .dropdown-content-quick { 
        display: none; 
        position: absolute; 
        background-color: var(--bg-white); 
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15); 
        z-index: 100; 
        top: 100%; 
        left: 0; 
        border-radius: 5px; 
        padding: 10px 0; 
        text-align: left; 
    }
    .dropdown-content { 
        min-width: 150px; 
    }
    .dropdown-content-1 { 
        min-width: 400px; 
    }
    .dropdown-content-quick { 
        min-width: 300px; 
    }
    .dropdown:hover .dropdown-content, .dropdown:hover .dropdown-content-1, .dropdown:hover .dropdown-content-quick { 
        display: block; 
    }
    .dropdown-content a, .dropdown-content-1 a, .dropdown-content-quick a { 
        color: var(--highlight-blue) !important; 
        padding: 10px 20px; 
        display: block; 
        font-size: 16px; 
        font-weight: bold; 
        white-space: nowrap; 
    }
    .dropdown-content a:hover, .dropdown-content-1 a:hover, .dropdown-content-quick a:hover { 
        background-color: var(--bg-white); 
        text-decoration: underline; 
    }
    .nav-dropdown-logo { 
        height: 35px;
        width: auto; 
        display: block; 
    }

    /* =========================================
   Product Dropdown Custom Styles (Global)
   ========================================= */

.dropdown-content .product-nav-box {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 5px !important;
    margin: 10px 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.dropdown-content .product-nav-box:hover {
    transform: scale(1.6);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: #ffffff;
    z-index: 100;
    position: relative;
    border-color: var(--primary-blue);
    text-decoration: none !important;
}
.dropdown-content .product-nav-box img {
    height: 45px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
}

    /* Buttons */

    .contact-btn { 
        background-color: var(--dark-blue); 
        color: var(--bg-white) !important; 
        padding: 10px 25px; 
        border-radius: 50px; 
        transition: background-color 0.3s ease; 
    }
    .contact-btn:hover { 
        background-color: var(--primary-blue); 
        text-decoration: none; 
    }
    .whatsapp-btn { 
        background-color: #25D366; 
        color: #ffffff !important; 
        width: 50px; 
        height: 50px; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 26px !important; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
        transition: all 0.3s ease; 
        text-decoration: none !important; 
    }
    .whatsapp-btn:hover { 
        background-color: #128C7E; 
        transform: translateY(-3px); 
        box-shadow: 0 6px 12px rgba(0,0,0,0.3); 
        text-decoration: none !important; 
    }
    .mobile-wa-btn { 
        display: none; 
    }

    /* Home / Hero */

    .hero { 
        position: relative; 
        height: 100vh; 
        display: flex; 
        align-items: flex-start; 
        justify-content: center; 
        text-align: center; 
        overflow: hidden; 
        color: var(--bg-white); 
        padding: 15px; 
    }
    .slider-container { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        z-index: 1; 
    }
    .slide { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background-size: cover; 
        background-position: center; 
        opacity: 0; 
        transition: opacity 1s ease-in-out; 
    }
    .slide.active { 
        opacity: 1; 
    }
    .slide::before { 
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background: rgba(0, 0, 0, 0.6); 
    }
    .hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 60%; 
    }
    .hero h1 { 
        font-size: 30px; 
        color: var(--bg-white); 
        margin-bottom: 20px; 
    }
    .hero p { 
        margin: 20px auto; 
        max-width: 100%; 
        font-size: 18px; 
    }
    .btn-group a { 
        display: inline-block; 
        margin: 10px; 
        padding: 12px 25px; 
        background: var(--dark-blue); 
        color: var(--bg-white); 
        text-decoration: none; 
        border-radius: 4px; 
    }

    /* Service */

    .service-hero { 
        position: relative; 
        width: 100%; 
        height: 60vh; 
        min-height: 400px; 
        background-size: cover; 
        background-position: center; 
        display: flex; 
        align-items: flex-start; 
        justify-content: center; 
        text-align: center; 
        color: var(--bg-white); 
    }
    .service-hero::before { 
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
    }
    .service-hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 70%; 
        animation: fadeIn 1s ease-in-out; 
    }
    .service-hero-content h1 { 
        font-size: 30px; 
        margin-bottom: 0px; 
        color: var(--bg-white); 
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
    }
    .service-hero-content h2 { 
        font-size: 20px; 
        font-weight: normal; 
        color: var(--bg-white); 
        margin-top: 0; 
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5); 
    }
    .service-intro-text {
        font-size: 20px;
        font-weight: bold;
        color: var(--dark-blue);
    }
    .service-detail-header { 
        background-color: var(--bg-white); 
        padding: 60px calc((100% - var(--container-width)) / 2) 40px; 
        text-align: center; 
        border-bottom: 1px solid #eee; 
    }
    .service-detail-header h1 { 
        color: var(--dark-blue); 
        font-size: 36px; 
        margin-bottom: 10px; 
    }
    .service-detail-header h2 { 
        color: #555; 
        font-size: 20px; 
        font-weight: normal; 
        margin-bottom: 20px; 
    }
    .service-detail-header p { 
        max-width: 100%; 
        margin: 0 auto; 
        font-size: 18px; 
        color: #444; 
        line-height: 1.6; 
    }
    .service-detail-content { 
        padding: 60px calc((100% - var(--container-width)) / 2); 
        background-color: #f8f9fa;
    }
    .service-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
        gap: 30px; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .service-card { 
        background: var(--bg-white); 
        padding: 20px 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
        border-top: 4px solid var(--primary-blue); 
        display: grid; 
        grid-template-columns: auto 1fr; 
        column-gap: 20px; 
        align-items: center; 
    }
    .service-card:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    }
    .service-card .icon-wrapper { 
        font-size: 40px; 
        color: var(--highlight-blue); 
        margin-bottom: 0; 
        grid-column: 1; 
        grid-row: 1; 
    }
    .service-card h3 { 
        color: var(--dark-blue); 
        font-size: 25px; 
        margin-top: 0; 
        margin-bottom: 0; 
        grid-column: 2; 
        grid-row: 1; 
    }
    .service-card .description { 
        font-size: 20px; 
        color: #555; 
        margin-bottom: 20px; 
        font-style: italic; 
        grid-column: 1 / -1; 
        grid-row: 2; 
        margin-top: 15px; 
    }
    .service-card ul { 
        grid-column: 1 / -1; 
        grid-row: 3; 
    }
    .service-card ul li { 
        font-size: 18px; 
        margin-bottom: 8px; 
        color: #555; 
        list-style-type: disc; 
        margin-left: 20px; 
    }
    .service-cta-btn { 
        display: inline-block; 
        background-color: var(--primary-blue); 
        color: #fff; 
        padding: 12px 25px; 
        border-radius: 50px; 
        text-decoration: none; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .service-cta-btn:hover { 
        background-color: var(--dark-blue); 
        text-decoration: none; 
        color: #fff;
    }
    .qs-banner { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        align-items: center; 
        max-width: 95%; 
        margin: 0 auto; 
        gap: 40px; 
    }
    .qs-divider {
        width: 3px; 
        height: 150px; 
        background-color: var(--light-blue); 
    }
    .qs-content-left { 
        flex: 1; 
        min-width: 100px; 
        text-align: left; 
        font-size: 20px; 
        font-weight: bold; 
        line-height: 1.6; 
        color: var(--bg-white); 
    }
    .qs-content-left p { 
        margin: 5px 0; 
    }
    .qs-content-right { 
        flex: 1; 
        min-width: 300px; 
    }
    .glass-cta-box { 
        background: rgba(255, 255, 255, 0.1); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px); 
        border: 1px solid rgba(255, 255, 255, 0.2); 
        padding: 60px 80px; 
        border-radius: 4px; 
        display: inline-block; 
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2); 
    }
    .glass-cta-box .contact-btn { 
        font-weight: bold; 
        text-decoration: none; 
    }
    .glass-cta-box .contact-btn:hover { 
        text-decoration: underline !important; 
    }

    /* Outcome Section */

    .outcome-section { 
        background-color: var(--bg-light-gray); 
    }
    .outcome-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--dark-blue);
    }
    .outcome-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .outcome-card { 
        background: var(--bg-white); 
        padding: 20px; 
        border-radius: 8px; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.5); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        text-align: center; 
    }
    .outcome-icon { 
        color: var(--primary-blue); 
        font-size: 30px; 
        margin-bottom: 15px; 
    }

    /* Service CTA Section */

    .service-cta-section { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 60px 20px; 
    }
    .service-cta-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--bg-white); 
    }
    .service-cta-right { 
        text-align: center; 
    }
    .service-cta-btn-white { 
        background-color: var(--bg-white); 
        color: var(--dark-blue) !important; 
        font-size: 20px; 
        padding: 15px 30px; 
    }

    /* About */

    .about-overview { 
        text-align: center; 
        justify-content: center; 
        max-width: 95%; 
        margin: 0 auto; 
        font-size: 20px;
    }
    .about-text { 
        font-size: var(--fs-20); 
        line-height: 1.8; 
        color: #555; 
    }
    .mission-vision-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
        justify-content: center; 
        max-width: 80%; 
        margin: 0 auto; 
    }
    .mv-card { 
        flex: 1; 
        min-width: 300px; 
        background: #fff; 
        padding: 40px; 
        border-radius: 8px; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
        text-align: center; 
    }
    .mv-card.mission { 
        border-top: 4px solid var(--primary-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-card.vision { 
        border-top: 4px solid var(--highlight-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-title { 
        margin-top: 0; 
    }
    .mv-title.mission { 
        color: var(--dark-blue); 
    }
    .mv-title.vision { 
        color: var(--highlight-blue); 
    }
    .mv-desc { 
        font-size: var(--fs-18); 
        color: #444; 
        line-height: 1.6; 
    }
    .partners-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px; 
    }
    .partner-pill { 
        background: #fff; 
        padding: 10px 20px; 
        font-size: var(--fs-18); 
        border-radius: 50px; 
        font-weight: bold; 
        color: var(--dark-blue);
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .approach-desc { 
        font-size: 18px; 
        margin-bottom: 40px; 
        color: #555; 
    }
    .process-flow { 
        display: flex; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 30px; 
        margin-top: 30px; 
    }
    .process-step { 
        background: #fff; 
        padding: 20px 30px; 
        border-radius: 50px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        border: 1px solid #eee; 
    }
    .approach-circle { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px; 
        width: 250px; 
        height: 250px; 
        border-radius: 50%; 
        justify-content: center; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
    }
    .process-icon { 
        font-size: 40px; 
        color: var(--primary-blue); 
        margin-bottom: 10px;
    }
    .step-title { 
        font-weight: bold; 
        color: var(--dark-blue); 
        font-size: 18px; 
    }
    .step-title-lg { 
        font-size: var(--fs-20); 
    }
    .step-outcome { 
        color: var(--primary-blue); 
        font-weight: bold; 
        font-size: 18px; 
    }
    .step-outcome-md { 
        font-size: var(--fs-18); 
        font-weight: normal; 
        color: #666; 
    }
    .value-expertise-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 50px; 
    }
    .ve-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .ve-col-h1 { 
        margin-bottom: 20px; 
    }
    .value-list-item { 
        font-size: var(--fs-18); 
        margin-bottom: 15px; 
        display: flex; 
        align-items: start; 
    }
    .value-icon { 
        color: var(--highlight-blue); 
        margin-right: 10px; 
        margin-top: 5px; 
    }
    .expertise-desc { 
        font-size: var(--fs-18); 
        line-height: 1.8; 
        color: #555; 
    }
    .why-choose-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
        max-width: 100%; 
    }
    .ch-box-padding { 
        padding: 20px; 
    }
    .ch-text { 
        font-size: var(--fs-18); 
    }
    .team-carousel-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        position: relative; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .carousel-view {
        overflow: hidden; 
        width: 100%; 
        padding: 20px 0; 
    }
    .carousel-track { 
        display: flex; 
        gap: 30px; 
        transition: transform 0.5s ease-in-out; 
        justify-content: flex-start; 
    }
    .team-card-carousel { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        flex: 0 0 300px; 
        text-align: center; 
        border-top: 4px solid var(--primary-blue); 
        transition: transform 0.3s ease; 
    }
    .team-card-carousel:hover { 
        transform: translateY(-5px); 
    }
    .team-img-circle { 
        width: 200px; 
        height: 200px;
        background: #f0f4f8;
        border-radius: 50%; 
        margin: 15px auto 20px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 60px; 
        color: var(--dark-blue); 
        overflow: hidden; 
    }
    .team-img-circle img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
    }
    .team-bio-text { 
        font-size: 15px; 
        color: #555; 
        line-height: 1.6; 
        margin-top: 10px; 
    }
    .team-desig { 
        color: var(--primary-blue); 
        font-size: 18px; 
        margin: 10px 0px; 
    }   
    .nav-btn-carousel { 
        background: transparent; 
        border: none; 
        font-size: 2rem; 
        color: var(--primary-blue); 
        cursor: pointer; 
        padding: 0 15px; 
        z-index: 2; 
    }
    .nav-btn-carousel:hover { 
        color: var(--dark-blue); 
    }
    .dots-nav-container { 
        text-align: center; 
        margin-top: 10px; 
    }
    .dot-nav { 
        height: 12px; 
        width: 12px; 
        margin: 0 5px; 
        background-color: #ccc; 
        border-radius: 50%; 
        display: inline-block; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .dot-nav.active { 
        background-color: var(--primary-blue); 
    }

    /* Career */

    .why-work-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .career-highlight-box { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        font-size: 18px;
        text-align: center; 
        transition: transform 0.3s;
    }
    .career-highlight-box:hover { 
        transform: translateY(-5px); 
    }
    .career-highlight-box i { 
        font-size: 35px; 
        color: var(--primary-blue); 
        margin-bottom: 15px; 
    }
    .job-container { 
        max-width: 100%;
        margin: 0 auto; 
    }
    .job-category-title { 
        color: var(--dark-blue); 
        font-size: 24px; 
        margin-top: 50px; 
        margin-bottom: 25px; 
        border-bottom: 2px solid var(--light-blue); 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .job-block { 
        background: #fff; 
        border: 1px solid #e0e0e0; 
        padding: 25px; 
        margin-bottom: 20px; 
        border-radius: 6px; 
        transition: box-shadow 0.3s; 
    }
    .job-block:hover { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
        border-color: var(--light-blue); 
    }
    .job-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 10px; 
        flex-wrap: wrap; 
    }
    .job-title { 
        font-size: 20px; 
        color: var(--primary-blue); 
        margin: 0; 
    }
    .job-exp { 
        background: #f0f4f8; 
        padding: 5px 10px; 
        border-radius: 4px;
        font-size: 14px; 
        color: #555; 
        font-weight: bold; 
    }
    .job-desc { 
        font-size: 16px; 
        color: #333; 
        margin-bottom: 15px; 
        font-style: italic; 
    }
    .job-details { 
        margin-bottom: 20px; 
        color: #444; 
        line-height: 1.6; 
    }
    .apply-btn { 
        display: inline-block; 
        padding: 8px 25px; 
        background-color: var(--dark-blue); 
        color: white; 
        border-radius: 4px; 
        text-decoration: none; 
        font-size: 15px; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .apply-btn:hover { 
        background-color: var(--primary-blue); 
        color: white;
        text-decoration: none; 
    }
    .internship-section {
        text-align: center;
        align-items: center;
        background-color: var(--dark-blue);
    }
    .internship-section h2 {
        color: var(--bg-white);
    }
    .internship-text {
        font-size: 20px;
        max-width: 70%;
        margin: 0 auto;
        margin-bottom: 20px;
        color: var(--bg-white);
    }
    .internship-btn {
        background-color: var(--bg-white);
        color: var(--dark-blue) !important;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .who-apply-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
    }
    .who-apply-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .process-flow-vertical { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px; 
        margin-top: 10px; 
    }
    .process-step-vertical { 
        width: 100%; 
        padding: 15px 25px; 
    }

    /* Contact */

    .contact-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 20px; 
    }
   .contact-image { 
        display: none; /* Hide image on mobile */
    }
    .contact-wrapper .contact-container { 
        flex: 0 0 calc(80% - 20px); 
        max-width: 100%; 
        margin: 0 auto; 
        width: 100%; 
    }
    .contact-container { 
        max-width: 100%; 
        margin: 0 auto; 
        background: var(--bg-white); 
        padding: 40px; 
        border-radius: 10px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.8); 
    }
    .contact-form .form-group { 
        margin-bottom: 20px; 
    }
    .contact-form label { 
        display: block; 
        margin-bottom: 8px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }
    .contact-form input, .contact-form select, .contact-form textarea { 
        width: 100%; 
        padding: 12px; 
        border: 1px solid #ccc; 
        border-radius: 5px; 
        font-size: 16px; 
        font-family: inherit; 
    }
    .contact-form button { 
        width: 100%; 
        padding: 15px;
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        border: none; 
        border-radius: 50px; 
        font-size: 18px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .contact-form button:hover { 
        background-color: var(--primary-blue); 
    }
    .form-text { 
        font-size: 13px; 
        color: #666; 
        margin-top: 5px; 
        display: block; 
    }
    .contact-form-row { 
        display: flex; 
        gap: 20px; 
        flex-wrap: wrap; 
    }
    .contact-form-col { 
        flex: 1; 
        min-width: 200px; 
    }

    /* Modal */

    .modal { 
        display: none; 
        position: fixed; 
        z-index: 2000; 
        left: 0; 
        top: 0; 
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0,0,0,0.6); 
        justify-content: center; 
        align-items: center; 
    }
    .modal-content { 
        background-color: var(--bg-white); 
        margin: 5% auto; 
        padding: 30px; 
        border: 1px solid #888; 
        width: 90%; 
        max-width: 700px; 
        border-radius: 10px; 
        position: relative; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
        animation: fadeIn 0.3s; 
    }
    .close-btn { 
        color: #aaa; 
        float: right; 
        font-size: 28px; 
        font-weight: bold; 
        cursor: pointer; 
        position: absolute; 
        right: 20px; 
        top: 10px; 
    }
    .close-btn:hover, .close-btn:focus { 
        color: #000; 
        text-decoration: none; 
        cursor: pointer; 
    }
    .qs-form-row { 
        display: flex; 
        gap: 20px; 
        margin-bottom: 15px; 
    }
    .qs-form-group { 
        flex: 1; 
        display: flex; 
        flex-direction: column; 
    }
    .qs-form-group label { 
        margin-bottom: 5px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }

    /* Footer */

    footer { 
        background: var(--dark-blue); 
        color: var(--bg-white); 
    }
    footer p { 
        margin: 0px 0; 
    }
    footer a { 
        color: var(--bg-white); 
        text-decoration: none; 
    }
    .main-footer { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 20px calc((95% - var(--container-width)) / 2) 20px; 
        margin-top: 60px; 
    }
    .footer-container { 
        display: flex; 
        flex-wrap: wrap; 
        max-width: 100%; 
        margin: 0 auto; 
        gap: 20px; 
        margin-bottom: 5px;
        align-items: flex-start;
    }
    .footer-col-group {
        flex: 2;
        display: flex;
        flex-direction: column;
        min-width: 0;
    }
    .footer-col-row {
        display: flex;
        gap: 30px;
        width: 100%;
    }
    .footer-col-row .footer-col {
        flex: 1;
    }
    .footer-col { 
        flex: 1; 
        min-width: 0; 
        margin-bottom: 0; 
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .footer-col-sm { 
        /* flex: 0 0 var(--footer-col-sm-width); 
        min-width: var(--footer-col-sm-width);  */
        min-width: 0;
    }
    .footer-col h3 { 
        font-size: 20px; 
        color: var(--light-blue); 
        margin-bottom: 5px; 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .footer-col ul {
        list-style: disc;
        padding-left: 20px;
        margin: 0;
    }
    .footer-follow-container {
        grid-column: 3;
        grid-row: 2;
        margin-top: 115px;
        text-align: left;
    }
    .footer-wa-box {
        grid-column: 3;
        grid-row: 3;
        display: flex;
        margin: 0px auto;
        margin-top: 120px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .footer-col p, .footer-col a { 
        color: var(--bg-white); 
        font-size: 14px; 
        line-height: 1.8; 
        text-decoration: none; 
        display: block; 
        margin-bottom: 8px; 
    }
    .footer-col a:hover { 
        color: var(--bg-white); 
        text-decoration: underline; 
    }
    .footer-logo { 
        height: 130px; 
        width: auto; 
        margin-bottom: 15px;
        background: var(--bg-white);
        padding: 5px; 
        border-radius: 20px; 
    }
    .aassay-btn { 
        background-color: var(--bg-white); 
        color: #0a3450 !important; 
        padding: 10px 20px; 
        border-radius: 5px; 
        font-weight: bold; 
        display: inline-block; 
        margin-top: 10px; 
        text-align: center; 
        width: 80%; 
    }
    .aassay-btn:hover { 
        background-color: var(--light-blue); 
        text-decoration: none !important; 
    }
    .aassay-logo-img { 
        max-width: 100%; 
        height: auto; 
        display: block; 
    }
    .footer-map {
        width: 100%;
        margin-top: 0 !important;
    }
    .footer-bottom { 
        border-top: 1px solid var(--text-dark); 
        margin-top: 0; 
        padding-top: 10px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        flex-wrap: wrap; 
    }
    .footer-bottom p { 
        font-size: 15px;
        margin: 0; 
    }
    .footer-links { 
        display: flex; 
        gap: 20px; 
    }
    .footer-links a { 
        color: var(--bg-white); 
        text-decoration: none; 
        font-size: 15px; 
    }
    .social-icons { 
        margin-bottom: 0px; 
        display: flex; 
        align-items: center; 
    }
    .social-icons a {
        color: var(--bg-white); 
        font-size: 30px; 
        margin-right: 25px; 
        transition: color 0.3s, transform 0.3s; 
        display: inline-block; 
    }
    .social-icons a:hover { 
        transform: scale(1.2); 
    }
    .footer-whatsapp-btn { 
        display: inline-flex; 
        align-items: center; 
        background-color: #25D366; 
        color: #ffffff !important; 
        padding: var(--whatsapp-btn-padding); 
        border-radius: 5px; 
        font-size: 20px; 
        margin-top: 5px; 
        transition: background-color 0.3s ease; 
    }
    .footer-whatsapp-btn:hover { 
        background-color: #128C7E; 
        text-decoration: none; 
    }
    .footer-map {
        margin-bottom: 10px;
    }

    /* =========================================
       AASSAY Page Styles (Laptop)
       ========================================= */
    .aassay-hero {
        /* background: linear-gradient(135deg, var(--primary-blue), var(--highlight-blue)); */
        background: linear-gradient(135deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 50px 20px;
        text-align: center;
    }
    .aassay-hero-content {
        max-width: 65%;
        margin: 0 auto;
    }
    .aassay-hero-logo {
        height: 120px;
        margin-bottom: 15px;
        padding: 10px 10px;
        background-color: white;
        border-radius: 10px;
    }
    .aassay-hero-content h1 span {
        font-size: 28px;
        font-weight: normal;
        display: block;
        margin-top: 10px;
        color: var(--light-blue);
    }
    .aassay-hero-content p {
        font-size: 22px;
        max-width: 900px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
    .aassay-btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .aassay-btn-primary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-primary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-secondary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-section {
        padding: 80px 20px;
    }
    .aassay-desc {
        font-size: 22px;
        max-width: 1000px;
        margin: 0 auto 50px;
        color: #000000;
    }
    .aassay-use-cases-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-card {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        font-weight: bold;
        color: var(--dark-blue);
        text-align: center;
        flex: 1 1 300px;
        border-left: 5px solid  rgb(176, 77, 137);
        font-size: 20px;
    }
    .aassay-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .benefit-item {
        background: #fff;
        padding: 20px 25px;
        border-radius: 5px;
        font-size: 20px;
        color: #444;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .benefit-item i {
        color:  rgb(176, 77, 137);
        font-size: 24px;
    }
    .aassay-feature-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-feature-row.reverse {
        flex-direction: row-reverse;
    }
    .aassay-feature-text {
        flex: 1;
    }
    .aassay-feature-text h3 {
        font-size: 30px;
        color: var(--dark-blue);
        margin-bottom: 25px;
    }
    .aassay-feature-text p {
        font-size: 20px;
        color: #000000;
        margin-bottom: 35px;
        line-height: 1.6;
    }
    .aassay-btn-outline {
        display: inline-block;
        padding: 15px 30px;
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
        text-align: center;
    }
    .aassay-btn-outline:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-feature-img {
        flex: 1;
        text-align: center;
    }
    .aassay-big-icon {
        font-size: 200px;
        color:  rgb(176, 77, 137);
        /* opacity: 0.5; */
    }
    .aassay-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .aassay-info-box {
        background: #f9f9f9;
        padding: 50px;
        border-radius: 10px;
        border-top: 5px solid rgb(176, 77, 137);
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .aassay-info-box h3 {
        color: var(--dark-blue);
        margin-bottom: 20px;
        font-size: 28px;
    }
    .aassay-info-box i {
        margin-right: 10px;
        color: rgb(176, 77, 137);
    }
    .aassay-info-box p {
        font-size: 20px;
        line-height: 1.6;
    }
    .aassay-cta-section {
       background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        text-align: center;
        padding: 100px 20px;
    }
    .aassay-cta-section h1 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 30px;
    }
    .aassay-cta-section p {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .aassay-btn-primary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-primary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-secondary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
}

/* =========================================
   3. Small Laptop Screen Size (min-width: 769px) and (max-width: 992px)
   ========================================= */

@media (min-width: 769px) and (max-width: 992px) {

    /* Copy of Desktop Styles for editing */

    h3 { 
        color: var(--light-blue); 
    }
    h4 {
         color: var(--dark-blue); 
         font-size: 20px;
        }
    ul { 
        margin-bottom: 20px; 
        line-height: 1.8; 
    }
    .section { 
        padding: 50px calc((100% - var(--container-width)) / 2); 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .section h2 { 
        color: var(--dark-blue); 
        margin-bottom: 20px; 
        font-size: 25px;
        text-align: center;
    }
    .section ul { 
        margin-left: 20px; 
    }
    .text-center { 
        text-align: center; 
    }
    .justify-center { 
        justify-content: center; 
    }
    .w-100 { 
        max-width: 100%; 
    }
    .mt-20 { 
        margin-top: 20px; 
    }
    .mb-40 { 
        margin-bottom: 40px; 
    }
    .mb-50 { 
        margin-bottom: 50px; 
    }
    .ml-60 { 
        /* margin-left: 60px;  */
    }
    .bg-light-gray { 
        background-color: #f9f9f9; 
    }
    .bg-white { 
        background-color: #fff; 
    }
    .bg-pale-blue { 
        background-color: var(--light-blue); 
    }
    .bg-white-90 { 
        background-color: #fff; 
        max-width: 90%; 
    }
    .bg-light-center { 
        background-color: #f9f9f9; 
        text-align: center; 
    }
    .bg-white-center { 
        background-color: #fff; 
        text-align: center; 
    }
    .list-unstyled { 
        list-style: none; 
        padding: 0; 
    }
    .hero-subtitle { 
        font-size: 20px;
        font-weight: bold;
        color: var(--dark-blue);
        text-align: left;
        margin-top: -20px;
        margin-bottom: 20px;
    }
    .section-title-mb { 
        margin-bottom: 30px; 
    }
    .icon-mr { 
        margin-right: 10px; 
    }
    .text-center-mb-40 { 
        text-align: center; 
        margin-bottom: 40px; 
    }
    .container-90 { 
        max-width: 90%; 
        margin: 0 auto; 
    }

    /* Navbar */

    nav { 
        background: #dcefff; 
        padding: 10px calc((95% - var(--container-width)) / 2); 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        box-shadow: 0 2px 10px var(--bg-black); 
        position: sticky; 
        top: 0; 
        z-index: 1000;
    }
    nav .logo { 
        color: var(--dark-blue); 
        font-size: 22px; 
        font-weight: bold; 
        display: flex; 
        align-items: center; 
        margin-left: 0; 
    }
    nav .logo img { 
        height: 60px; 
        width: auto; 
    }
    nav .nav-content {
        margin-right: 0;
        display: flex; 
    }
    nav ul { 
        list-style: none; 
        display: flex; 
        align-items: center; 
        text-align: center; 
        justify-content: center; 
        margin: 0;
        padding: 0; 
    }
    nav ul li { 
        margin-left: 20px; 
    }
    nav ul li a { 
        color: var(--dark-blue); 
        text-decoration: none; 
        font-size: 16px; 
        font-weight: bold; 
    }
    nav ul li a:hover { 
        text-decoration: underline; 
    }
    .menu-icon { 
        display: none; 
    }

    /* Dropdowns */

    .dropdown { 
        position: relative; 
    }
    .dropdown-content, .dropdown-content-1, .dropdown-content-quick { 
        display: none; 
        position: absolute; 
        background-color: var(--bg-white); 
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15); 
        z-index: 100; 
        top: 100%; 
        left: 0; 
        border-radius: 5px; 
        padding: 10px 0; 
        text-align: left; 
    }
    .dropdown-content { 
        min-width: 150px; 
    }
    .dropdown-content-1 { 
        min-width: 400px; 
    }
    .dropdown-content-quick { 
        min-width: 300px; 
    }
    .dropdown:hover .dropdown-content, .dropdown:hover .dropdown-content-1, .dropdown:hover .dropdown-content-quick { 
        display: block; 
    }
    .dropdown-content a, .dropdown-content-1 a, .dropdown-content-quick a { 
        color: var(--highlight-blue) !important; 
        padding: 10px 20px; 
        display: block; 
        font-size: 16px; 
        font-weight: bold; 
        white-space: nowrap; 
    }
    .dropdown-content a:hover, .dropdown-content-1 a:hover, .dropdown-content-quick a:hover { 
        background-color: var(--bg-white); 
        text-decoration: underline; 
    }
    .nav-dropdown-logo { 
        height: 35px; 
        width: auto; 
        display: block; 
    }

    /* =========================================
   Product Dropdown Custom Styles (Global)
   ========================================= */

    .dropdown-content .product-nav-box {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 5px !important;
        margin: 10px 15px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .dropdown-content .product-nav-box:hover {
        transform: scale(1.6);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        background: #ffffff;
        z-index: 100;
        position: relative;
        border-color: var(--primary-blue);
        text-decoration: none !important;
    }

    .dropdown-content .product-nav-box img {
        height: 45px !important;
        width: auto !important;
        max-width: 100%;
        object-fit: contain;
    }


    /* Buttons */

    .contact-btn { 
        background-color: var(--dark-blue); 
        color: var(--bg-white) !important; 
        padding: 10px 10px; 
        border-radius: 50px; 
        transition: background-color 0.3s ease; 
    }
    .contact-btn:hover { 
        background-color: var(--primary-blue); 
        text-decoration: none; 
    }
    .whatsapp-btn { 
        background-color: #25D366; 
        color: #ffffff !important; 
        width: 50px; 
        height: 50px; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 26px !important; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
        transition: all 0.3s ease; 
        text-decoration: none !important; 
    }
    .whatsapp-btn:hover { 
        background-color: #128C7E; 
        transform: translateY(-3px); 
        box-shadow: 0 6px 12px rgba(0,0,0,0.3); 
        text-decoration: none !important; 
    }
    .mobile-wa-btn { 
        display: none; 
    }

    /* Home / Hero */

    .hero { 
        position: relative; 
        height: 100vh; 
        display: flex; 
        align-items: flex-start; 
        justify-content: center; 
        text-align: center; 
        overflow: hidden; 
        color: var(--bg-white); 
        padding: 15px; 
    }
    .slider-container {
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        z-index: 1; 
    }
    .slide { 
        position: absolute; 
        top: 0;
        left: 0; 
        width: 100%; 
        height: 100%; 
        background-size: cover; 
        background-position: center; 
        opacity: 0; 
        transition: opacity 1s ease-in-out; 
    }
    .slide.active { 
        opacity: 1; 
    }
    .slide::before { 
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background: rgba(0, 0, 0, 0.6); 
    }
    .hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 60%;
    }
    .hero h1 { 
        font-size: 30px; 
        color: var(--bg-white); 
        margin-bottom: 20px; 
    }
    .hero p { 
        margin: 20px auto; 
        max-width: 100%; 
        font-size: 18px; 
    }
    .btn-group a { 
        display: inline-block; 
        margin: 10px; 
        padding: 12px 25px;
        background: var(--dark-blue); 
        color: var(--bg-white); 
        text-decoration: none; 
        border-radius: 4px; 
    }

    /* Service */

    .service-hero { 
        position: relative; 
        width: 100%; 
        height: 60vh;
        min-height: 400px; 
        background-size: cover; 
        background-position: center; 
        display: flex; 
        align-items: flex-start; 
        justify-content: center; 
        text-align: center; 
        color: var(--bg-white); 
    }
    .service-hero::before { 
        content: ''; 
        position: absolute; 
        top: 0; left: 0; 
        width: 100%; 
        height: 100%;
    }
    .service-hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 90%;
        animation: fadeIn 1s ease-in-out; 
    }
    .service-hero-content h1 { 
        font-size: 30px; 
        margin-bottom: 0px; 
        color: var(--bg-white); 
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
    }
    .service-hero-content h2 { 
        font-size: 25px; 
        font-weight: normal; 
        color: var(--bg-white); 
        margin-top: 0; 
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5); 
    }
   .service-intro-text {
        font-size: 20px;
        font-weight: bold;
        color: var(--dark-blue);
    }
    .service-detail-header { 
        background-color: var(--bg-white); 
        padding: 60px calc((100% - var(--container-width)) / 2) 40px; 
        text-align: center; 
        border-bottom: 1px solid #eee; 
    }
    .service-detail-header h1 { 
        color: var(--dark-blue); 
        font-size: 36px; 
        margin-bottom: 10px; 
    }
    .service-detail-header h2 { 
        color: #555; 
        font-size: 20px; 
        font-weight: normal; 
        margin-bottom: 20px; 
    }
    .service-detail-header p { 
        max-width: 100%; 
        margin: 0 auto; 
        font-size: 18px; 
        color: #444; 
        line-height: 1.6; 
    }
    .service-detail-content { 
        padding: 60px calc((100% - var(--container-width)) / 2); 
        background-color: #f8f9fa; 
    }
    .service-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
        gap: 30px; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .service-card { 
        background: var(--bg-white); 
        padding: 20px 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
        border-top: 4px solid var(--primary-blue); 
        display: grid; 
        grid-template-columns: auto 1fr; 
        column-gap: 20px; align-items: center; 
    }
    .service-card:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    }
    .service-card .icon-wrapper { 
        font-size: 40px; 
        color: var(--highlight-blue); 
        margin-bottom: 0; 
        grid-column: 1; 
        grid-row: 1; 
    }
    .service-card h3 { 
        color: var(--dark-blue); 
        font-size: 25px;
        margin-top: 0; 
        margin-bottom: 0; 
        grid-column: 2; 
        grid-row: 1; 
    }
    .service-card .description { 
        font-size: 20px; 
        color: #555; 
        margin-bottom: 20px; 
        font-style: italic; 
        grid-column: 1 / -1; 
        grid-row: 2; 
        margin-top: 15px; 
    }
    .service-card ul { 
        grid-column: 1 / -1; 
        grid-row: 3; 
    }
    .service-card ul li { 
        font-size: 18px; 
        margin-bottom: 8px; 
        color: #555; 
        list-style-type: disc; 
        margin-left: 20px; 
    }
    .service-cta-btn { 
        display: inline-block; 
        background-color: var(--primary-blue); 
        color: #fff; 
        padding: 12px 25px; 
        border-radius: 50px; 
        text-decoration: none; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .service-cta-btn:hover { 
        background-color: var(--dark-blue); 
        text-decoration: none; 
        color: #fff; 
    }
    .qs-banner { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        align-items: center; 
        max-width: 95%; 
        margin: 0 auto; 
        gap: 40px; 
    }
    .qs-divider { 
        width: 3px; 
        height: 150px; 
        background-color: var(--light-blue); 
    }
    .qs-content-left { 
        flex: 1; 
        min-width: 100px; 
        text-align: left; 
        font-size: 20px; 
        font-weight: bold; 
        line-height: 1.6; 
        color: var(--bg-white); 
    }
    .qs-content-left p { 
        margin: 5px 0; 
    }
    .qs-content-right { 
        flex: 1; 
        min-width: 300px; 
    }
    .glass-cta-box { 
        background: rgba(255, 255, 255, 0.1); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px); 
        border: 1px solid rgba(255, 255, 255, 0.2); 
        padding: 60px 25px; 
        border-radius: 4px; 
        display: inline-block; 
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2); 
    }
    .glass-cta-box .contact-btn { 
        font-weight: bold; 
        text-decoration: none; 
    }
    .glass-cta-box .contact-btn:hover { 
        text-decoration: underline !important; 
    }

    /* Outcome Section */
    .outcome-section { 
        background-color: var(--bg-light-gray); 
    }
    .outcome-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--dark-blue);
    }
    .outcome-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .outcome-card { 
        background: var(--bg-white); 
        padding: 20px; 
        border-radius: 8px; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.5); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        text-align: center; 
    }
    .outcome-icon { 
        color: var(--primary-blue); 
        font-size: 30px; 
        margin-bottom: 15px; 
    }

    /* Service CTA Section */

    .service-cta-section { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 60px 20px; 
    }
    .service-cta-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--bg-white); 
    }
    .service-cta-right { 
        text-align: center; 
    }
    .service-cta-btn-white { 
        background-color: var(--bg-white); 
        color: var(--dark-blue) !important; 
        font-size: 20px; 
        padding: 15px 30px; 
    }

    /* About */

    .about-overview { 
        text-align: center; 
        justify-content: center; 
        max-width: 95%;
        margin: 0 auto; 
        font-size: 20px;
    }
    .about-text { 
        font-size: var(--fs-20); 
        line-height: 1.8; 
        color: #555; 
    }
    .mission-vision-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
        justify-content: center; 
        max-width: 80%; 
        margin: 0 auto; 
    }
    .mv-card { 
        flex: 1; 
        min-width: 300px; 
        background: #fff; 
        padding: 40px; 
        border-radius: 8px; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
        text-align: center; 
    }
    .mv-card.mission { 
        border-top: 4px solid var(--primary-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-card.vision { 
        border-top: 4px solid var(--highlight-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-title { 
        margin-top: 0; 
    }
    .mv-title.mission {
        color: var(--dark-blue); 
    }
    .mv-title.vision { 
        color: var(--highlight-blue); 
    }
    .mv-desc { 
        font-size: var(--fs-18); 
        color: #444; 
        line-height: 1.6; 
    }
    .partners-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px; 
    }
    .partner-pill { 
        background: #fff; 
        padding: 10px 20px; 
        font-size: var(--fs-18); 
        border-radius: 50px; 
        font-weight: bold; 
        color: var(--dark-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .approach-desc { 
        font-size: 18px; 
        margin-bottom: 40px; 
        color: #555; 
    }
    .process-flow { 
        display: flex; 
        justify-content: center; 
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px; 
    }
    .process-step { 
        background: #fff; 
        padding: 20px 30px; 
        border-radius: 50px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        border: 1px solid #eee; 
    }
    .approach-circle { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px; 
        width: 250px; 
        height: 250px; 
        border-radius: 50%; 
        justify-content: center; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
    }
    .process-icon { 
        font-size: 40px; 
        color: var(--primary-blue); 
        margin-bottom: 10px; 
    }
    .step-title { 
        font-weight: bold; 
        color: var(--dark-blue); 
        font-size: 18px; 
    }
    .step-title-lg { 
        font-size: var(--fs-20); 
    }
    .step-outcome {
        color: var(--primary-blue); 
        font-weight: bold; 
        font-size: 18px; 
    }
    .step-outcome-md { 
        font-size: var(--fs-18); 
        font-weight: normal; 
        color: #666; 
    }
    .value-expertise-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 50px; 
    }
    .ve-col { 
        flex: 1; 
        min-width: 300px; 
    }    
    .ve-col-h1 { 
        margin-bottom: 20px; 
    }
    .value-list-item { 
        font-size: var(--fs-18); 
        margin-bottom: 15px; 
        display: flex; 
        align-items: start;
    }
    .value-icon { 
        color: var(--highlight-blue); 
        margin-right: 10px; 
        margin-top: 5px; 
    }
    .expertise-desc { 
        font-size: var(--fs-18); 
        line-height: 1.8; 
        color: #555; 
    }
    .why-choose-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
        max-width: 100%; 
    }
    .ch-box-padding { 
        padding: 20px; 
    }
    .ch-text { 
        font-size: var(--fs-18); 
    }
    .team-carousel-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        position: relative; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .carousel-view { 
        overflow: hidden; 
        width: 100%; 
        padding: 20px 0; 
    }
    .carousel-track { 
        display: flex; 
        gap: 30px; 
        transition: transform 0.5s ease-in-out; 
        justify-content: flex-start; 
    }
    .team-card-carousel { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        flex: 0 0 300px; 
        text-align: center; 
        border-top: 4px solid var(--primary-blue); 
        transition: transform 0.3s ease; 
    }
    .team-card-carousel:hover { 
        transform: translateY(-5px); 
    }
    .team-img-circle {
        width: 200px; 
        height: 200px; 
        background: #f0f4f8; 
        border-radius: 50%; 
        margin: 15px auto 20px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 60px; 
        color: var(--dark-blue); 
        overflow: hidden; 
    }
    .team-img-circle img {
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
    }
    .team-bio-text { 
        font-size: 15px; 
        color: #555; 
        line-height: 1.6; 
        margin-top: 10px; 
    }
    .team-desig { 
        color: var(--primary-blue); 
        font-size: 18px; 
        margin: 10px 0px; 
    }
    .nav-btn-carousel { 
        background: transparent; 
        border: none; 
        font-size: 2rem; 
        color: var(--primary-blue); 
        cursor: pointer; 
        padding: 0 15px; 
        z-index: 2; 
    }
    .nav-btn-carousel:hover { 
        color: var(--dark-blue); 
    }
    .dots-nav-container {
        text-align: center; 
        margin-top: 10px; 
    }
    .dot-nav {
        height: 12px; 
        width: 12px; 
        margin: 0 5px; 
        background-color: #ccc; 
        border-radius: 50%; 
        display: inline-block; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .dot-nav.active { 
        background-color: var(--primary-blue); 
    }

    /* Career */

    .why-work-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .career-highlight-box { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        font-size: 18px;
        text-align: center; 
        transition: transform 0.3s; 
    }
    .career-highlight-box:hover { 
        transform: translateY(-5px); 
    }
    .career-highlight-box i { 
        font-size: 35px; 
        color: var(--primary-blue); 
        margin-bottom: 15px; 
    }
    .job-container { 
        max-width: 100%; 
        margin: 0 auto; 
    }

    .job-category-title { 
        color: var(--dark-blue); 
        font-size: 24px; 
        margin-top: 50px; 
        margin-bottom: 25px; 
        border-bottom: 2px solid var(--light-blue); 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .job-block { 
        background: #fff; 
        border: 1px solid #e0e0e0; 
        padding: 25px; 
        margin-bottom: 20px; 
        border-radius: 6px; 
        transition: box-shadow 0.3s; 
    }
    .job-block:hover { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
        border-color: var(--light-blue); 
    }
    .job-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 10px; 
        flex-wrap: wrap; 
    }
    .job-title { 
        font-size: 20px; 
        color: var(--primary-blue);
        margin: 0; 
    }
    .job-exp { 
        background: #f0f4f8; 
        padding: 5px 10px; 
        border-radius: 4px; 
        font-size: 14px; 
        color: #555; 
        font-weight: bold; 
    }
    .job-desc { 
        font-size: 16px; 
        color: #333; 
        margin-bottom: 15px; 
        font-style: italic; 
    }
    .job-details { 
        margin-bottom: 20px; 
        color: #444; 
        line-height: 1.6; 
    }
    .apply-btn { 
        display: inline-block; 
        padding: 8px 25px; 
        background-color: var(--dark-blue); 
        color: white; 
        border-radius: 4px; 
        text-decoration: none; 
        font-size: 15px; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .apply-btn:hover { 
        background-color: var(--primary-blue); 
        color: white; 
        text-decoration: none; 
    }
    .internship-section {
        text-align: center;
        align-items: center;
        background-color: var(--dark-blue);
    }
    .internship-section h2 {
        color: var(--bg-white);
    }
    .internship-text {
        font-size: 20px;
        margin-bottom: 20px;
        color: var(--bg-white);
    }
    .internship-btn {
        background-color: var(--bg-white);
        color: var(--dark-blue) !important;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .who-apply-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
    }
    .who-apply-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .process-flow-vertical { 
        flex-direction: column; 
        align-items: flex-start;
        gap: 15px; 
        margin-top: 10px; 
    }
    .process-step-vertical { 
        width: 100%; 
        padding: 15px 25px; 
    }

    /* Contact */

    .contact-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 20px; 
    }
    .contact-image { 
        display: none; /* Hide image on mobile */
    }
    .contact-wrapper .contact-container { 
        flex: 0 0 calc(100% - 20px); 
        max-width: 90%; 
        margin: 0 auto; 
        width: 100%; 
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    }
    .contact-container { 
        max-width: 100%; 
        margin: 0 auto; 
        background: var(--bg-white); 
        padding: 40px; 
        border-radius: 10px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.8); 
    }
    .contact-form .form-group { 
        margin-bottom: 20px; 
    }
    .contact-form label { 
        display: block; 
        margin-bottom: 8px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }
    .contact-form input, .contact-form select, .contact-form textarea { 
        width: 100%; 
        padding: 12px; 
        border: 1px solid #ccc; 
        border-radius: 5px; 
        font-size: 16px; 
        font-family: inherit; 
    }
    .contact-form button { 
        width: 100%; 
        padding: 15px; 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        border: none; 
        border-radius: 50px; 
        font-size: 18px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .contact-form button:hover { 
        background-color: var(--primary-blue); 
    }
    .form-text { 
        font-size: 13px; 
        color: #666; 
        margin-top: 5px; 
        display: block; 
    }
    .contact-form-row { 
        display: flex; 
        gap: 20px; 
        flex-wrap: wrap; 
    }
    .contact-form-col { 
        flex: 1; 
        min-width: 200px; 
    }

    /* Modal */

    .modal { 
        display: none; 
        position: fixed; 
        z-index: 2000; 
        left: 0; 
        top: 0; 
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0,0,0,0.6); 
        justify-content: center; 
        align-items: center; 
    }
    .modal-content { 
        background-color: var(--bg-white); 
        margin: 5% auto; 
        padding: 30px; 
        border: 1px solid #888; 
        width: 90%; 
        max-width: 700px; 
        border-radius: 10px; 
        position: relative; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
        animation: fadeIn 0.3s; 
    }
    .close-btn { 
        color: #aaa; 
        float: right; 
        font-size: 28px; 
        font-weight: bold; 
        cursor: pointer; 
        position: absolute; 
        right: 20px; 
        top: 10px; 
    }
    .close-btn:hover, .close-btn:focus { 
        color: #000; 
        text-decoration: none; 
        cursor: pointer; 
    }
    .qs-form-row { 
        display: flex; 
        gap: 20px; 
        margin-bottom: 15px; 
    }
    .qs-form-group { 
        flex: 1; 
        display: flex; 
        flex-direction: column; 
    }
    .qs-form-group label { 
        margin-bottom: 5px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }

    /* Footer */

    footer { 
        background: var(--dark-blue); 
        color: var(--bg-white); 
    }
    footer p { 
        margin: 0px 0; 
    }
    footer a { 
        color: var(--bg-white); 
        text-decoration: none; 
    }
    .main-footer { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 20px calc((95% - var(--container-width)) / 2) 20px; 
        margin-top: 60px; 
    }
    .footer-container { 
        display: grid; 
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        max-width: 100%; 
        margin: 0 auto; 
        margin-bottom: 10px;
    }    
    .footer-col-group, .footer-col-row, .footer-container > .footer-col:first-child {
        display: contents;
    }

    /* Grid Placement */
    .footer-logo-text-wrapper { grid-column: 1; grid-row: 1; }
    .footer-col-product { grid-column: 2; grid-row: 1; }
    .footer-col-services { grid-column: 3; grid-row: 1; }

    .footer-logo-text-wrapper, .footer-col-product, .footer-col-services {
        min-width: 0;
    }
    .footer-col-career { grid-column: 1; grid-row: 2 / 4; }
    .footer-col-contact { grid-column: 2; grid-row: 2 / 4; }
    
    .footer-map {
        grid-column: 1 / -1;
        grid-row: 4;
        margin-top: 20px !important;
    }

    .footer-col { 
        margin-bottom: 0; 
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
        min-margin: 0;
    }
    .footer-col-sm { 
        /* flex: 0 0 var(--footer-col-sm-width); 
        min-width: var(--footer-col-sm-width);  */
        min-margin: 0;
    } 
    .footer-col h3 { 
        font-size: 20px; 
        color: var(--light-blue); 
        margin-bottom: 5px; 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .footer-col ul {
        list-style: disc;
        padding-left: 20px;
        margin: 0;
    }
    .footer-group { 
        display: flex; 
        flex-direction: column; 
        flex: 2; 
        min-width: 320px; 
    }
    .footer-group-top { 
        display: flex; 
        gap: 20px; 
    }
    .footer-col p, .footer-col a { 
        color: var(--bg-white); 
        font-size: 14px; 
        line-height: 1.8; 
        text-decoration: none; 
        display: block; 
        margin-bottom: 8px; 
    }
    .footer-col a:hover { 
        color: var(--bg-white); 
        text-decoration: underline; 
    }
    .footer-logo { 
        height: 130px;
        width: auto; 
        margin-bottom: 15px; 
        background: var(--bg-white); 
        padding: 5px; 
        border-radius: 20px; 
    }
    .aassay-btn { 
        background-color: var(--bg-white); 
        color: #0a3450 !important; 
        padding: 10px 20px; 
        border-radius: 5px; 
        font-weight: bold; 
        display: inline-block; 
        margin-top: 10px; 
        text-align: center; 
        width: 80%; 
    }
    .aassay-btn:hover { 
        background-color: var(--light-blue); 
        text-decoration: none !important; 
    }
    .aassay-logo-img { 
        max-width: 100%; 
        height: auto; 
        display: block; 
    }
    .footer-bottom {
        border-top: 1px solid var(--text-dark); 
        margin-top: 0; 
        padding-top: 10px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        flex-wrap: wrap; 
    }
    .footer-bottom p { 
        font-size: 15px; 
        margin: 0; 
    }
    .footer-links { 
        display: flex; 
        gap: 20px; 
    }
    .footer-links a { 
        color: var(--bg-white); 
        text-decoration: none; 
        font-size: 15px; 
    }
    .social-icons { 
        margin-bottom: 0px; 
        display: flex; 
        align-items: center; 
    }
    .social-icons a { 
        color: var(--bg-white); 
        font-size: 30px; 
        margin-right: 25px; 
        transition: color 0.3s, transform 0.3s; 
        display: inline-block; 
    }
    .social-icons a:hover { 
        transform: scale(1.2); 
    }
    .footer-whatsapp-btn { 
        display: inline-flex; 
        align-items: center; 
        background-color: #25D366; 
        color: #ffffff !important; 
        padding: var(--whatsapp-btn-padding); 
        border-radius: 5px; 
        font-size: 17px; 
        margin-top: 5px; 
        text-align: center;
        transition: background-color 0.3s ease; 
    }
    .footer-whatsapp-btn:hover { 
        background-color: #128C7E; 
        text-decoration: none; 
    }

    /* =========================================
       AASSAY Page Styles (Small Laptop/Tablet)
       ========================================= */
     .aassay-hero {
        /* background: linear-gradient(135deg, var(--primary-blue), var(--highlight-blue)); */
        background: linear-gradient(135deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 50px 20px;
        text-align: center;
    }
    .aassay-hero-content {
        max-width: 80%;
        margin: 0 auto;
    }
    .aassay-hero-logo {
        height: 120px;
        margin-bottom: 15px;
        padding: 10px 10px;
        background-color: white;
        border-radius: 10px;
    }
    .aassay-hero-content h1 span {
        font-size: 28px;
        font-weight: normal;
        display: block;
        margin-top: 10px;
        color: var(--light-blue);
    }
    .aassay-hero-content p {
        font-size: 22px;
        max-width: 900px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
    .aassay-btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .aassay-btn-primary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-primary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-secondary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-section {
        padding: 80px 20px;
    }
    .aassay-desc {
        font-size: 22px;
        max-width: 1000px;
        margin: 0 auto 50px;
        color: #000000;
    }
    .aassay-use-cases-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-card {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        font-weight: bold;
        color: var(--dark-blue);
        text-align: center;
        flex: 1 1 300px;
        border-left: 5px solid  rgb(176, 77, 137);
        font-size: 20px;
    }
    .aassay-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .benefit-item {
        background: #fff;
        padding: 20px 25px;
        border-radius: 5px;
        font-size: 20px;
        color: #444;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .benefit-item i {
        color:  rgb(176, 77, 137);
        font-size: 24px;
    }
    .aassay-feature-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-feature-row.reverse {
        flex-direction: row-reverse;
    }
    .aassay-feature-text {
        flex: 1;
    }
    .aassay-feature-text h3 {
        font-size: 30px;
        color: var(--dark-blue);
        margin-bottom: 25px;
    }
    .aassay-feature-text p {
        font-size: 20px;
        color: #000000;
        margin-bottom: 35px;
        line-height: 1.6;
    }
    .aassay-btn-outline {
        display: inline-block;
        padding: 15px 30px;
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
        text-align: center;
    }
    .aassay-btn-outline:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-feature-img {
        flex: 1;
        text-align: center;
    }
    .aassay-big-icon {
        font-size: 200px;
        color:  rgb(176, 77, 137);
        /* opacity: 0.5; */
    }
    .aassay-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .aassay-info-box {
        background: #f9f9f9;
        padding: 50px;
        border-radius: 10px;
        border-top: 5px solid rgb(176, 77, 137);
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .aassay-info-box h3 {
        color: var(--dark-blue);
        margin-bottom: 20px;
        font-size: 28px;
    }
    .aassay-info-box i {
        margin-right: 10px;
        color: rgb(176, 77, 137);
    }
    .aassay-info-box p {
        font-size: 20px;
        line-height: 1.6;
    }
    .aassay-cta-section {
       background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        text-align: center;
        padding: 100px 20px;
    }
    .aassay-cta-section h1 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 30px;
    }
    .aassay-cta-section p {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .aassay-btn-primary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-primary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-secondary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
}

/* =========================================
   4. Tablet Screen Size (min-width: 577px) and (max-width: 768px)
   ========================================= */

@media (min-width: 577px) and (max-width: 768px) {

    /* Adjustments for Tablet */

    .ml-60 { 
        margin-left: 0; 
    }

    /* Copy of Desktop Styles for editing */

    h3 { 
        color: var(--dark-blue); 
    }
    h4 {
         color: var(--dark-blue); 
         font-size: 20px;
        }
    ul { 
        margin-bottom: 20px; 
        line-height: 1.8; 
    }
    .section { 
        padding: 20px calc((100% - var(--container-width)) / 2); 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .section h2 { 
        color: var(--dark-blue); 
        margin-bottom: 20px; 
        font-size: 25px;
        text-align: center;
    }
    .section ul { 
        margin-left: 20px; 
    }
    .text-center { 
        text-align: center; 
    }
    .justify-center { 
        justify-content: center; 
    }
    .w-100 { 
        max-width: 100%; 
    }
    .mt-20 { 
        margin-top: 20px; 
    }
    .mb-40 { 
        margin-bottom: 40px; 
    }
    .mb-50 { 
        margin-bottom: 50px; 
    }
    .bg-light-gray { 
        background-color: #f9f9f9; 
    }
    .bg-white { 
        background-color: #fff; 
    }
    .bg-pale-blue { 
        background-color: var(--light-blue); 
    }
    .bg-white-90 { 
        background-color: #fff; 
        max-width: 90%; 
    }
    .bg-light-center { 
        background-color: #f9f9f9; 
        text-align: center; 
    }
    .bg-white-center { 
        background-color: #fff; 
        text-align: center; 
    }
    .list-unstyled { 
        list-style: none; 
        padding: 0; 
    }
    .hero-subtitle { 
        font-size: var(--fs-20); 
        color: var(--dark-blue); 
        text-align: left;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .section-title-mb { 
        margin-bottom: 30px; 
    }
    .icon-mr { 
        margin-right: 10px; 
    }
    .text-center-mb-40 { 
        text-align: center; 
        margin-bottom: 40px; 
    }
    .container-90 { 
        max-width: 90%; 
        margin: 0 auto; 
    }

    /* Navbar (Mobile/Tablet View) */

    nav { 
        padding: 10px 20px; 
        flex-wrap: wrap; 
        background: #dcefff; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        box-shadow: 0 2px 10px var(--bg-black); 
        position: sticky; 
        top: 0; 
        z-index: 1000; 
    }
    nav .logo { 
        margin-left: 0; 
        color: var(--dark-blue); 
        font-size: 22px; 
        font-weight: bold; 
        display: flex; 
        align-items: center; 
    }
    nav .logo img { 
        height: 50px; 
        width: auto; 
    }
    .menu-icon { 
        display: block; 
        font-size: 28px; 
        cursor: pointer; 
        color: var(--dark-blue); 
    }
    .nav-content { 
        display: none; 
        flex-direction: column; 
        width: 100%; 
        text-align: left; 
        margin-top: 20px; 
        margin-right: 0; 
        background-color: var(--bg-white); 
        padding: 10px; 
        border-radius: 5px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    }
    .nav-content.active { 
        display: flex; 
    }
    nav ul { 
        list-style: none; 
        display: flex; 
        align-items: center; 
        text-align: center; 
        justify-content: center; 
        margin: 0; 
        padding: 0; 
    }
    nav ul li { 
        margin: 10px 0; 
        margin-left: 0; 
        width: 100%; 
    }
    nav ul li a { 
        color: var(--dark-blue); 
        text-decoration: none; 
        font-size: 20px; 
        font-weight: bold; 
    }
    nav ul li a:hover { 
        text-decoration: underline; 
    }

    /* Dropdowns (Mobile/Tablet View) */
    
    .dropdown { 
        position: relative; 
    }
    .dropdown-content, .dropdown-content-1, .dropdown-content-quick { 
        position: static; 
        box-shadow: none; 
        min-width: 100%; 
        padding-left: 20px; 
        display: none; 
        background-color: var(--bg-white); 
        border-radius: 5px; 
        padding: 10px 0; 
        text-align: left; 
    }
    .dropdown:hover .dropdown-content, .dropdown:hover .dropdown-content-1, .dropdown:hover .dropdown-content-quick { 
        display: block; 
        position: static; 
    }
    .dropdown-content a, .dropdown-content-1 a, .dropdown-content-quick a { 
        color: var(--highlight-blue) !important; 
        padding: 10px 20px; 
        display: block; 
        font-size: 16px; 
        font-weight: bold; 
        white-space: nowrap; 
    }
    .dropdown-content a:hover, .dropdown-content-1 a:hover, .dropdown-content-quick a:hover { 
        background-color: var(--bg-white); 
        text-decoration: underline; 
    }
    .nav-dropdown-logo { 
        height: 35px; 
        width: auto; 
        display: block; 
    }

    /* =========================================
   Product Dropdown Custom Styles (Global)
   ========================================= */

    .dropdown-content .product-nav-box {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 15px !important;
        margin: 10px 15px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .dropdown-content .product-nav-box:hover {
        transform: scale(1.15);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        background: #ffffff;
        z-index: 100;
        position: relative;
        border-color: var(--primary-blue);
        text-decoration: none !important;
    }

    .dropdown-content .product-nav-box img {
        height: 45px !important;
        width: auto !important;
        max-width: 100%;
        object-fit: contain;
    }

    /* Buttons */

    .contact-btn { 
        background-color: var(--dark-blue); 
        color: var(--bg-white) !important; 
        padding: 10px 25px; 
        border-radius: 50px; 
        transition: background-color 0.3s ease; 
    }
    .contact-btn:hover { 
        background-color: var(--primary-blue); 
        text-decoration: none; 
    }
    .whatsapp-btn { 
        background-color: #25D366; 
        color: #ffffff !important; 
        width: 50px; 
        height: 50px; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 26px !important; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
        transition: all 0.3s ease; 
        text-decoration: none !important; 
    }
    .whatsapp-btn:hover { 
        background-color: #128C7E; 
        transform: translateY(-3px); 
        box-shadow: 0 6px 12px rgba(0,0,0,0.3); 
        text-decoration: none !important; 
    }
    .mobile-wa-btn { 
        display: flex; 
        margin-left: auto; 
        margin-right: 15px; 
    }
    .wa-nav-item { 
        display: none; 
    }

    /* Home / Hero */

    .hero { 
        position: relative; 
        height: 100vh; 
        display: flex; 
        align-items: flex-start; 
        justify-content: center; 
        text-align: center; 
        overflow: hidden; 
        color: var(--bg-white); 
        padding: 15px; 
    }
    .slider-container { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        z-index: 1; 
    }
    .slide { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background-size: cover; 
        background-position: center; 
        opacity: 0; 
        transition: opacity 1s ease-in-out; 
    }
    .slide.active { 
        opacity: 1; 
    }
    .slide::before { 
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background: rgba(0, 0, 0, 0.6); 
    }
    .hero-content {
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 60%;
    }
    .hero h1 { 
        font-size: 30px; 
        color: var(--bg-white); 
        margin-bottom: 20px; 
    }
    .hero p { 
        margin: 20px auto; 
        max-width: 100%; 
        font-size: 18px; 
    }
    .btn-group a { 
        display: inline-block; 
        margin: 10px; 
        padding: 12px 25px; 
        background: var(--dark-blue);
        color: var(--bg-white); 
        text-decoration: none; 
        border-radius: 4px; 
    }

    /* Service */

    .service-hero { 
        position: relative; 
        width: 100%; 
        height: 50vh; 
        min-height: 400px; 
        background-size: cover; 
        background-position: center; 
        display: flex; 
        align-items: flex-start; 
        justify-content: center; 
        text-align: center; 
        color: var(--bg-white); 
    }
    .service-hero::before { 
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
    }
    .service-hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 95%; 
        animation: fadeIn 1s ease-in-out; 
    }
    .service-hero-content h1 { 
        font-size: 25px;
        margin-bottom: 0px; 
        color: var(--bg-white); 
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
    }
    .service-hero-content h2 { 
        font-size: 20px; 
        font-weight: normal; 
        color: var(--bg-white); 
        margin-top: 0; 
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5); 
    }
    .service-intro-text {
        font-size: 20px;
        font-weight: bold;
        color: var(--dark-blue);
    }
    .service-detail-header { 
        background-color: var(--bg-white); 
        padding: 60px calc((100% - var(--container-width)) / 2) 40px; 
        text-align: center; 
        border-bottom: 1px solid #eee; 
    }
    .service-detail-header h1 { 
        color: var(--dark-blue); 
        font-size: 36px; 
        margin-bottom: 10px; 
    }
    .service-detail-header h2 { 
        color: #555; 
        font-size: 20px;
        font-weight: normal; 
        margin-bottom: 20px; 
    }
    .service-detail-header p { 
        max-width: 100%; 
        margin: 0 auto; 
        font-size: 18px; 
        color: #444; 
        line-height: 1.6; 
    }
    .service-detail-content { 
        padding: 60px calc((100% - var(--container-width)) / 2); 
        background-color: #f8f9fa; 
    }
    .service-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
        gap: 30px; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .service-card { 
        background: var(--bg-white); 
        padding: 20px 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
        border-top: 4px solid var(--primary-blue); display: grid; 
        grid-template-columns: auto 1fr; 
        column-gap: 20px; 
        align-items: center; 
    }
    .service-card:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }
    .service-card .icon-wrapper { 
        font-size: 40px; 
        color: var(--highlight-blue); 
        margin-bottom: 0; 
        grid-column: 1; 
        grid-row: 1; 
    }
    .service-card h3 { 
        color: var(--dark-blue); 
        font-size: 25px; 
        margin-top: 0; 
        margin-bottom: 0; 
        grid-column: 2; 
        grid-row: 1; 
    }
    .service-card .description { 
        font-size: 20px; 
        color: #555; 
        margin-bottom: 20px; 
        font-style: italic; 
        grid-column: 1 / -1;
        grid-row: 2; 
        margin-top: 15px; 
    }
    .service-card ul { 
        grid-column: 1 / -1; 
        grid-row: 3; 
    }
    .service-card ul li { 
        font-size: 18px; 
        margin-bottom: 8px; 
        color: #555; 
        list-style-type: disc; 
        margin-left: 20px; 
    }
    .service-cta-btn { 
        display: inline-block; 
        background-color: var(--primary-blue); 
        color: #fff; 
        padding: 12px 25px; 
        border-radius: 50px; 
        text-decoration: none; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .service-cta-btn:hover { 
        background-color: var(--dark-blue); 
        text-decoration: none; 
        color: #fff; 
    }
    .qs-banner { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        align-items: center; 
        max-width: 60%; 
        margin: 0 auto; 
        gap: 25px; 
        flex-direction: column; 
    }
    .qs-divider { 
        width: 150px; 
        height: 3px; 
        background-color: var(--light-blue); 
    }
    .qs-content-left { 
        flex: 1; 
        min-width: 100px; 
        text-align: center; 
        font-size: 20px; 
        font-weight: bold; 
        line-height: 1.6; 
        color: var(--bg-white); 
    }
    .qs-content-left p { 
        margin: 5px 0; 
    }
    .qs-content-right { 
        flex: 1; 
        min-width: 300px; 
        text-align: center; 
    }
    .glass-cta-box { 
        background: rgba(255, 255, 255, 0.1); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px); 
        border: 1px solid rgba(255, 255, 255, 0.2); 
        padding: 60px 45px; 
        border-radius: 4px; 
        display: inline-block; 
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2); 
    }
    .glass-cta-box .contact-btn { 
        font-weight: bold; 
        text-decoration: none;
        font-size: 17px;
        padding: 15px 20px;
    }
    .glass-cta-box .contact-btn:hover { 
        text-decoration: underline !important; 
    }

    /* Outcome Section */

    .outcome-section { 
        background-color: var(--bg-light-gray); 
    }
    .outcome-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--dark-blue);
    }
    .outcome-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .outcome-card { 
        background: var(--bg-white); 
        padding: 20px; 
        border-radius: 8px; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.5); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        text-align: center; 
    }
    .outcome-icon { 
        color: var(--primary-blue); 
        font-size: 30px; 
        margin-bottom: 15px; 
    }

    /* Service CTA Section */
    .service-cta-section { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 60px 20px; 
    }
    .service-cta-header { 
        text-align: center; 
        margin-bottom: 40px; 
        color: var(--bg-white); 
    }
    .service-cta-right { 
        text-align: center; 
    }
    .service-cta-btn-white { 
        background-color: var(--bg-white); 
        color: var(--dark-blue) !important; 
        font-size: 20px; 
        padding: 15px 30px; 
    }

    /* About */

    .about-overview { 
        text-align: center; 
        justify-content: center; 
        max-width: 95%; 
        margin: 0 auto; 
        font-size: 20px;
    }
    .about-text { 
        font-size: var(--fs-20); 
        line-height: 1.8; 
        color: #555; 
    }
    .mission-vision-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
        justify-content: center; 
        max-width: 80%; 
        margin: 0 auto; 
    }
    .mv-card { 
        flex: 1; 
        min-width: 300px; 
        background: #fff; 
        padding: 40px; 
        border-radius: 8px; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
        text-align: center; 
    }
    .mv-card.mission { 
        border-top: 4px solid var(--primary-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .mv-card.vision { 
        border-top: 4px solid var(--highlight-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-title { 
        margin-top: 0; 
    }
    .mv-title.mission { 
        color: var(--dark-blue); 
    }
    .mv-title.vision { 
        color: var(--highlight-blue); 
    }
    .mv-desc { 
        font-size: var(--fs-18); 
        color: #444; 
        line-height: 1.6; 
    }
    .partners-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px; 
    }
    .partner-pill { 
        background: #fff; 
        padding: 10px 20px; 
        font-size: var(--fs-18); 
        border-radius: 50px; 
        font-weight: bold; 
        color: var(--dark-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .approach-desc { 
        font-size: 18px; 
        margin-bottom: 40px; 
        color: #555; 
    }
    .process-flow { 
        display: flex; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 30px; 
        margin-top: 30px; 
        flex-direction: column; 
        align-items: center;
    }
    .process-step { 
        background: #fff; 
        padding: 20px 30px; 
        border-radius: 50px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        border: 1px solid #eee; 
        width: 100%; 
        justify-content: center; 
    }
    .approach-circle { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px; 
        width: 250px; 
        height: 250px;
        border-radius: 50%; 
        justify-content: center; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
    }
    .process-icon { 
        font-size: 40px; 
        color: var(--primary-blue); 
        margin-bottom: 10px; 
    }
    .step-title { 
        font-weight: bold; 
        color: var(--dark-blue); 
        font-size: 18px; 
    }
    .step-title-lg { 
        font-size: var(--fs-20); 
    }
    .step-outcome { 
        color: var(--primary-blue); 
        font-weight: bold; 
        font-size: 18px; 
    }
    .step-outcome-md { 
        font-size: var(--fs-18); 
        font-weight: normal; 
        color: #666; 
    }
    .value-expertise-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 50px; 
    }
    .ve-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .ve-col-h1 { 
        margin-bottom: 20px; 
    }
    .value-list-item { 
        font-size: var(--fs-18);
        margin-bottom: 15px; 
        display: flex; 
        align-items: start; 
    }
    .value-icon { 
        color: var(--highlight-blue); 
        margin-right: 10px; 
        margin-top: 5px; 
    }
    .expertise-desc { 
        font-size: var(--fs-18); 
        line-height: 1.8; 
        color: #555; 
    }
    .why-choose-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
        max-width: 100%; 
    }
    .ch-box-padding { 
        padding: 20px; 
    }
    .ch-text { 
        font-size: var(--fs-18); 
    }
    .team-carousel-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        position: relative; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .carousel-view { 
        overflow: hidden; 
        width: 100%; 
        padding: 20px 0; 
    }
    .carousel-track { 
        display: flex; 
        gap: 30px; 
        transition: transform 0.5s ease-in-out; 
        justify-content: flex-start;
    }
    .team-card-carousel { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        flex: 0 0 280px; 
        text-align: center; 
        border-top: 4px solid var(--primary-blue); 
        transition: transform 0.3s ease; 
    }
    .team-card-carousel:hover { 
        transform: translateY(-5px); 
    }

    /* =========================================
       AASSAY Page Styles (Tablet)
       ========================================= */
     .aassay-hero {
        /* background: linear-gradient(135deg, var(--primary-blue), var(--highlight-blue)); */
        background: linear-gradient(135deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 50px 20px;
        text-align: center;
    }
    .aassay-hero-content {
        max-width: 90%;
        margin: 0 auto;
    }
    .aassay-hero-logo {
        height: 120px;
        margin-bottom: 15px;
        padding: 10px 10px;
        background-color: white;
        border-radius: 10px;
    }
    .aassay-hero-content h1 span {
        font-size: 28px;
        font-weight: normal;
        display: block;
        margin-top: 10px;
        color: var(--light-blue);
    }
    .aassay-hero-content p {
        font-size: 22px;
        max-width: 900px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
    .aassay-btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .aassay-btn-primary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-primary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-secondary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-section {
        padding: 80px 20px;
    }
    .aassay-desc {
        font-size: 22px;
        max-width: 1000px;
        margin: 0 auto 50px;
        color: #000000;
    }
    .aassay-use-cases-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-card {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        font-weight: bold;
        color: var(--dark-blue);
        text-align: center;
        flex: 1 1 300px;
        border-left: 5px solid  rgb(176, 77, 137);
        font-size: 20px;
    }
    .aassay-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .benefit-item {
        background: #fff;
        padding: 20px 25px;
        border-radius: 5px;
        font-size: 20px;
        color: #444;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .benefit-item i {
        color:  rgb(176, 77, 137);
        font-size: 24px;
    }
    .aassay-feature-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    .aassay-feature-row.reverse {
        flex-direction: column;
    }
    .aassay-feature-text, .aassay-feature-img {
        display: contents;
    }

    .aassay-feature-text h3 {
        font-size: 30px;
        color: var(--dark-blue);
        margin-bottom: 25px;
        order: 1;
    }
    .aassay-feature-text p {
        font-size: 20px;
        color: #000000;
        margin-bottom: 20px;
        line-height: 1.6;
        order: 2;
    }
    .aassay-btn-outline {
        display: inline-block;
        padding: 20px 50px;
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
        text-align: center;
        order: 4;
    }
    .aassay-btn-outline:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-big-icon {
        font-size: 150px;
        color:  rgb(176, 77, 137);
        order: 3;
        margin-bottom: 25px;
    }
    .aassay-grid-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .aassay-info-box {
        background: #f9f9f9;
        padding: 50px;
        border-radius: 10px;
        border-top: 5px solid rgb(176, 77, 137);
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .aassay-info-box h3 {
        color: var(--dark-blue);
        margin-bottom: 20px;
        font-size: 28px;
    }
    .aassay-info-box i {
        margin-right: 10px;
        color: rgb(176, 77, 137);
    }
    .aassay-info-box p {
        font-size: 20px;
        line-height: 1.6;
    }
    .aassay-cta-section {
       background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        text-align: center;
        padding: 100px 20px;
    }
    .aassay-cta-section h1 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 30px;
    }
    .aassay-cta-section p {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .aassay-btn-primary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-primary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-secondary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .team-img-circle { 
        width: 200px; 
        height: 200px; 
        background: #f0f4f8; 
        border-radius: 50%; 
        margin: 15px auto 20px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 60px; 
        color: var(--dark-blue); 
        overflow: hidden; 
    }
    .team-img-circle img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
    }
    .team-bio-text { 
        font-size: 15px; 
        color: #555; 
        line-height: 1.6; 
        margin-top: 10px; 
    }
    .team-desig { 
        color: var(--primary-blue); 
        font-size: 18px; 
        margin: 10px 0px; 
    }
    .nav-btn-carousel { 
        background: transparent; 
        border: none; 
        font-size: 2rem; 
        color: var(--primary-blue); 
        cursor: pointer;
        padding: 0 15px; 
        z-index: 2; 
    }
    .nav-btn-carousel:hover { 
        color: var(--dark-blue); 
    }
    .dots-nav-container { 
        text-align: center; 
        margin-top: 10px; 
    }
    .dot-nav { 
        height: 12px; 
        width: 12px; 
        margin: 0 5px; 
        background-color: #ccc; 
        border-radius: 50%; 
        display: inline-block; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .dot-nav.active { 
        background-color: var(--primary-blue); 
    }

    /* Career */

    .why-work-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .career-highlight-box { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        font-size: 18px;
        text-align: center; 
        transition: transform 0.3s; 
    }
    .career-highlight-box:hover { 
        transform: translateY(-5px); 
    }
    .career-highlight-box i { 
        font-size: 35px; 
        color: var(--primary-blue); 
        margin-bottom: 15px; 
    }
    .job-container { 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .job-category-title { 
        color: var(--dark-blue); 
        font-size: 24px; 
        margin-top: 50px; 
        margin-bottom: 25px; 
        border-bottom: 2px solid var(--light-blue); 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .job-block { 
        background: #fff; 
        border: 1px solid #e0e0e0; 
        padding: 25px; 
        margin-bottom: 20px; 
        border-radius: 6px; 
        transition: box-shadow 0.3s; 
    }
    .job-block:hover { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
        border-color: var(--light-blue); 
    }
    .job-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 10px; 
        flex-wrap: wrap; 
    }
    .job-title { 
        font-size: 20px; 
        color: var(--primary-blue); 
        margin: 0; 
    }
    .job-exp { 
        background: #f0f4f8; 
        padding: 5px 10px; 
        border-radius: 4px; 
        font-size: 14px; 
        color: #555; 
        font-weight: bold; 
    }
    .job-desc { 
        font-size: 16px; 
        color: #333; 
        margin-bottom: 15px; 
        font-style: italic; 
    }
    .job-details { 
        margin-bottom: 20px; 
        color: #444; 
        line-height: 1.6; 
    }
    .apply-btn { 
        display: inline-block; 
        padding: 8px 25px; 
        background-color: var(--dark-blue); 
        color: white; 
        border-radius: 4px; 
        text-decoration: none; 
        font-size: 15px; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .apply-btn:hover { 
        background-color: var(--primary-blue); 
        color: white; 
        text-decoration: none; 
    }
    .internship-section {
        text-align: center;
        align-items: center;
        background-color: var(--dark-blue);
    }
    .internship-section h2 {
        color: var(--bg-white);
    }
    .internship-text {
        margin-bottom: 20px;
        font-size: 20px;
        color: var(--bg-white);
    }
    .internship-btn {
        background-color: var(--bg-white);
        color: var(--dark-blue) !important;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .who-apply-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
    }
    .who-apply-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .process-flow-vertical { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px; 
        margin-top: 10px; 
    }
    .process-step-vertical { 
        width: 100%; 
        padding: 15px 25px; 
    }

    /* Contact */

    /* Mobile View: Remove section padding for full width */
    .section.contact-section-mobile {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-wrapper { 
        display: block;
        width: 100%;
        margin: 0;
    }
    .contact-image { 
        display: none; /* Hide image on mobile */
    }
    .contact-wrapper .contact-container { 
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        width: 100%;
        box-shadow: 0 0 20px rgba(0,0,0,0.8);  
    }
    .contact-container { 
        max-width: 100%; 
        width: 100%;
        margin: 0; 
        background: var(--bg-white); 
        padding: 40px 20px; 
        border-radius: 0; 
        box-shadow: none; 
    }
    .contact-form .form-group { 
        margin-bottom: 20px; 
    }
    .contact-form label { 
        display: block; 
        margin-bottom: 8px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }
    .contact-form input, .contact-form select, .contact-form textarea { 
        width: 100%; 
        padding: 12px; 
        border: 1px solid #ccc; 
        border-radius: 5px; 
        font-size: 16px;
        font-family: inherit; 
    }
    .contact-form button { 
        width: 100%; 
        padding: 15px; 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        border: none; 
        border-radius: 50px; 
        font-size: 18px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .contact-form button:hover { 
        background-color: var(--primary-blue); 
    }
    .form-text { 
        font-size: 13px; 
        color: #666; 
        margin-top: 5px; 
        display: block; 
    }
    .contact-form-row { 
        display: flex; 
        gap: 20px; 
        flex-wrap: wrap; 
    }
    .contact-form-col { 
        flex: 1; 
        min-width: 200px; 
    }

    /* Modal */

    .modal { 
        display: none; 
        position: fixed; 
        z-index: 2000; 
        left: 0; 
        top: 0; 
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0,0,0,0.6); 
        justify-content: center; 
        align-items: center; 
    }
    .modal-content { 
        background-color: var(--bg-white); 
        margin: 5% auto; 
        padding: 30px; 
        border: 1px solid #888; 
        width: 90%; 
        max-width: 700px; 
        border-radius: 10px; 
        position: relative; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
        animation: fadeIn 0.3s; 
    }
    .close-btn { 
        color: #aaa; 
        float: right; 
        font-size: 28px; 
        font-weight: bold; 
        cursor: pointer; 
        position: absolute; 
        right: 20px; 
        top: 10px; 
    }
    .close-btn:hover, .close-btn:focus { 
        color: #000; 
        text-decoration: none; 
        cursor: pointer; 
    }
    .qs-form-row { 
        display: flex; 
        gap: 20px; 
        margin-bottom: 15px; 
    }
    .qs-form-group { 
        flex: 1; 
        display: flex; 
        flex-direction: column; 
    }
    .qs-form-group label { 
        margin-bottom: 5px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }

    /* Footer (Mobile View) */

    footer { 
        background: var(--dark-blue); 
        color: var(--bg-white); 
    }
    footer p { 
        margin: 0px 0; 
    }
    footer a { 
        color: var(--bg-white); 
        text-decoration: none; 
    }
    .main-footer { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 20px calc((95% - var(--container-width)) / 2) 20px; 
        margin-top: 60px; 
    }
    .footer-container { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 20px; 
        max-width: 100%; 
        margin: 0 auto; 
        margin-bottom: 10px;
        text-align: left;
    }
     /* Flatten structure */
    .footer-container > .footer-col:first-child,
    .footer-col-group,
    .footer-col-row {
        display: contents;
    }
    .footer-col-career a {
        margin-bottom: 0;
    }
      /* Grid Items Placement */
    
    /* Row 1: Logo & Services */
    .footer-logo-text-wrapper { 
        grid-column: 1; 
        grid-row: 1; 
    }
    .footer-col-services { 
        grid-column: 2; 
        grid-row: 1; 
    }

    /* Row 2: Career & Product */
    .footer-col-career { 
        grid-column: 1; 
        grid-row: 2; 
    }
    .footer-col-product { 
        grid-column: 2; 
        grid-row: 2; 
    }

    /* Row 3: Contact & Follow */
    .footer-col-contact { 
        grid-column: 1; 
        grid-row: 3 / 5; /* Spans 2 rows */
    }
    .footer-follow-container { 
        grid-column: 2; 
        grid-row: 3; 
        margin-top: 0;
        text-align: left;
    }

    /* Row 4: WhatsApp (under Follow) */
    .footer-wa-box { 
        grid-column: 2; 
        grid-row: 4; 
        margin: 0;
        align-items: flex-start;
    }

    /* Row 5: Map */
    .footer-map {
        grid-column: 1 / -1;
        grid-row: 5;
        margin-top: 20px !important;
        width: 100% !important;
    }
    .footer-col { 
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
        width: 100%; 
        margin-bottom: 0;
        min-width: 0;
    }
    .footer-col h3 { 
        font-size: 20px; 
        color: var(--light-blue); 
        margin-bottom: 5px; 
        display: inline-block; 
        padding-bottom: 5px; 
        text-align: left;
    }
    .footer-col ul {
        list-style: disc;
        padding-left: 20px;
        margin: 0;
    }
    .footer-col p, .footer-col a { 
        color: var(--bg-white); 
        font-size: 14px; 
        line-height: 1.8; 
        text-decoration: none; 
        display: block; 
        margin-bottom: 8px; 
        text-align: left;
    }
    .footer-col a:hover { 
        color: var(--bg-white); 
        text-decoration: underline; 
    }
    .footer-logo { 
        height: 100px; 
        width: auto; 
        margin-bottom: 15px;
        background: var(--bg-white);
        padding: 5px; 
        border-radius: 20px; 
    }
    .aassay-btn { 
        background-color: var(--bg-white); 
        color: #0a3450 !important; 
        padding: 10px 20px; 
        border-radius: 5px; 
        font-weight: bold; 
        display: inline-block; 
        margin-top: 10px; 
        text-align: center; 
        width: 80%; 
    }
    .aassay-btn:hover { 
        background-color: var(--light-blue); 
        text-decoration: none !important; 
    }
    .aassay-logo-img { 
        max-width: 100%; 
        height: auto; 
        display: block; 
    }
    .footer-bottom { 
        border-top: 1px solid var(--text-dark); 
        margin-top: 0; 
        padding-top: 10px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        flex-wrap: wrap; 
    }
    .footer-bottom p { 
        font-size: 15px;
        margin: 0; 
    }
    .footer-links { 
        display: flex; 
        gap: 20px; 
    }
    .footer-links a { 
        color: var(--bg-white); 
        text-decoration: none; 
        font-size: 15px; 
    }
    .social-icons { 
        margin-bottom: 0px; 
        display: flex; 
        align-items: center; 
    }
    .social-icons a {
        color: var(--bg-white); 
        font-size: 30px; 
        margin-right: 25px; 
        transition: color 0.3s, transform 0.3s; 
        display: inline-block; 
    }
    .social-icons a:hover { 
        transform: scale(1.2); 
    }
    .footer-whatsapp-btn { 
        display: inline-flex; 
        align-items: center; 
        background-color: #25D366; 
        color: #ffffff !important; 
        padding: var(--whatsapp-btn-padding); 
        border-radius: 5px; 
        font-size: 20px; 
        margin-top: 5px; 
        transition: background-color 0.3s ease; 
    }
    .footer-whatsapp-btn:hover { 
        background-color: #128C7E; 
        text-decoration: none; 
    }
    iframe { 
        width: 100% !important; 
        max-width: 100%; 
    }
}

/* =========================================
   5. Mobile Screen Size (max-width: 576px)
   ========================================= */

@media (max-width: 576px) {

    /* Adjustments for Mobile */

    .ml-60 { 
        margin-left: 0; 
    }
    .container-90 { 
        max-width: 95%; 
    }
    .qs-form-row { 
        flex-direction: column; 
        gap: 10px; 
    }

    /* Copy of Desktop Styles for editing */

    h3 {
         color: var(--light-blue); 
        }
    h4 {
         color: var(--dark-blue); 
         font-size: 20px;
        }
    ul { 
        margin-bottom: 20px; 
        line-height: 1.8; 
    }
    .section { 
        padding: 20px calc((100% - var(--container-width)) / 2); 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .section h2 { 
        color: var(--dark-blue); 
        margin-bottom: 20px; 
        font-size: 25px;
        text-align: center;
    }
    .section ul { 
        margin-left: 20px; 
    }
    .text-center { 
        text-align: center; 
    }
    .justify-center { 
        justify-content: center; 
    }
    .w-100 { 
        max-width: 100%; 
    }
    .mt-20 { 
        margin-top: 20px; 
    }
    .mb-40 { 
        margin-bottom: 40px; 
    }
    .mb-50 { 
        margin-bottom: 50px; 
    }
    .bg-light-gray { 
        background-color: #f9f9f9; 
    }
    .bg-white { 
        background-color: #fff; 
    }
    .bg-pale-blue {
        background-color: var(--light-blue); 
    }
    .bg-white-90 { 
        background-color: #fff; 
        max-width: 90%; 
    }
    .bg-light-center { 
        background-color: #f9f9f9; 
        text-align: center; 
    }
    .bg-white-center { 
        background-color: #fff; 
        text-align: center; 
    }
    .list-unstyled { 
        list-style: none; 
        padding: 0; 
    }
    .hero-subtitle { 
        margin-top: 20px; 
        font-size: var(--fs-20); 
        color: var(--light-blue); 
    }
    .section-title-mb { 
        margin-bottom: 30px;
    }
    .icon-mr { 
        margin-right: 10px; 
    }
    .text-center-mb-40 {
        text-align: center; 
        margin-bottom: 40px;
    }

    /* Navbar (Mobile View) */

    nav { 
        padding: 15px 20px; 
        flex-wrap: wrap; 
        background: #dcefff; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        box-shadow: 0 2px 10px var(--bg-black); 
        position: sticky; 
        top: 0; 
        z-index: 1000; 
    }
    nav .logo { 
        margin-left: 0; 
        color: var(--dark-blue); 
        font-size: 22px; 
        font-weight: bold; 
        display: flex; 
        align-items: center; 
    }
    nav .logo img { 
        height: 50px;
        width: auto; 
    }
    .menu-icon { 
        display: block; 
        font-size: 28px; 
        cursor: pointer; 
        color: var(--dark-blue); 
    }
    .nav-content { 
        display: none; 
        flex-direction: column; 
        width: 100%; 
        text-align: left; 
        margin-top: 20px; 
        margin-right: 0; 
        background-color: var(--bg-white); 
        padding: 10px; 
        border-radius: 5px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    }
    .nav-content.active { 
        display: flex; 
    }
    nav ul { 
        list-style: none; 
        display: flex; 
        align-items: center; 
        text-align: center; 
        justify-content: center; 
        margin: 0; 
        padding: 0; 
    }
    nav ul li { 
        margin: 10px 0; 
        margin-left: 0; 
        width: 100%; 
    }
    nav ul li a { 
        color: var(--dark-blue); 
        text-decoration: none; 
        font-size: 20px; 
        font-weight: bold; 
    }
    nav ul li a:hover { 
        text-decoration: underline; 
    }

    /* Dropdowns (Mobile View) */

    .dropdown { 
        position: relative; 
    }
    .dropdown-content, .dropdown-content-1, .dropdown-content-quick { 
        position: static; 
        box-shadow: none; 
        min-width: 100%; 
        padding-left: 20px; 
        display: none; 
        background-color: var(--bg-white); 
        border-radius: 5px; 
        padding: 10px 0; 
        text-align: left; 
    }
    .dropdown:hover .dropdown-content, .dropdown:hover .dropdown-content-1, .dropdown:hover .dropdown-content-quick { 
        display: block;
        position: static; 
    }
    .dropdown-content a, .dropdown-content-1 a, .dropdown-content-quick a {
        color: var(--highlight-blue) !important; 
        padding: 10px 20px; 
        display: block; 
        font-size: 16px; 
        font-weight: bold; 
        white-space: nowrap; 
    }
    .dropdown-content a:hover, .dropdown-content-1 a:hover, .dropdown-content-quick a:hover { 
        background-color: var(--bg-white); 
        text-decoration: underline; 
    }
    .nav-dropdown-logo { 
        height: 35px; 
        width: auto; 
        display: block; 
    }

    /* =========================================
   Product Dropdown Custom Styles (Global)
   ========================================= */

    .dropdown-content .product-nav-box {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 15px !important;
        margin: 10px 15px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .dropdown-content .product-nav-box:hover {
        transform: scale(1.15);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        background: #ffffff;
        z-index: 100;
        position: relative;
        border-color: var(--primary-blue);
        text-decoration: none !important;
    }

    .dropdown-content .product-nav-box img {
        height: 45px !important;
        width: auto !important;
        max-width: 100%;
        object-fit: contain;
    }

    /* Buttons */

    .contact-btn { 
        background-color: var(--dark-blue); 
        color: var(--bg-white) !important; 
        padding: 10px 25px; 
        border-radius: 50px; 
        transition: background-color 0.3s ease; 
    }
    .contact-btn:hover { 
        background-color: var(--primary-blue); 
        text-decoration: none; 
    }
    .whatsapp-btn { 
        background-color: #25D366; 
        color: #ffffff !important; 
        width: 40px; 
        height: 40px; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 30px !important; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
        transition: all 0.3s ease; 
        text-decoration: none !important;
    }
    .whatsapp-btn:hover { 
        background-color: #128C7E; 
        transform: translateY(-3px); 
        box-shadow: 0 6px 12px rgba(0,0,0,0.3); text-decoration: none !important; 
    }
    .mobile-wa-btn { 
        display: flex; 
        margin-left: auto; 
        margin-right: 10px; 
    }
    .wa-nav-item { 
        display: none; 
    }

    /* Home / Hero */

    .hero { 
        position: relative; 
        height: 100vh; 
        display: flex; 
       align-items: flex-start; 
        justify-content: center; 
        text-align: center; 
        overflow: hidden; 
        color: var(--bg-white); 
        padding: 15px; 
    }
    .slider-container { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        z-index: 1; 
    }
    .slide { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background-size: cover; 
        background-position: center; 
        opacity: 0; 
        transition: opacity 1s ease-in-out; 
    }
    .slide.active { 
        opacity: 1; 
    }
    .slide::before { 
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background: rgba(0, 0, 0, 0.6); 
    }
    .hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px; 
        max-width: 60%; 
    }
    .hero h1 { 
        font-size: 30px; 
        color: var(--bg-white); 
        margin-bottom: 20px; 
    }
    .hero p { 
        margin: 20px auto; 
        max-width: 100%; 
        font-size: 18px; 
    }
    .btn-group a { 
        display: inline-block; 
        margin: 10px; 
        padding: 12px 25px; 
        background: var(--dark-blue); 
        color: var(--bg-white); 
        text-decoration: none; 
        border-radius: 4px; 
    }

    /* Service */

    .service-hero { 
        position: relative; 
        width: 100%; 
        height: 50vh; 
        min-height: 400px; 
        background-size: cover; 
        background-position: center; 
        display: flex; 
        align-items: flex-start; 
        justify-content: center; 
        text-align: center; 
        color: var(--bg-white); 
    }
    .service-hero::before { 
        content: ''; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
    }
    .service-hero-content { 
        position: relative; 
        z-index: 2; 
        padding: 20px;
        max-width: 95%; 
        animation: fadeIn 1s ease-in-out; 
    }
    .service-hero-content h1 { 
        font-size: 22px;
        margin-top: 10px; 
        max-width: 100%;
        margin: 10px auto;
        color: var(--bg-white); 
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
    }
    .service-hero-content h2 { 
        font-size: 18px; 
        font-weight: normal; 
        color: var(--bg-white); 
        margin-top: 0; 
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5); 
    }
    .service-intro-text {
        font-size: 20px;
        font-weight: bold;
        color: var(--dark-blue);
    }
    .hero-subtitle {
        font-size: 20px;
        font-weight: bold;
        color: var(--dark-blue);
        text-align: left;
        margin-top: -20px;
        margin-bottom: 15px;
    }
    .service-detail-header { 
        background-color: var(--bg-white); 
        padding: 60px calc((100% - var(--container-width)) / 2) 40px; 
        text-align: center; 
        border-bottom: 1px solid #eee; 
    }
    .service-detail-header h1 {
        color: var(--dark-blue); 
        font-size: 36px; 
        margin-bottom: 10px;
     }
    .service-detail-header h2 { 
        color: #555; 
        font-size: 20px; 
        font-weight: normal; 
        margin-bottom: 20px; 
    }
    .service-detail-header p { 
        max-width: 100%; 
        margin: 0 auto; 
        font-size: 18px; 
        color: #444; 
        line-height: 1.6; 
    }
    .service-detail-content { 
        padding: 60px calc((100% - var(--container-width)) / 2); 
        background-color: #f8f9fa; 
    }
    .service-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
        gap: 30px; 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .service-card { 
        background: var(--bg-white); 
        padding: 20px 30px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
        border-top: 4px solid var(--primary-blue); 
        display: grid; 
        grid-template-columns: auto 1fr; 
        column-gap: 20px; 
        align-items: center; 
    }
    .service-card:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    }
    .service-card .icon-wrapper { 
        font-size: 40px; 
        color: var(--highlight-blue); 
        margin-bottom: 0; 
        grid-column: 1; 
        grid-row: 1; 
    }
    .service-card h3 { 
        color: var(--dark-blue); 
        font-size: 25px; 
        margin-top: 0; 
        margin-bottom: 0; 
        grid-column: 2; 
        grid-row: 1; 
    }
    .service-card .description { 
        font-size: 20px; 
        color: #555; 
        margin-bottom: 20px; 
        font-style: italic; 
        grid-column: 1 / -1; 
        grid-row: 2; 
        margin-top: 15px; 
    }
    .service-card ul { 
        grid-column: 1 / -1; 
        grid-row: 3; 
    }
    .service-card ul li { 
        font-size: 18px; 
        margin-bottom: 8px; 
        color: #555; 
        list-style-type: disc; 
        margin-left: 20px; 
    }
    .service-cta-btn { 
        display: inline-block; 
        background-color: var(--primary-blue); 
        color: #fff; 
        padding: 12px 25px; 
        border-radius: 50px; 
        text-decoration: none; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .service-cta-btn:hover { 
        background-color: var(--dark-blue); 
        text-decoration: none; 
        color: #fff; 
    }
    .qs-banner { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        align-items: center;
        max-width: 100%; 
        margin: 0 auto; 
        gap: 25px; 
        flex-direction: column; 
    }
    .qs-divider { 
        width: 150px; 
        height: 3px; 
        background-color: var(--light-blue); 
    }
    .qs-content-left { 
        flex: 1; 
        min-width: 100px; 
        text-align: center; 
        font-size: 20px; 
        font-weight: bold; 
        line-height: 1.6; 
        color: var(--bg-white); 
    }
    .qs-content-left p { 
        margin: 5px 0; 
    }
    .qs-content-right { 
        flex: 1; 
        min-width: 300px; 
        text-align: center; 
    }
    .glass-cta-box { 
        background: rgba(255, 255, 255, 0.1); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px); 
        border: 1px solid rgba(255, 255, 255, 0.2); 
        padding: 60px 60px; 
        border-radius: 4px; 
        display: inline-block; 
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    }
    .glass-cta-box .contact-btn { 
        font-weight: bold; 
        text-decoration: none; 
    }
    .glass-cta-box .contact-btn:hover { 
        text-decoration: underline !important; 
    }

    /* Outcome Section */
    .outcome-section { 
        background-color: #f9f9f9; 
    }
    .outcome-header { 
        text-align: center; 
        margin-bottom: 30px; 
        color: var(--dark-blue);
    }
    .outcome-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .outcome-card { 
        background: var(--bg-white); 
        padding: 20px; 
        border-radius: 8px; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.5); 
        flex: 1; 
        min-width: 100%; 
        max-width: 100%; 
        text-align: center; 
    }
    .outcome-icon { 
        color: var(--primary-blue); 
        font-size: 30px; 
        margin-bottom: 15px; 
    }

    /* Service CTA Section */
    .service-cta-section { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 40px 20px; 
    }
    .service-cta-header { 
        text-align: center; 
        margin-bottom: 30px; 
        color: var(--bg-white); 
    }
    .service-cta-right { 
        text-align: center; 
    }
    .service-cta-btn-white { 
        background-color: var(--bg-white); 
        color: var(--dark-blue) !important; 
        font-size: 18px; 
        padding: 12px 25px; 
    }

    /* About */

    .about-overview { 
        text-align: center; 
        justify-content: center; 
        max-width: 95%; 
        margin: 0 auto; 
        font-size: 20px;
    }
    .about-text { 
        font-size: var(--fs-20); 
        line-height: 1.8; 
        color: #555; 
    }
    .mission-vision-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
        justify-content: center; 
        max-width: 80%; 
        margin: 0 auto; 
    }
    .mv-card { 
        flex: 1; 
        min-width: 300px; 
        background: #fff; 
        padding: 40px; 
        border-radius: 8px; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
        text-align: center; 
    }
    .mv-card.mission { 
        border-top: 4px solid var(--primary-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-card.vision { 
        border-top: 4px solid var(--highlight-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .mv-title { 
        margin-top: 0; 
    }
    .mv-title.mission { 
        color: var(--dark-blue); 
    }
    .mv-title.vision { 
        color: var(--highlight-blue); 
    }
    .mv-desc { 
        font-size: var(--fs-18); 
        color: #444; 
        line-height: 1.6; 
    }
    .partners-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px; 
    }
    .partner-pill { 
        background: #fff; 
        padding: 10px 20px; 
        font-size: var(--fs-18); 
        border-radius: 50px; 
        font-weight: bold; 
        color: var(--dark-blue); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    }
    .approach-desc { 
        font-size: 18px; 
        margin-bottom: 40px; 
        color: #555; 
    }
    .process-flow {
        display: flex; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 30px; 
        margin-top: 30px; 
        flex-direction: column; 
        align-items: center; 
    }
    .process-step { 
        background: #fff; 
        padding: 20px 30px; 
        border-radius: 50px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        border: 1px solid #eee; 
        width: 100%; 
        justify-content: center; 
    }
    .approach-circle { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px; 
        width: 250px; 
        height: 250px; 
        border-radius: 50%; 
        justify-content: center; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
    }
    .process-icon { 
        font-size: 40px; 
        color: var(--primary-blue); 
        margin-bottom: 10px; 
    }
    .step-title { 
        font-weight: bold; 
        color: var(--dark-blue); 
        font-size: 18px; 
    }
    .step-title-lg { 
        font-size: var(--fs-20); 
    }
    .step-outcome { 
        color: var(--primary-blue); 
        font-weight: bold; 
        font-size: 18px; 
    }
    .step-outcome-md { 
        font-size: var(--fs-18); 
        font-weight: normal; 
        color: #666; 
    }
    .value-expertise-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 50px; 
    }
    .ve-col { 
        flex: 1; 
        min-width: 300px; 
    }
    .ve-col-h1 { 
        margin-bottom: 20px; 
    }
    .value-list-item { 
        font-size: var(--fs-18); 
        margin-bottom: 15px; 
        display: flex; 
        align-items: start; 
    }
    .value-icon { 
        color: var(--highlight-blue); 
        margin-right: 10px; 
        margin-top: 5px; 
    }
    .expertise-desc { 
        font-size: var(--fs-18); 
        line-height: 1.8; 
        color: #555; 
    }
    .why-choose-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
        max-width: 100%; 
    }
    .ch-box-padding { 
        padding: 20px; 
    }
    .ch-text { 
        font-size: var(--fs-18); 
    }
    .team-carousel-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        position: relative; 
        max-width: 100%;
        margin: 0 auto; 
    }
    .carousel-view { 
        overflow: hidden; 
        width: 100%; 
        padding: 20px 0; 
    }
    .carousel-track { 
        display: flex; 
        gap: 30px; 
        transition: transform 0.5s ease-in-out; 
        justify-content: flex-start; 
    }
    .team-card-carousel { 
        background: #fff; 
        padding: 15px; 
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
        flex: 0 0 280px; 
        text-align: center; 
        border-top: 4px solid var(--primary-blue); 
        transition: transform 0.3s ease; 
    }
    .team-card-carousel:hover { 
        transform: translateY(-5px); 
    }
    .team-img-circle { 
        width: 200px; 
        height: 200px; 
        background: #f0f4f8; 
        border-radius: 50%; 
        margin: 15px auto 20px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 60px; 
        color: var(--dark-blue); 
        overflow: hidden; 
    }
    .team-img-circle img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
    }
    .team-bio-text { 
        font-size: 15px; 
        color: #555; 
        line-height: 1.6; 
        margin-top: 10px; 
    }
    .team-desig { 
        color: var(--primary-blue); 
        font-size: 18px; 
        margin: 10px 0px; 
    }
    .nav-btn-carousel { 
        background: transparent; 
        border: none; 
        font-size: 2rem; 
        color: var(--primary-blue); 
        cursor: pointer; 
        padding: 0 15px; 
        z-index: 2; 
    }
    .nav-btn-carousel:hover { 
        color: var(--dark-blue); 
    }
    .dots-nav-container { 
        text-align: center; 
        margin-top: 10px; 
    }
    .dot-nav { 
        height: 12px; 
        width: 12px; 
        margin: 0 5px; 
        background-color: #ccc; 
        border-radius: 50%; 
        display: inline-block; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .dot-nav.active { 
        background-color: var(--primary-blue); 
    }

    /* Career */

    .why-work-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    .career-highlight-box { 
        background: #fff; 
        padding: 30px; 
        border-radius: 8px; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); 
        flex: 1; 
        min-width: 250px; 
        max-width: 300px; 
        font-size: 18px;
        text-align: center; 
        transition: transform 0.3s; 
    }
    .career-highlight-box:hover { 
        transform: translateY(-5px); 
    }
    .career-highlight-box i { 
        font-size: 35px; 
        color: var(--primary-blue); 
        margin-bottom: 15px; 
    }
    .job-container { 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .job-category-title { 
        color: var(--dark-blue); 
        font-size: 24px; 
        margin-top: 50px; 
        margin-bottom: 25px; 
        border-bottom: 2px solid var(--light-blue); 
        display: inline-block; 
        padding-bottom: 5px; 
    }
    .job-block { 
        background: #fff; 
        border: 1px solid #e0e0e0; 
        padding: 25px; 
        margin-bottom: 20px; 
        border-radius: 6px; 
        transition: box-shadow 0.3s; 
    }
    .job-block:hover { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
        border-color: var(--light-blue); 
    }
    .job-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 10px; 
        flex-wrap: wrap; 
    }
    .job-title { 
        font-size: 20px; 
        color: var(--primary-blue); 
        margin: 0; 
    }
    .job-exp { 
        background: #f0f4f8; 
        padding: 5px 10px; 
        border-radius: 4px; 
        font-size: 14px; 
        color: #555; 
        font-weight: bold; 
    }
    .job-desc { 
        font-size: 16px; 
        color: #333; 
        margin-bottom: 15px; 
        font-style: italic; 
    }
    .job-details { 
        margin-bottom: 20px; 
        color: #444; 
        line-height: 1.6; 
    }
    .apply-btn { 
        display: inline-block; 
        padding: 8px 25px; 
        background-color: var(--dark-blue); 
        color: white; 
        border-radius: 4px; 
        text-decoration: none; 
        font-size: 15px; 
        font-weight: bold; 
        transition: background-color 0.3s; 
    }
    .apply-btn:hover { 
        background-color: var(--primary-blue); 
        color: white; 
        text-decoration: none; 
    }
    .internship-section {
        text-align: center;
        align-items: center;
        background-color: var(--dark-blue);
    }
    .internship-section h2 {
        color: var(--bg-white);
    }
    .who-apply-wrapper { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 40px; 
    }
    .internship-text {
        margin-bottom: 20px;
        font-size: 20px;
        color: var(--bg-white);
    }
    .internship-btn {
        background-color: var(--bg-white); 
        color: var(--dark-blue) !important; 
        padding: 10px 25px; 
        border-radius: 50px; 
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .who-apply-col { 
        flex: 1; 
        min-width: 300px;
    }
    .process-flow-vertical { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px; 
        margin-top: 10px;
    }
    .process-step-vertical { 
        width: 100%; 
        padding: 15px 25px; 
    }

    /* Contact */

    .section.contact-section-mobile {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-wrapper { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 20px; 
        display: block;
        width: 100%;
        margin: 0;
    }
    .contact-image { 
        flex: 0 0 calc(40% - 20px); 
        max-width: 40%; 
        min-width: 300px; 
        margin-left: 50px; 
        display: none; 
    }
    .contact-image img { 
        width: 100%; 
        height: auto; 
        border-radius: 10px; 
    }
    .contact-wrapper .contact-container { 
        flex: 0 0 calc(60% - 20px); 
        max-width: 50%; 
        margin: auto; 
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
        width: 100%; 
        box-shadow: 0 0 20px rgba(0,0,0,0.8); 
    }
    .contact-container { 
        max-width: 100%; 
        margin: 0 auto; 
        width: 100%;
        margin: 0; 
        background: var(--bg-white); 
        padding: 40px; 
        border-radius: 10px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.8); 
        padding: 40px 20px; 
        border-radius: 0; 
        box-shadow: none; 
    }
    .contact-form .form-group { 
        margin-bottom: 20px; 
    }
    .contact-form label { 
        display: block; 
        margin-bottom: 8px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }
    .contact-form input, .contact-form select, .contact-form textarea { 
        width: 100%; 
        padding: 12px; 
        border: 1px solid #ccc; 
        border-radius: 5px; 
        font-size: 16px; 
        font-family: inherit; 
    }
    .contact-form button { 
        width: 100%; 
        padding: 15px; 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        border: none; 
        border-radius: 50px; 
        font-size: 18px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .contact-form button:hover { 
        background-color: var(--primary-blue); 
    }
    .form-text { 
        font-size: 13px; 
        color: #666; 
        margin-top: 5px; 
        display: block; 
    }
    .contact-form-row { 
        display: flex; 
        gap: 20px; 
        flex-wrap: wrap; 
    }
    .contact-form-col { 
        flex: 1; 
        min-width: 200px; 
    }

    /* Modal */

    .modal { 
        display: none; 
        position: fixed; 
        z-index: 2000; 
        left: 0; 
        top: 0; 
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0,0,0,0.6); 
        justify-content: center; 
        align-items: center; 
    }
    .modal-content { 
        background-color: var(--bg-white); 
        margin: 5% auto; 
        padding: 30px; 
        border: 1px solid #888; 
        width: 90%; 
        max-width: 700px; 
        border-radius: 10px; 
        position: relative; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
        animation: fadeIn 0.3s; 
    }
    .close-btn { 
        color: #aaa; 
        float: right; 
        font-size: 28px; 
        font-weight: bold; 
        cursor: pointer; 
        position: absolute; 
        right: 20px; 
        top: 10px; 
    }
    .close-btn:hover, .close-btn:focus { 
        color: #000; 
        text-decoration: none; 
        cursor: pointer; 
    }
    .qs-form-row { 
        display: flex;
        gap: 20px; 
        margin-bottom: 15px; 
    }
    .qs-form-group { 
        flex: 1; 
        display: flex; 
        flex-direction: column; 
    }
    .qs-form-group label { 
        margin-bottom: 5px; 
        font-weight: bold; 
        color: var(--dark-blue); 
    }

    /* Footer (Mobile View) */

    footer { 
        background: var(--dark-blue); 
        color: var(--bg-white); 
    }
    footer p { 
        margin: 0px 0; 
    }
    footer a { 
        color: var(--bg-white); 
        text-decoration: none; 
    }
    .main-footer { 
        background-color: var(--dark-blue); 
        color: var(--bg-white); 
        padding: 20px calc((95% - var(--container-width)) / 2) 20px; 
        margin-top: 60px; 
    }
    .footer-container { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: space-between; 
        max-width: 100%; 
        margin: 0 auto; 
        flex-direction: column; 
        text-align: center; 
    }
    .footer-col { 
        flex: auto; 
        min-width: var(--footer-col-width); 
        margin-bottom: 10px; 
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
        width: 100%; 
    }
    .footer-col-sm { 
        flex: 0 0 var(--footer-col-sm-width); 
        min-width: var(--footer-col-sm-width); 
    }
    .footer-col h3 { 
        font-size: 25px; 
        text-align: left;
        color: var(--light-blue); 
        margin-bottom: 5px; 
        display: inline-block; 
        padding-bottom: 5px; 
        text-align: left;
    }
    .footer-col ul {
        list-style: disc;
        padding-left: 20px;
        margin: 0;
    }
    .footer-group { 
        display: flex; 
        flex-direction: column; 
        flex: 2; 
        min-width: 320px; 
    }
    .footer-group-top { 
        display: flex; 
        gap: 0; 
        flex-direction: column; 
    }
    .footer-col p, .footer-col a { 
        color: var(--bg-white); 
        font-size: 18px; 
        text-align: left;
        line-height: 1.8; 
        text-decoration: none; 
        display: block; 
        margin-bottom: 8px; 
    }
    .footer-col a:hover { 
        color: var(--bg-white); 
        text-decoration: underline; 
    }
    .footer-logo { 
        height: 130px; 
        width: auto; 
        margin-bottom: 15px; 
        background: var(--bg-white); 
        padding: 5px; 
        border-radius: 20px; 
    }
    .aassay-btn { 
        background-color: var(--bg-white); 
        color: #0a3450 !important; 
        padding: 10px 20px; 
        border-radius: 5px; 
        font-weight: bold; 
        display: inline-block; 
        margin-top: 10px; 
        text-align: center; 
        width: 80%; 
    }
    .aassay-btn:hover { 
        background-color: var(--light-blue); 
        text-decoration: none !important; 
    }
    .aassay-logo-img { 
        max-width: 100%; 
        height: auto; 
        display: block; 
    }
    .footer-bottom { 
        border-top: 1px solid var(--text-dark); 
        margin-top: 0; 
        padding-top: 10px;
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        flex-wrap: wrap; 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    .footer-bottom p { 
        font-size: 20px; 
        margin: 0; 
    }
    .footer-links { 
        display: flex; 
        gap: 20px; 
    }
    .footer-links a { 
        color: var(--bg-white); 
        text-decoration: none; 
        font-size: 18px; 
    }
    .footer-wa-title {
        font-size: 20px;
    }
    .social-icons { 
        margin-bottom: 0px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
    }
    .social-icons a { 
        color: var(--bg-white); 
        font-size: 30px; 
        margin-right: 25px; 
        transition: color 0.3s, transform 0.3s; 
        display: inline-block; 
    }
    .social-icons a:hover { 
        transform: scale(1.2); 
    }
    .footer-whatsapp-btn { 
        display: inline-flex; 
        align-items: center; 
        background-color: #25D366; 
        color: #ffffff !important; 
        padding: var(--whatsapp-btn-padding); 
        border-radius: 5px; 
        font-size: var(--whatsapp-btn-font-size); 
        margin-top: 5px; 
        transition: background-color 0.3s ease; 
    }
    .footer-whatsapp-btn:hover { 
        background-color: #128C7E; 
        text-decoration: none; 
    }
    iframe { 
        width: 100% !important; 
        max-width: 100%; 
    }

    /* --- Footer Reordering for Mobile --- */
    
    /* Flatten the structure to allow reordering */

    .footer-col:first-child,
    .footer-col-group,
    .footer-col-row {
        display: contents;
    }

    /* 1. Logo & Text (Side-by-Side) */
    .footer-logo-text-wrapper {
        order: -1;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 15px;
        text-align: left;
    }
    .footer-logo-text-wrapper .footer-logo {
        height: 100px;
        margin-bottom: 0px;
    }
    .footer-logo-text-wrapper p {
        margin: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    /* 2. Product */
    .footer-col-product {
        order: 2;
    }
    
    /* 3. Services */
    .footer-col-services { 
        order: 3; 
    }
    .footer-col-career a {
        margin-bottom: 0;
    }
    
    /* 4. Career */
    .footer-col-career { order: 4; }
    
    /* 5. Contact Us */
    .footer-col-contact { order: 5; }

    /* 6. WhatsApp Button */
    .footer-wa-box {
        order: 6;
        margin-top: 10px;
        margin-bottom: 30px;
        width: 100%;
    }

    /* 7. Map Frame */
    .footer-map {
        order: 7;
        margin-bottom: 30px;
    }

    /* 8. Follow On */
    .footer-follow-container {
        order: 8;
        width: 100%;
        text-align: center;
        margin-top: 0;
        margin-bottom: 20px;
    }

    /* =========================================
       AASSAY Page Styles (Mobile)
       ========================================= */
     .aassay-hero {
        /* background: linear-gradient(135deg, var(--primary-blue), var(--highlight-blue)); */
        background: linear-gradient(135deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 50px 20px;
        text-align: center;
    }
    .aassay-hero-content {
        max-width: 95%;
        margin: 0 auto;
    }
    .aassay-hero-logo {
        height: 100px;
        margin-bottom: 15px;
        padding: 10px 10px;
        background-color: white;
        border-radius: 10px;
    }
    .aassay-hero-content h1 {
        font-size: 56px;
        margin-bottom: 20px;
        color: #fff;
        line-height: 1.2;
    }
    .aassay-hero-content h1 span {
        font-size: 25px;
        font-weight: normal;
        display: block;
        margin-top: 10px;
        color: var(--light-blue);
    }
    .aassay-hero-content p {
        font-size: 22px;
        max-width: 900px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
    .aassay-btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .aassay-btn-primary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-primary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }
    .aassay-btn-secondary:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-section {
        padding: 80px 20px;
        max-width: 95%;
    }
    .aassay-desc {
        font-size: 22px;
        max-width: 1000px;
        margin: 0 auto 50px;
        color: #000000;
    }
    .aassay-use-cases-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .aassay-card {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        font-weight: bold;
        color: var(--dark-blue);
        text-align: center;
        flex: 1 1 300px;
        border-left: 5px solid  rgb(176, 77, 137);
        font-size: 20px;
    }
    .aassay-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .benefit-item {
        background: #fff;
        padding: 20px 25px;
        border-radius: 5px;
        font-size: 20px;
        color: #444;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .benefit-item i {
        color:  rgb(176, 77, 137);
        font-size: 24px;
    }
    .aassay-feature-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        max-width: 95%;
        margin: 0 auto;
    }
    .aassay-feature-row.reverse {
        flex-direction: column;
    }
    .aassay-feature-text, .aassay-feature-img {
        display: contents;
    }
    .aassay-feature-text h3 {
        font-size: 30px;
        color: var(--dark-blue);
        margin-bottom: 25px;
        order: 1;
    }
    .aassay-feature-text p {
        font-size: 20px;
        color: #000000;
        margin-bottom: 20px;
        line-height: 1.6;
        order: 2;
    }
    .aassay-btn-outline {
        display: inline-block;
        padding: 20px 75px;
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
        text-align: center;
        order: 4;
    }
    .aassay-btn-outline:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-big-icon {
        font-size: 150px;
        color:  rgb(176, 77, 137);
        order: 3;
        margin-bottom: 25px;
    }
    .aassay-grid-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .aassay-info-box {
        background: #f9f9f9;
        padding: 50px;
        border-radius: 10px;
        border-top: 5px solid rgb(176, 77, 137);
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .aassay-info-box h3 {
        color: var(--dark-blue);
        margin-bottom: 20px;
        font-size: 28px;
    }
    .aassay-info-box i {
        margin-right: 10px;
        color: rgb(176, 77, 137);
    }
    .aassay-info-box p {
        font-size: 20px;
        line-height: 1.6;
    }
    .aassay-cta-section {
       background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        text-align: center;
        padding: 100px 20px;
    }
    .aassay-cta-section h1 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 30px;
    }
    .aassay-cta-section p {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .aassay-btn-primary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: var(--bg-white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-primary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
    .aassay-btn-secondary-white {
        background: linear-gradient(90deg, rgb(40, 22, 111) 0%, rgb(176, 77, 137) 100%);
        color: #fff;
        padding: 13px 33px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
    }
    .aassay-btn-secondary-white:hover {
        background: linear-gradient(90deg, rgb(176, 77, 137) 0%, rgb(40, 22, 111) 100%);
    }
}

/* =========================================
   Team Card Hover Effect (Global)
   ========================================= */

.team-card-carousel {
    position: relative;
    overflow: hidden;
    min-height: 400px; /* Ensure consistent height for overlay */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.team-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align content */
    text-align: left;        /* Left align text */
    transition: bottom 0.4s ease-in-out;
    z-index: 10;
    border-top: 4px solid var(--primary-blue);
}

.team-card-carousel:hover .team-overlay {
    bottom: 0;
}

/* Header Row: Name (Left) + LinkedIn (Right) */
.team-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.team-name-overlay {
    margin: 0;
    color: var(--dark-blue);
    font-size: 25px;
    font-weight: bold;
}

.team-desig-overlay {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: bold;
}

.team-linkedin-btn {
    margin-top: 0;
    color: #0077b5;
    font-size: 28px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.team-linkedin-btn:hover {
    transform: scale(1.2);
    color: #005582;
}
.team-bio-text {
    color: black;
}

/* =========================================
   Homepage Redesign (New)
   ========================================= */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%; 
    height: 100%;
}
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}
.hero-text-col {
    position: relative; 
    z-index: 2; 
    padding: 20px;
    max-width: 95%; 
    margin: 0 auto;
    animation: fadeIn 1s ease-in-out; 
}
.hero-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}
.hero-subheading {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--bg-white);
}
.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    color: #fff;
}
.hero-btn-group {
    display: flex;
    gap: 15px;
}
.hero-img-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-icon-placeholder {
    font-size: 200px;
    color: rgba(255,255,255,0.2);
}

/* Buttons */
.btn-primary-home {
    background-color: var(--highlight-blue);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
}
.btn-primary-home:hover {
    background-color: #005f70;
    color: #fff;
    text-decoration: none;
}
.btn-secondary-home {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}
.btn-secondary-home:hover {
    background-color: #fff;
    color: var(--dark-blue);
    text-decoration: none;
}
.btn-outline-home {
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}
.btn-outline-home:hover {
    background-color: var(--dark-blue);
    color: #fff;
    text-decoration: none;
}

/* Sections */
.section-home {
    padding: 30px 0;
}
.container-home {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 25px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}
.section-text {
    font-size: 18px;
    text-align: center;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 90%;
}
.section-text-1 {
    font-size: 18px;
    text-align: left;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 90%;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.bg-light { background-color: #f9f9f9; }

/* AASSAY Section */
.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}
.split-layout .text-col { flex: 1; }
.split-layout .img-col { flex: 1; }
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.feature-list li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-list li i { 
    color: var(--highlight-blue); 
}
.feature-img { 
    max-width: 80%; 
    height: auto; 
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    border-top: 4px solid transparent;
}
.service-box:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--highlight-blue);
    text-decoration: none;
    color: inherit;
}
.service-icon {
    font-size: 40px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}
.service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}
.service-box p {
    font-size: 16px;
    color: #666;
}

/* Newsletter */
.newsletter-home {
    background-color: var(--dark-blue);
    color: #fff;
}
.white-text { color: #fff !important; }
.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.newsletter-form input {
    padding: 15px;
    width: 300px;
    border: none;
    border-radius: 5px;
}
.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--highlight-blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.newsletter-form button:hover { 
    background-color: #005f70; 
}

/* Flagship */
.flagship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.flagship-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
}
.flagship-card:hover { 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}
.flagship-logo { 
    height: 60px; 
    margin-bottom: 20px; 
}
.flagship-card h3 { 
    font-size: 24px; 
    margin-bottom: 15px; 
    color: var(--dark-blue); 
}
.flagship-card p { 
    margin-bottom: 20px; 
    color: #666; 
}
.btn-link {
    color: var(--highlight-blue);
    font-weight: bold;
    text-decoration: none;
}
.btn-link:hover { 
    text-decoration: underline; 
}

/* Partners */
.partners-icon-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100px;
}
.partner-item i {
    font-size: 30px;
    color: var(--dark-blue);
    background: #fff;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.partner-item span {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}


/* CTA */
.cta-home {
    background: linear-gradient(135deg, var(--primary-blue), var(--highlight-blue));
}
.btn-white-home {
    background-color: #fff;
    color: var(--dark-blue);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
}
.btn-white-home:hover { 
    background-color: #f0f0f0; 
    text-decoration: none; 
}
.btn-outline-white-home {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
}
.btn-outline-white-home:hover { 
    background-color: #fff; 
    color: var(--dark-blue); 
    text-decoration: none; 
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-wrapper { flex-direction: column; text-align: center; }
    .hero-text-col { text-align: center; }
    .hero-heading { font-size: 32px; }
    .hero-subheading { font-size: 20px; }
    .hero-btn-group { justify-content: center; }
    .hero-img-col { display: none; }
    .split-layout { flex-direction: column; }
    .text-left { text-align: center; }
    .section-text { margin: 0 auto 20px; }
    .feature-list li { 
        justify-content: left; 
    }
}


/* =========================================
   Service Carousel Styles (Home)
   ========================================= */
.services-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.services-carousel-view {
    overflow: hidden;
    width: 100%;
    padding: 20px 0; /* Space for hover effects */
}

.services-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    justify-content: flex-start;
}

.service-card-carousel {
    flex: 0 0 300px;
    max-width: 300px;
    /* Inherits .service-box styles */
}

.service-nav-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 0 15px;
    z-index: 2;
}

.service-nav-btn:hover {
    color: var(--highlight-blue);
}

.service-dots-container {
    text-align: center;
    margin-top: 20px;
}

.service-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-dot.active {
    background-color: var(--highlight-blue);
}

@media (max-width: 768px) {
    .service-card-carousel {
        flex: 0 0 250px;
        max-width: 250px;
    }
}