
   

    .recognition-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.2;
        color: white !important;
    }

    .recognition-subtitle {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 50px;
        color: #e0e0e0;
    }

    .recognition-badges {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 50px; /* Badges ke beech ka space */
    }

    .recognition-badges img {
        max-height: 100px; /* Badges ki height */
        width: auto;
        object-fit: contain;
        /* Custom animation (No Alpine.js) */
        transition: transform 0.3s ease, filter 0.3s ease; 
    }

    .recognition-badges img:hover {
        transform: translateY(-8px); /* Hover karne par thoda upar jayega */
        filter: brightness(1.1);
    }

    /* Mobile devices ke liye responsive adjustments */
    @media (max-width: 768px) {
        .recognition-title {
            font-size: 28px;
        }
        .recognition-subtitle {
            font-size: 15px;
            margin-bottom: 40px;
        }
        .recognition-badges {
            gap: 25px;
        }
        .recognition-badges img {
            max-height: 70px;
        }
    }

    .stats-section {
        background-color: #213f5c; /* Dark blue background */
        padding: 60px 0;
        color: #ffffff;
        font-family: 'Segoe UI', sans-serif;
    }

    .stat-box {
        text-align: center;
        padding: 20px 10px;
        transition: transform 0.3s ease;
    }

    .stat-box:hover {
        transform: translateY(-5px); /* Hover par slight up movement */
    }

    .stat-number {
        font-size: 58px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .stat-label {
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        letter-spacing: 0.5px;
    }

    .star-icon {
        color: #fca311; /* Yellow/Orange star color */
        font-size: 45px;
        line-height: 1;
        margin-top: -8px; 
    }

    /* Mobile screens ke liye adjustments */
    @media (max-width: 768px) {
        .stat-number {
            font-size: 42px;
        }
        .stat-label {
            font-size: 14px;
        }
        .star-icon {
            font-size: 32px;
        }
        .stat-box {
            margin-bottom: 20px;
        }
    }

    .blog-slider {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 5px;
    }

    .news-card {
        width: 280px;
        scroll-snap-align: start;
    }

    .blog-section {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .blog-wrapper {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }


        /* --- Root Variables for Colors --- */
        :root {
            --heading-color: #00002E; /* Dark Blue/Black from image */
            --tag-color: #FFA500;      /* Orange from image */
            --arrow-color: #4A4AFF;     /* Blue from image */
            --text-color: #333;
            --background-color: #ffffff;
            --border-color: #e0e0e0;
        }

        /* --- General Styles --- */
        .home {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        .faq-section {
       max-width: 1200px;
    margin: 40px auto;
    padding: 20px ;
    background: #d8ecf0 !important;
    border-radius: 30px !important;
        }

        /* --- Header Styling (Centered) --- */
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-tag {
            font-size: 1rem;
            font-weight: bold;
            color: var(--tag-color);
            margin: 0 0 10px;
        }

        .faq-tag span {
            color: var(--arrow-color);
            font-weight: bold;
        }

        .faq-header h2 {
            font-size: 2.5rem; /* 40px */
            font-weight: 900;
            color: var(--heading-color);
            line-height: 1.3;
            margin: 0 auto;
            max-width: 800px; /* Controls line break */
        }

        /* --- FAQ Container (2-Column Layout) --- */
        .faq-container {
            display: flex;
            justify-content: space-between;
            gap: 30px; /* Space between the two columns */
        }

        .faq-column {
            flex: 1; /* Each column takes up equal space */
            display: flex;
            flex-direction: column;
            gap: 20px; /* Space between FAQ items */
        }

        /* --- FAQ Item Styling (<details> & <summary>) --- */
        .faq-item {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: #fdfdfd;
            transition: box-shadow 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .faq-item summary {
            font-size: 1.1rem; /* 18px */
            font-weight: 600;
            color: var(--heading-color);
            padding: 20px;
            cursor: pointer;
            list-style: none; /* Removes default triangle */
            position: relative;
            user-select: none;
        }

        /* Custom Plus/Minus Icon */
        .faq-item summary::after {
            content: '+';
            font-size: 1.5rem; /* 24px */
            font-weight: 600;
            color: var(--arrow-color);
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.2s ease-in-out;
        }

        /* Change icon to minus when open */
        .faq-item[open] summary::after {
            content: '−';
        }

        /* Answer Styling */
        .faq-item div {
            padding: 0 20px 20px 20px;
            color: #555;
        }

        /* --- Responsive Design (Stack columns on mobile) --- */
        @media (max-width: 768px) {
            .faq-container {
                flex-direction: column;
                gap: 20px;
            }

            .faq-header h2 {
                font-size: 2rem; /* 32px */
            }
        }
   
    /* --- Root Variables for Colors --- */
    :root {
        --heading-color: #00002E;
        /* Dark Blue/Black from image */
        --tag-color: #FFA500;
        /* Orange from image */
        --arrow-color: #4A4AFF;
        /* Blue from image */
        --text-color: #333;
        --background-color: #ffffff;
        --border-color: #e0e0e0;
    }

    /* --- General Styles --- */
    .home {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        background-color: var(--background-color);
        color: var(--text-color);
        line-height: 1.6;
        margin: 0;
        padding: 0;
    }

    .faq-section {
     max-width: 1200px;
    margin: 40px auto;
    padding: 20px ;
    background: #d8ecf0 !important;
    border-radius: 30px !important;
    }

    /* --- Header Styling (Centered) --- */
    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .faq-tag {
        font-size: 1rem;
        font-weight: bold;
        color: var(--tag-color);
        margin: 0 0 10px;
    }

    .faq-tag span {
        color: var(--arrow-color);
        font-weight: bold;
    }

    .faq-header h2 {
        font-size: 2.5rem;
        /* 40px */
        font-weight: 900;
        color: var(--heading-color);
        line-height: 1.3;
        margin: 0 auto;
        max-width: 800px;
        /* Controls line break */
    }

    /* --- FAQ Container (2-Column Layout) --- */
    .faq-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        /* Space between the two columns */
    }

    .faq-column {
        flex: 1;
        /* Each column takes up equal space */
        display: flex;
        flex-direction: column;
        gap: 20px;
        /* Space between FAQ items */
    }

    /* --- FAQ Item Styling (<details> & <summary>) --- */
    .faq-item {
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: #fdfdfd;
        transition: box-shadow 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .faq-item summary {
        font-size: 1.1rem;
        /* 18px */
        font-weight: 600;
        color: var(--heading-color);
        padding: 20px;
        cursor: pointer;
        list-style: none;
        /* Removes default triangle */
        position: relative;
        user-select: none;
    }

    /* Custom Plus/Minus Icon */
    .faq-item summary::after {
        content: '+';
        font-size: 1.5rem;
        /* 24px */
        font-weight: 600;
        color: var(--arrow-color);
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s ease-in-out;
    }

    /* Change icon to minus when open */
    .faq-item[open] summary::after {
        content: '−';
    }

    /* Answer Styling */
    .faq-item div {
        padding: 0 20px 20px 20px;
        color: #555;
    }

    /* --- Responsive Design (Stack columns on mobile) --- */
    @media (max-width: 768px) {
        .faq-container {
            flex-direction: column;
            gap: 20px;
        }

        .faq-header h2 {
            font-size: 2rem;
            /* 32px */
        }
    }


    .global-reach-section {
        padding: 80px 0;
        background-color: #ffffff;
        font-family: 'Segoe UI', sans-serif;
    }

    .gr-heading {
        font-size: 46px;
        font-weight: 800;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .gr-heading .text-cyan {
        color: #00bfff; /* Bright cyan/blue matching your theme */
    }

    .gr-heading .text-dark {
        color: #222222;
    }

    .gr-description {
        font-size: 16px;
        color: #555555;
        max-width: 800px;
        margin: 0 auto 50px auto;
        line-height: 1.6;
    }

    .gr-description strong {
        color: #222222;
        font-weight: 700;
    }

    .location-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 24px;
        /* Default background color fallback */
        background-color: #2c3e50; 
    }

    /* Background images with CSS Gradients for the dark overlay effect */
    .card-usa {
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(16, 55, 92, 0.6)), url('/assets/img/home/apricornimage.webp') center/cover;
    }
    .card-uae {
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(52, 152, 219, 0.5)), url('/assets/img/home/apricornimage2.webp') center/cover;
    }
    .card-india {
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(85, 107, 47, 0.6)), url('/assets/img/home/apricornimage3.webp') center/cover;
    }
    .card-aus {
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(34, 49, 63, 0.7)), url('/assets/img/home/apricornimage3.webp') center/cover;
    }

    .location-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .location-card h4 {
        color: #ffffff;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 5px;
        text-transform: uppercase;
        z-index: 2;
    }

    .location-card p {
        color: #e0e0e0;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0;
        z-index: 2;
    }
