:root {
    --primary-green: #C5E89B;
    --light-green: #DAF0BC;
    --dark-green: #2C5F2D;
    /* Assumed dark contrast */
    --accent-orange: #FF6B6B;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --font-main: 'Gilroy-Regular', sans-serif;
}

.text-justify {
    text-align: justify;
}

.essential-icon-box img {
    max-width: 70px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-dark);
}

/* Open Roles Section */
.role-pill {
    background-color: #F8F9FA;
    /* Very light grey */
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    margin: 5px;
    /* Spacing between pills */
}

.role-pill:hover {
    background-color: #E9ECEF;
    color: #222;
}

.role-pill.active {
    background-color: #0d6efd;
    /* Brand Blue */
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.job-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    /* Subtle grey border */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.job-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: transparent;
    transform: translateY(-4px);
}

.job-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0d6efd;
    /* Blue */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.job-icon {
    width: 36px;
    height: 36px;
    background-color: #EBF5FF;
    /* Light blue bg */
    color: #0d6efd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.job-title {
    font-size: 1.05rem;
    font-weight: 600;
    /* slightly less bold than 700 */
    color: #1F2937;
    /* Darker grey/black */
    margin-bottom: 12px;
    line-height: 1.4;
}

.job-desc {
    font-size: 0.9rem;
    color: #6B7280;
    /* Cool grey */
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.6;
}

.job-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 500;
    align-items: center;
}

/* Mobile Navbar Styling */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        z-index: 1000;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .nav-link {
        color: #333 !important;
        font-size: 1.1rem;
        margin: 0;
    }

    .nav-divider {
        display: none;
    }

    .btn-download-app {
        margin: 15px 0;
        width: 100%;
        display: block;
    }

    .nav-phone {
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }
}

.btn-apply {
    width: 100%;
    background-color: #F3F4F6;
    /* Light grey background */
    color: #374151;
    /* Dark grey text */
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    /* Flex to center content if icon is used */
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-apply:hover {
    background-color: #E5E7EB;
    /* Slightly darker on hover */
    color: #111;
}

.btn-apply i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.btn-apply:hover i {
    transform: translateX(4px);
}

.btn-primary-custom {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #ff4c4c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-custom:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: transparent;
    /* Transparent initially */
    width: 100%;
    background: #fff;
    /* Ensure it fits */
}

.navbar>.container {
    padding-left: 20px;
    padding-right: 20px;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.brand-g {
    background-color: #000;
    color: #fff;
    font-weight: 700;
    padding: 0px 8px;
    border-radius: 6px;
    margin-left: 2px;
    font-size: 1.6rem;
    display: inline-block;
    line-height: 1.4;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    display: flex;
    /* To align divider */
    align-items: center;
}

.nav-link {
    color: #888;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0 15px !important;
    position: relative;
}

.nav-link.active-link {
    color: #444;
    font-weight: 700;
}

.nav-divider {
    color: #ddd;
    font-weight: 300;
    font-size: 1.2rem;
    margin: 0 5px;
}

.btn-download-app {
    background-color: #FF5A5F;
    /* Coral red from image */
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.btn-download-app:hover {
    background-color: #e04e53;
    color: var(--white);
    transform: translateY(-1px);
}

.nav-phone {
    font-weight: 700;
    color: #444;
    font-size: 1rem;
    margin-left: 20px;
    white-space: nowrap;
}

/* Hero Slider */
.hero-slider {
    margin-top: 76px;
    /* Offset fixed navbar */
}

.hero-slide {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 0px;
}

.hero-title {
    font-weight: 500;
    font-size: 3rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.btn-hero-primary {
    background-color: #FF5A5F;
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 400;
    font-size: .8rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #e04e53;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 90, 95, 0.4);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px;
    border-radius: 50px;
    font-weight: 400;
    font-size: .8rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: #111;
    border-color: var(--white);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        text-align: center;
    }

    .d-flex {
        justify-content: center;
    }
}

/* Ensure Hero Controls don't overflow */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
    max-height: 100%;
}


/* Card Styles */
.feature-card {
    background: var(--white);
    border: none;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-green);
}

/* Utilities */
.text-accent {
    color: var(--accent-orange);
}

.bg-light-green {
    background-color: var(--light-green);
}

.section-padding {
    padding: 80px 0;
}

/* Essentials Section */
.essential-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    min-height: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.essential-content {
    flex: 1;
    background-color: #E9E9F0;
    /* Light grey text area */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.essential-content h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.essential-content p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.essential-icon-box {
    width: 150px;
    /* Fixed width for icon box */
    background-color: #D6D6E5;
    /* Light purple/lavender */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #111;
    /* Dark icon */
    flex-shrink: 0;
}

/* Reverse layout for alternating items */
.essential-card.reverse {
    flex-direction: row-reverse;
}



/* Mobile Responsive for Essentials */
@media (max-width: 768px) {
    .essential-card {
        flex-direction: column;
        /* Stack vertically on mobile */
    }

    .essential-card.reverse {
        /* Put icon on top for reverse too, or keep bottom? usually icon top is better, but image shows side by side. stacking: Icon, then Content? Or Content then Icon? Let's do Content on Top, Icon on Bottom or vice versa. 
           Actually for mobile, often Icon Top -> Content Bottom looks best. 
           Let's just stack consistently or let them flow. 
           If column: content is top, icon is bottom. 
           If column-reverse: icon is top, content is bottom. */
        flex-direction: column;
    }

    .essential-icon-box {
        width: 100%;
        height: 100px;
    }
}

/* About Section */
.about-img-container {
    position: relative;
    border-radius: 20px 0 0 20px;
    /* Round left, square right */
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    /* Ensure content stays within border radius */
}

@media (min-width: 992px) {
    .about-img-container {
        margin-left: 30px;
        margin-right: -100px;
        /* Pull outside container on right ONLY for desktop */
    }
}

/* Fix overflow issues globally again just in case */
section {
    overflow-x: clip;
    /* Modern way to clip without hidden scrollbar issues */
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px;
    /* Match container */
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-heading {
    font-weight: 300;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-subheading {
    font-weight: 700;
    color: #333;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-text strong {
    color: #333;
    font-weight: 700;
}

.stat-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #C5E89B;
    /* Light green */
    color: #1a421a;
    padding: 15px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 10;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #2C5F2D;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #2C5F2D;
    letter-spacing: 0.5px;
}

/* Value Grid Section */
.value-card {
    padding: 25px;
    border-radius: 15px;
    /* Rounded corners like image */
    height: 100%;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
    border: none;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-pill {
    background: var(--white);
    color: #444;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    align-self: flex-start;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.card-problem {
    background-color: #F0F2F5;
    /* Light Grey */
    color: #555;
}

.card-solution {
    background-color: #D6D6E5;
    /* Light Purple/Blue like image */
    color: #444;
}

.card-impact {
    background-color: #DAF0BC;
    /* Light Green like image */
    color: #444;
}

.value-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.value-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    font-weight: 500;
}

/* Red/Orange tiny dot for solution list */
.value-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: #FF5A5F;
    border-radius: 50%;
}

.value-list-check {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.value-list-check li {
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
}

.value-list-check li i {
    color: #2C5F2D;
    /* Dark green check */
    margin-top: 4px;
    margin-right: 8px;
    font-size: 0.9rem;
}

.value-row {
    margin-bottom: 25px;
    /* Spacing between rows */
}

/* Override previous section title for this section specifically if needed, but general is fine */

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

/* Trust Section */
.trust-container {
    display: block;
    /* Removed flex to avoid conflicts with absolute items */
    /* Vertically align to center */
    /* Space between items */
    padding: 20px 0;
    height: 500px;
    /* Fixed height for absolute items */
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    /* Hide items moving off-screen */
}


/* Consolidating trust-wrapper styles if needed, or just cleaning up orphaned code */
/* The trust-wrapper was defined above at line 800. These lines were orphaned.
   We should probably add the max-width to the main .trust-wrapper rule if needed, 
   but for now, I will just remove this broken block and ensure .trust-wrapper has what it needs.
   
   Re-defining .trust-wrapper correctly to include the properties that were orphaned.
*/
.trust-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* MasterG Partner Program Section */
.partner-program-section {
    background-color: var(--white);
    padding-top: 60px;
    padding-bottom: 60px;
}

.partner-heading {
    font-weight: 300;
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 15px;
}

.partner-subheading {
    font-weight: 700;
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #555;
}

.partner-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    text-align: justify;
}

.stat-box {
    background-color: #DAF0BC;
    /* Light Green match */
    padding: 20px;
    border-radius: 12px;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.stat-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0;
    font-weight: 500;
}

.partner-map {
    max-height: 500px;
    /* specific sizing or let it be fluid */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
    .stat-box {
        min-width: 100px;
        margin-bottom: 10px;
    }

    .partner-heading {
        font-size: 2rem;
    }
}


/* Nav Buttons */
/* Nav Buttons */
.trust-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999 !important;
    /* Increased z-index significantly */
    cursor: pointer;
    pointer-events: auto;
    /* explicit */
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-nav-btn:hover {
    background: var(--text-dark);
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 0px;
}

/* Moved slightly closer to edge */
.next-btn {
    right: 0px;
}

@media (max-width: 768px) {
    .trust-nav-btn {
        /*        display: none;*/
    }
}

/* Fix Hero Slider Controls Visibility */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    z-index: 100 !important;
    /* Ensure above overlay */
    opacity: 0.8 !important;
    /* Ensure visible */
    width: 10% !important;
    /* Widen hit area */
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1 !important;
}

/* Explicit Custom Hero Icons */
.custom-hero-icon {
    font-size: 3rem;
    color: #ffffff !important;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
    z-index: 101;
    /* Above button layer */
    display: block;
    /* Ensure it takes space */
}

/* Ensure button container is visible */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    z-index: 100 !important;
    opacity: 0.9 !important;
    width: 8% !important;
    background: transparent;
    /* No conflicting background */
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.1);
    /* Subtle hover hint */
}


.trust-container::-webkit-scrollbar {
    display: none;
}

.trust-item {
    background: var(--white);
    border-radius: 20px;
    width: 300px;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Position Classes for Infinite Loop (Based on 5 Items) */
/* Pos 0: Far Left (Visible) */
/* Pos 0: Far Left (Visible) */
.trust-item.item-pos-0 {
    left: 10%;
    opacity: 0.8 !important;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 1;
    /*    filter: blur(2px);*/
    pointer-events: none;
    /* Prevent clicking on hidden/faded items */
}

/* Pos 1: Left (Visible, inactive) */
.trust-item.item-pos-1 {
    left: 30%;
    /* Adjusted for better spacing */
    opacity: 0.8 !important;
    transform: translate(-50%, -50%) scale(0.85);
    z-index: 2;
    /*    filter: blur(1px);*/
}

/* Pos 2: Center (Active, Large) */
.trust-item.item-pos-2 {
    left: 50%;
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.1);
    /* 1.1 scale of 300px base */
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /*    filter: blur(0);*/
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Pos 3: Right (Visible, inactive) */
.trust-item.item-pos-3 {
    left: 70%;
    /* Adjusted for better spacing */
    opacity: 0.8 !important;
    transform: translate(-50%, -50%) scale(0.85);
    z-index: 2;
    /*    filter: blur(1px);*/
}

/* Pos 4: Far Right (Visible) */
.trust-item.item-pos-4 {
    left: 90%;
    opacity: 0.8 !important;
    /* Visible now */
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 1;
    /*    filter: blur(2px);*/
    pointer-events: none;
    /* Prevent clicking on hidden/faded items */
}

/* Mobile Adjustments for Positions */
@media (max-width: 768px) {
    .trust-item {
        width: 260px;
    }

    .item-pos-0 {
        left: -50%;
    }

    /* Fully off screen */
    .item-pos-1 {
        left: 10%;
        opacity: 0;
    }

    /* Hide neighbors on mobile to focus on center */
    .item-pos-2 {
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        width: 85%;
    }

    .item-pos-3 {
        left: 90%;
        opacity: 0;
    }

    .item-pos-4 {
        left: 150%;
    }
}

.trust-img-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.item-pos-2 .trust-img-thumb {
    height: 220px;
    /* Taller in active */
}

.trust-content {
    text-align: center;
}

.trust-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #444;
    transition: all 0.3s ease;
}

.item-pos-2 h5 {
    font-size: 1.3rem;
    color: #222;
}

.trust-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.item-pos-2 .trust-desc {
    opacity: 1;
    height: auto;
}

/* Testimonial Section */
.testimonial-card {
    background: #F2F2F9;
    /* Very light purple/grey mix */
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    font-size: 2.5rem;
    color: #FF99AC;
    /* Pinkish-red quote color */
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.testimonial-author {
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle separator if needed, or remove */
    padding-top: 15px;
    border: none;
}

.author-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #333;
}

.author-info span {
    font-size: 0.8rem;
    color: #777;
    font-weight: 500;
}

.testimonial-rating {
    color: #FFC107;
    /* Gold stars */
    font-size: 0.8rem;
}

.testimonial-rating i {
    margin-left: 1px;
}


/* Product Section */
.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0px;
}

/* Product Range Marquee */
.product-marquee {
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
    /* More padding for shadow */
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
    scroll-behavior: smooth;
    display: flex;
    justify-content: flex-start;
}

.product-marquee::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Container for positioning arrows */
.product-marquee-container {
    padding: 0 10px;
    /* Minimal padding */
    max-width: 1400px;
    margin: 0 auto;
}

.marquee-track {
    display: flex;
    gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
    width: max-content;
    /* Ensure items sit in a row */
    animation: marquee-scroll 40s linear infinite;
    flex-wrap: nowrap;
}

/* Nav Buttons for Products */
.product-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    /* Semi-transparent */
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-nav-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.prev-prod-btn {
    left: 20px;
}

.next-prod-btn {
    right: 20px;
}

@media (max-width: 991px) {
    .product-marquee-container {
        padding: 0 10px;
    }

    .product-nav-btn {
        /* display: flex; */
        /* Ensure visible */
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Pause on hover interaction */
.product-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.product-card {
    width: 220px;
    height: 220px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0);
}

.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /*    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));*/
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly 1/3 of the total width (since we have 3 duplicate sets) */
        transform: translateX(calc(-100% / 3));
    }
}

@media (max-width: 768px) {
    .product-card {
        width: 140px;
        height: 140px;
        padding: 15px;
        border-radius: 15px;
    }

    .marquee-track {
        gap: 20px;
        animation: marquee-scroll 20s linear infinite;
        /* Faster on mobile */
        flex-wrap: nowrap;
    }
}

/* Footer */
footer {

    background-color: #111;
    color: #aaa;
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--accent-orange);
}

.social-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--white);
    background: #333;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

/* Eligibility Section */
.eligibility-card {
    background-color: #F3F4F6;
    /* Light Grey */
    border-radius: 20px;
    padding: 30px 20px 40px 20px;
    text-align: center;
    position: relative;
    margin-top: 40px;
    /* Space for icon */
    height: 100%;
    transition: transform 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-5px);
}

.eligibility-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #0d6efd;
    /* Blue */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.eligibility-title {
    margin-top: 35px;
    /* Space for icon overlap */
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.4;
}

.eligibility-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Program Overview Section */
.program-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1240px;
    margin: 50px auto 0;
    /* Added top margin for icon space */
    padding-bottom: 20px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 10px;
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #0d6efd;
    /* Blue */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 8px 15px rgba(13, 110, 253, 0.2);
    z-index: 2;
    /* Above connector */
}

.process-step-number {
    position: absolute;
    top: 28px;
    right: -15px;
    width: 28px;
    height: 28px;
    background-color: #B7CDFF;
    /* Light Green */
    color: #333;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    /*    border: 2px solid #fff;*/
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.process-title {
    font-size: 0.90rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    padding: 0 10px;
}

.process-connector {
    flex-grow: 1;
    height: 2px;
    background-image: linear-gradient(to right, #000 60%, transparent 40%);
    background-size: 10px 100%;
    margin-top: 40px;
    /* Center with 80px icon */
    position: relative;
    z-index: 1;
    min-width: 20px;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 9px solid #212529;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}


/* Responsive Program Steps */
@media (max-width: 991px) {
    .program-steps-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        width: 100%;
        max-width: 320px;
        margin-bottom: 20px;
    }

    /* Vertical line for mobile */
    .process-step::after {
        content: '';
        display: block;
        width: 2px;
        height: 30px;
        background-color: #ccc;
        margin: 10px auto;
    }

    .process-step:last-child::after {
        display: none;
    }
}


/* Your Role as Partner Section */
.role-card {
    background-color: #F8F9FA;
    border-radius: 12px;
    padding: 60px 25px 35px;
    /* Increased top padding */
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    margin-top: 45px;
    /* Increased margin top */
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-family: 'Inter', sans-serif !important;
    /* Force Inter */
}

.role-card * {
    font-family: 'Inter', sans-serif !important;
    /* Force Inter on children */
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.role-icon-wrapper {
    width: 68px;
    /* Larger icon circle */
    height: 68px;
    background-color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    position: absolute;
    top: -34px;
    /* Half of height */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.role-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 25px;
    margin-top: 20px;
    /* More space from icon */
}

.role-list {
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    counter-reset: role-counter;
}

.role-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    font-weight: 400;
    counter-increment: role-counter;
}

.role-list li::before {
    content: counter(role-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #222;
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA and FAQ Section */
#partner-faq-section {
    padding-top: 60px;
    padding-bottom: 80px;
    background-color: #fff;
}

/* CTA Part */
.cta-block {
    margin-bottom: 60px;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    /* Image shows it not too huge, but bold */
    color: #000;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-cta-green {
    display: inline-block;
    background-color: #43A01D;
    /* Adjusted to match image vivid green */
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(67, 160, 29, 0.2);
}

.btn-cta-green:hover {
    background-color: #368516;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(67, 160, 29, 0.3);
}

/* FAQ Part */
.faq-block {
    max-width: 1100px;
    margin: 0 auto;
    /* Center the FAQ block if needed, though image shows left align content inside? No, it looks centered on page but text left. */
}

.faq-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

.faq-list {
    border-top: 1px solid #eee;
    /* Optional top border? Image doesn't clearly show, but clean starts usually have one or just item borders */
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    /* Very light grey */
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #222;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #0d6efd;
    /* Optional hover color */
}

.faq-question i {
    font-size: 0.8rem;
    color: #ccc;
    /* Light grey chevron */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #0d6efd;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
    padding-bottom: 20px;
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-title {
        font-size: 1.3rem;
    }

    .faq-heading {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }
}