/* Custom styles for NACCIMA website */
:root {
    --primary-color: #0056b3;
    --secondary-color: #004494;
    --accent-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --text-light: #6c757d;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    /* font-family: var(--font-main); */
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    color: var(--primary-color);
    background-color: #fff;
    border-color: #fff;
}

.section-padding {
    padding: 5rem 0;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: #fff;
    opacity: 0.8;
    transition: var(--transition);
}

.top-bar a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.4s ease-in-out;
    background-color: transparent;
    width: 100%;
    z-index: 1030;
}

/* At top: nav in document flow (block with rest of content) - all pages */
#mainNav.nav-in-flow {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: block;
}

/* When nav is fixed (scrolled), reserve space so content is not hidden */
body.nav-is-fixed {
    padding-top: 72px;
}
body.page-home.nav-is-fixed .hero-slider .slide .container {
    padding-top: 0;
}

/* Initial state - transparent (index/home) */
#mainNav {
    background-color: transparent !important;
    transition: all 0.4s ease-in-out;
    height: 120px;
}

/* Inner pages (non-index): at top = white floating nav */
body.page-inner #mainNav:not(.scrolled) {
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 0.75rem 0;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
body.page-inner #mainNav:not(.scrolled) .nav-link,
body.page-inner #mainNav:not(.scrolled) .navbar-toggler {
    color: #333333 !important;
}
body.page-inner #mainNav:not(.scrolled) .join-btn {
    border: 2px solid #00A758 !important;
    background: transparent !important;
    color: #00A758 !important;
}
body.page-inner #mainNav:not(.scrolled) .join-btn:hover {
    background: #00A758 !important;
    color: #ffffff !important;
}
body.page-inner #mainNav:not(.scrolled) .contact-btn {
    background: #00A758 !important;
    color: #ffffff !important;
}
body.page-inner #mainNav:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 37, 41, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
body.page-inner #mainNav:not(.scrolled) .mobile-join-btn,
body.page-inner #mainNav:not(.scrolled) .mobile-contact-btn {
    color: #333;
}
body.page-inner #mainNav:not(.scrolled) .mobile-join-btn {
    border-color: #00A758;
    color: #00A758;
}
body.page-inner #mainNav:not(.scrolled) .mobile-contact-btn {
    background: #00A758;
    color: #fff;
}

/* Scrolled state - glass overlaid effect (glassmorphism) */
#mainNav.scrolled {
    background-color: rgba(255, 255, 255, 0.65) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset, 0 2px 12px rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset, 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

/* Override theme backgrounds when scrolled - same glass effect */
#mainNav.scrolled.navbar-dark-transparent-theme,
#mainNav.scrolled.navbar-light-blue-theme,
#mainNav.scrolled.navbar-dark-theme,
#mainNav.scrolled.navbar-light-theme {
    background-color: rgba(255, 255, 255, 0.65) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset, 0 2px 12px rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset, 0 2px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

/* Navigation brand/logo */
.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease-in-out;
}

#mainNav.scrolled .navbar-brand img {
    height: 40px;
}

/* Navigation links */
.navbar-nav {
    margin-left: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    color: var(--White, #FFF);
    font-family: 'Inter', sans-serif !important;

/* Desktop/Label 1-medium 14px */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
    position: relative;
    transition: all 0.3s ease;
}
.contact-btn {
    border-radius: 10px !important;
    background: var(--Colors-Pimary-pimary-500, #00A758);
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-transform: none !important;
    line-height: 16.8px;
    padding:12px 20px !important;
}
.join-btn {
    border-radius: 10px !important;
    background: var(--Colors-Pimary-pimary-500, transparent);
    border: 1px solid var(--Colors-Pimary-pimary-500, #ffffff);
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-transform: none !important;
    line-height:  16.8px;
    padding:12px 20px !important;
}

/* Special styling for light navbar slides */
.navbar-light-blue-theme .join-btn {
    border: 2px solid #00A758 !important;
    background: white !important;
    color: #00A758 !important;
}

.navbar-light-blue-theme .join-btn:hover {
    background: #00A758 !important;
    color: white !important;
}

/* Active and hover states */
/* .nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
} */

/* Scrolled state link colors - override all theme classes */
#mainNav.scrolled .nav-link,
#mainNav.scrolled.navbar-dark-transparent-theme .nav-link,
#mainNav.scrolled.navbar-light-blue-theme .nav-link,
#mainNav.scrolled.navbar-dark-theme .nav-link,
#mainNav.scrolled.navbar-light-theme .nav-link {
    color: #333333 !important;
    font-family: 'Inter', sans-serif !important;
}

#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active {
    color: #333333 !important;
    font-family: 'Inter', sans-serif !important;
    
}

#mainNav.scrolled .navbar-toggler,
#mainNav.scrolled.navbar-dark-transparent-theme .navbar-toggler,
#mainNav.scrolled.navbar-light-blue-theme .navbar-toggler,
#mainNav.scrolled.navbar-dark-theme .navbar-toggler,
#mainNav.scrolled.navbar-light-theme .navbar-toggler {
    color: #333333 !important;
}

/* Scrolled state button styles - override all theme classes */
#mainNav.scrolled .join-btn,
#mainNav.scrolled.navbar-dark-transparent-theme .join-btn,
#mainNav.scrolled.navbar-light-blue-theme .join-btn,
#mainNav.scrolled.navbar-dark-theme .join-btn,
#mainNav.scrolled.navbar-light-theme .join-btn {
    /* background: #ffffff !important; */
    color: #00A758 !important;
    padding: 12px 20px !important;
}

#mainNav.scrolled .join-btn:hover {
    background: #00A758 !important;
    color: #ffffff !important;
}

#mainNav.scrolled .contact-btn,
#mainNav.scrolled.navbar-dark-transparent-theme .contact-btn,
#mainNav.scrolled.navbar-light-blue-theme .contact-btn,
#mainNav.scrolled.navbar-dark-theme .contact-btn,
#mainNav.scrolled.navbar-light-theme .contact-btn {
    background: #00A758 !important;
    color: #ffffff !important;
    padding:12px 20px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 16.8px !important;
    text-transform: none !important;
    border-radius: 10px !important;
    background: var(--Colors-Pimary-pimary-500, #00A758);
    color: var(--White, #FFF);
}

/* Dropdown menu */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(0, 86, 179, 0.05);
    color: var(--primary-color);
}

/* Mobile menu button */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

/* Hide toggle button on desktop (Bootstrap default for navbar-expand-lg) */
.navbar-expand-lg .navbar-toggler,
#mainNav.navbar-expand-lg .navbar-toggler {
    display: none;
}

/* Show toggle button only on mobile */
@media (max-width: 991.98px) {
    .navbar-expand-lg .navbar-toggler,
    #mainNav.navbar-expand-lg .navbar-toggler {
        display: flex !important;
    }
}

#mainNav.scrolled .navbar-toggler {
    color: var(--dark-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Mobile menu */
@media (max-width: 991.98px) {
    /* Ensure container is flexbox for proper layout */
    #mainNav .container {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-collapse {
        background: #121212 !important;
        padding: 80px 0 36px 0 !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        flex-direction: column !important;
        gap: 36px !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        z-index: 1040;
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        display: flex !important;
    }
    
    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100%;
    }
    
    .nav-link {
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 1.1 !important;
        padding: 20px 24px !important;
        width: 100%;
        display: block;
        text-align: left;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #ffffff !important;
        border-bottom: 1px solid #00A758 !important;
    }
    
    .nav-item .join-btn,
    .nav-item .contact-btn {
        display: none !important;
    }
    
    .mobile-menu-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 24px;
        padding: 0 24px;
        width: 100%;
    }
    
    .mobile-join-btn {
        border: 1px solid #00A758 !important;
        background: transparent !important;
        color: #00A758 !important;
        padding: 20px 24px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        border-radius: 4px !important;
        width: 100% !important;
        text-align: center;
    }
    
    .mobile-join-btn:hover {
        background: #00A758 !important;
        color: #ffffff !important;
    }
    
    .mobile-contact-btn {
        background: #00A758 !important;
        color: #ffffff !important;
        padding: 20px 24px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        border-radius: 4px !important;
        width: 100% !important;
        text-align: center;
        border: none !important;
    }
    
    .mobile-contact-btn:hover {
        background: #008a4a !important;
        color: #ffffff !important;
    }
    
    .dropdown-menu {
        margin-left: 1rem;
        margin-top: 0.25rem;
        border-left: 2px solid var(--primary-color);
    }
    
    .navbar-toggler,
    #mainNav.navbar-expand-lg .navbar-toggler,
    .navbar.navbar-expand-lg .navbar-toggler,
    #mainNav .navbar-toggler,
    button.navbar-toggler {
        display: flex !important;
        order: 2;
        z-index: 1050;
        position: relative;
        border: none !important;
        padding: 0.5rem;
        align-items: center;
        justify-content: center;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    
    .navbar-brand {
        order: 1;
        z-index: 1050;
        position: relative;
    }
    
    /* Custom toggle icon - hamburger to X animation */
    .navbar-toggler .navbar-toggler-icon,
    #mainNav .navbar-toggler .navbar-toggler-icon,
    button.navbar-toggler .navbar-toggler-icon,
    span.navbar-toggler-icon {
        background-image: none !important;
        position: relative !important;
        width: 24px !important;
        height: 2px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #ffffff !important;
        box-shadow: 
            0 8px 0 0 #ffffff,
            0 -8px 0 0 #ffffff !important;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    /* When menu is open, transform to X */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
        box-shadow: none;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
    }
}

/* Slider Dots */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: end;
    padding: 0 15px;
    margin-left: 80px !important;
}



.slider-dot.active {
    background-color: #00A758;
    transform: scale(1.3);
    box-shadow: 0 0 5px rgba(0, 167, 88, 0.7);
}

/* Ensure dots are visible on mobile */
@media (max-width: 767px) {
    .slider-controls {
        bottom: 20px;
        justify-content: center !important;
        margin-right: 0 !important;
    }
    
    .slider-dots {
        padding: 6px 12px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        transform: scale(1.2);
    }
}




/* Slider Styles */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
    display: none; /* Hide by default */
    pointer-events: none; /* Prevent interaction with hidden slides */
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    display: block; /* Show active slide */
    pointer-events: auto; /* Enable interaction with active slide */
}

/* Ensure smooth transitions */
.slide {
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Ensure slide content is properly positioned */
.slide .container {
    height: 100%;
    position: relative;
    z-index: 2;
    padding-top: 100px; /* Space for navbar */
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    animation: zoomInOut 2.8s ease-in-out infinite;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

.slide:not(.active) .slide-overlay {
    opacity: 0;
    pointer-events: none;
}

.dark-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.light-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    /* 50% {
        transform: scale(1.05);
    } */
    100% {
        transform: scale(1.1);
    }
}

/* Navbar Theme Classes */
.navbar-light-theme {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-light-theme .nav-link {
    color: #333 !important;
}

.navbar-light-theme .navbar-toggler {
    color: #333;
}

.navbar-dark-theme {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.navbar-dark-theme .nav-link {
    color: #fff !important;
}

.navbar-dark-theme .navbar-toggler {
    color: #fff;
}

/* Dark transparent navbar - for slides 1, 3, 4 */
.navbar-dark-transparent-theme {
    background-color: rgba(0, 0, 0, 0.15) !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.navbar-dark-transparent-theme .nav-link {
    color: #fff !important;
}

.navbar-dark-transparent-theme .navbar-toggler {
    color: #fff;
}

/* Light blue navbar - for slide 2 (agricultural) */
.navbar-light-blue-theme {
    background-color: rgba(255, 255, 255, 0.15) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: none;
}

.navbar-light-blue-theme .nav-link {
    color: #333 !important;
    font-family: inter ;
}

.navbar-light-blue-theme .navbar-toggler {
    color: #333;
}


/* Who We Are Section Styles */
.who-we-panel {
    border: 1px solid #e0e0e0;
    background: #ffffff;
    padding: 18px;
    border-radius: 6px;
}

.who-we-are .section-title {
    color: var(--Black, #121212);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px;
    position: relative;
    padding-bottom: 1rem;
}

.who-we-are .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #00A758;
    border-radius: 2px;
}

.who-we-are .lead {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.who-we-are p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.who-we-are .img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.who-we-are .img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}


.who-we-are .img-container:hover img {
    transform: scale(1.02);
}

.who-we-are .president-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    z-index: 2;
}
.who-we-are .president-info h5 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.who-we-are .president-info p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Mission/Vision Cards */
.mission-vision-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #00A758;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-vision-card i {
    color: #00A758;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.mission-vision-card h5 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.mission-vision-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Button Styles */
.btn-learn-more {
    background-color: #00A758;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
}

.btn-learn-more:hover {
    background-color: #008a4a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 167, 88, 0.3);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .who-we-are {
        padding: 3.5rem 0;
    }
    
    .who-we-are .img-container {
        margin-bottom: 2rem;
    }
    
    .who-we-are .president-info {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .who-we-are {
        text-align: left;
    }
    
    /* Force left alignment on mobile */
    .who-we-are .text-center {
        text-align: left !important;
    }
    
    .who-portrait {
        margin-bottom: 0;
        width: 100%;
        display: block;
    }
    
    .who-portrait-img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }
    
    .who-portrait-badge {
        position: relative;
        bottom: 0;
        width: 100%;
        padding: 10px 15px;
        border-radius: 0;
        min-width: 100%;
        box-shadow: none;
    }
    
    .who-name {
        font-size: 14px;
    }
    
    .who-role {
        font-size: 12px;
    }
    
    .who-heading {
        font-size: 18px;
        text-align: left;
        
        margin-bottom: 4rem;
    }
    
    .who-body p {
        text-align: left;
        font-size: 16px;
        line-height: 1.6;
        font-family: "inter", sans-serif !important;
    }
    
    .who-body .btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    .mission-vision-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .who-we-are {
        padding: 2.5rem 0;
    }
    
    .who-we-are .president-info {
        padding: 1rem;
    }
    
    .btn-learn-more {
        width: 100%;
        text-align: center;
    }
}

/* What We Are Section */
.what-we-are {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

* Feature Cards */
.feature-card {
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.feature-card img {
  height: 273px;
  align-self: stretch;
  object-fit: cover;
  
}

.feature-card p {
    color:  #121212;
    height: 100px;
    font-size: 13.5px;
}
/* Individual Background Colors */
.feature-card.membership {
  background: #eaf7ef;
}

.feature-card.events {
  background: #f6eefb;
}

.feature-card.trade {
  background: #eef7fb;
}

.feature-card.resources {
  background: #fff0ef;
}

/* Optional: Remove hover effect */
.feature-card:hover {
  transform: none;
  box-shadow: none;
  cursor: default;
}

.section-divider {
    width: 100%;
    height: 2px;
    background: #887d7f;
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-description {
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Values Slider */
.values-slider-container {
    position: relative;
    padding: 0 15px;
}

.values-slider {
    display: flex;
    transition: transform 0.5s ease;
    margin-bottom: 2rem;
}

.value-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    text-align: center;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 10px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.value-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.value-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

.slider-prev,
.slider-next {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #4a5568;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: #e31837;
    color: white;
    transform: scale(1.1);
}





/* Responsive Styles */
@media (min-width: 768px) {
    .values-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        transform: none !important;
    }
    
    .value-card {
        flex: 1;
        margin: 0;
    }
    
    .slider-navigation {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.slider-dot.active {
    background: #00853E;
    transform: scale(1.2);
}

.hero-title {
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 800px;
    color: #ffffff;
}

/* Agricultural slide specific styling */
.hero-title-green {
    color: #00A758 !important;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.0rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    width: 680px;
    color: #ffffff;
}

.hero-subtitle-dark {
    color: #333 !important;
    opacity: 1;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.green-outline-btn {
    border: 2px solid #00A758 !important;
    background: white !important;
    color: #00A758 !important;
}

.green-outline-btn:hover {
    background: #00A758 !important;
    color: white !important;
}


.who-we-panel {
    padding: 18px;
    border-radius: 6px;
    align-items: center;
    gap: 18px;
}

.who-we-panel .portrait-wrap {
    width: 120px;
    flex: 0 0 120px;
}

.who-we-panel .portrait-wrap .portrait {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.who-we-panel .portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portrait-ribbon {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #0ea34a;
    color: #fff;
    padding: 8px 8px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.portrait-ribbon .name {
    font-size: 13px;
    font-weight: 700;
}

.portrait-ribbon .title {
    font-size: 11px;
    opacity: 0.95;
}

.who-we-panel .who-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.who-we-panel .who-desc {
    color: #333;
    line-height: 1.45;
    margin-bottom: 8px;
}

.btn-black {
    background: #000;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .who-we-panel {
        flex-direction: column;
        align-items: flex-start;
    }
    .who-we-panel .portrait-wrap {
        width: 100%;
        flex: 0 0 auto;
    }
    .who-we-panel .who-title {
        font-size: 20px;
    }

    .btn-black {
    
    width: 100%;
}
}

/* When .who-we-panel is used with Bootstrap .row, let the row handle layout; ensure vertical centering */
.who-we-panel.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.who-we-panel .portrait-wrap {
    padding-right: 16px;
}
/* Cleaned Who We Are panel styles */


.container-panel {
    max-width: 1100px;
    margin: 0 auto;
}

.who-portrait {
    display: inline-block;
    position: relative;
    margin-bottom: 60px;
    margin-top: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
}

.who-portrait-container {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.who-portrait-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    background: #ffffff;
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    object-position: center top;
}

.who-portrait-divider {
    width: 100%;
    height: 4px;
    background: #ff0000;
    display: block;
    flex: 0 0 6px;
}

.who-portrait-badge {
    background: #00A758;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    flex: 0 0 auto;
    min-height: 80px;
    gap: 20px;
}

.who-badge-left {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #ffffff;
    text-align: left;
    white-space: nowrap;
}

.who-role {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    opacity: 1;
    text-align: center;
}


.who-badge-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    flex-shrink: 0;
}

.who-honors-line1,
.who-honors-line2 {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
}

.who-honors-line1 {
    margin-bottom: 2px;
}

.who-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000;
    line-height: 1.3;
}

.who-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    margin-top: 0;
    padding-top: 0;
}

.who-body p {
    color: #000000;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    margin-bottom: 12px;
}

.who-body p:last-of-type {
    margin-bottom: 20px;
}

.who-body .btn {
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    padding: 12px;
    align-self: flex-start;
    margin-top: auto;
}
.who-body .btn:hover {
    background-color: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
    box-shadow: none !important;
    cursor: default !important;
}

/* Force correct column behavior inside the who-panel in case other rules conflict */
@media (min-width: 992px) {
    .who-panel .row {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .who-panel .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding-top: 0;
        margin-top: 0;
        display: flex;
        align-items: flex-start;
    }

    .who-panel .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        display: flex;
        align-items: flex-start;
        padding-top: 0;
        margin-top: 0;
    }
    
    .who-body {
        padding-top: 0;
        margin-top: 0;
    }
    
    .who-portrait {
        margin-top: 0;
        padding-top: 0;
    }
}
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.5rem;
        color: #ffffff;
    }
    .hero-title-green {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .navbar .btn {
        margin-top: 0.5rem;
        display: inline-block;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .top-bar > .container > div {
        flex-direction: column;
    }
    
    .top-bar .me-4 {
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 8rem 0 5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
        width: 100%;
        max-width: 350px;
    }
    
    .hero-buttons .btn:not(:last-child) {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        width: 100%;
    }
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Footer */
.footer {
    background: #005C30;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-desktop {
    display: block;
    padding: 64px 10px;
}

.footer-desktop::before {
    content: '';
    position: absolute;
    top: -2px;
    right: 80px;
    width: 327.644px;
    height: 355px;
    background: url('../assets/new\ naccima\ logo\ updated\ alone\ 2.svg') no-repeat;
    background-size: contain;
    opacity: 0.15;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.footer-mobile {
    display: none;
}

.footer-desktop .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-desktop .footer-brand {
    display: flex;
    gap: 12px;
    align-items: start;
    max-width: 400px;
}

.footer-desktop .footer-logo {
    height: 64px;
    width: 59.068px;
    flex-shrink: 0;
}

.footer-desktop .footer-brand p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    width: 300px;
    margin-top: 10px;
}

.footer-desktop .footer-links {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.footer-desktop .footer-column {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.footer-desktop .footer-column a {
    font-size: 12.5px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-desktop .footer-column a:hover {
    opacity: 0.8;
}

.footer-desktop .footer-newsletter {
    border: 0.4px solid #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 300px;
}

.footer-desktop .footer-newsletter p {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.footer-desktop .newsletter-input {
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.footer-desktop .newsletter-input input {
    flex: 1;
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    color: #B2B2B2;
    outline: none;
    width: 100px;
}

.footer-desktop .newsletter-input button {
    background: #00A758;
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
}

.footer-desktop .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    margin: 24px 0;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.footer-desktop .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-desktop .footer-bottom p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

.footer-desktop .social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-desktop .social-links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-desktop .social-links img {
    width: 100%;
    height: 100%;
}

/* Mobile Responsive */
@media (max-width: 393px) {
    .nav-header {
        padding: 24px;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .title-banner {
        padding: 24px;
    }
    
    .title-banner h1 {
        font-size: 28px;
    }
    
    .main-content {
        padding: 0 24px 32px;
    }
    
    .contact-info-col {
        display: none;
        width: 100%;
    }
    
    .contact-form-col {
        width: 100%;
        padding: 0;
        margin-bottom: 24px;
        height: 100%;
    }
    
    .contact-form-section {
        gap: 24px;
    }
    
    .contact-form-section h2 {
        font-size: 24px;
        line-height: 1.1;
    }
    
    .form-description {
        font-size: 20px;
        line-height: 1.5;
    }
    
    .contact-form {
        padding: 0;
        background: transparent;
        gap: 24px;
    }
    
    .form-input,
    .form-textarea {
        background: #ffffff;
        border: 1px solid #B2B2B2;
        padding: 22px 16px;
        font-size: 16px;
    }
    
    .form-textarea {
        padding-bottom: 96px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .btn-submit {
        width: 100%;
        height: 64px;
        padding: 20px 24px;
        font-size: 14px;
        line-height: 1.1;
    }
    
    .mobile-contact-info {
        display: block;
    }
    
    /* Mobile Footer */
    .footer-desktop {
        display: none;
    }
    
    .footer-mobile {
        display: block;
        padding: 24px;
        position: relative;
    }
    
    .footer-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: -55px;
        bottom: 0;
        background: url('https://www.figma.com/api/mcp/asset/96df9f3b-b183-4e65-aa48-1e3efa7d2912') no-repeat;
        background-size: 300px;
        background-position: center right;
        opacity: 0.1;
        pointer-events: none;
        z-index: 0;
    }
    
    .footer-mobile > * {
        position: relative;
        z-index: 1;
    }
    
    .footer-newsletter-mobile {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .footer-newsletter-mobile p {
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
        margin: 0 0 16px 0;
        text-align: center;
    }
    
    .newsletter-input-mobile {
        background: #ffffff;
        border-radius: 8px;
        display: flex;
        overflow: hidden;
    }
    
    .newsletter-input-mobile input {
        flex: 1;
        border: none;
        padding: 12px 16px;
        font-size: 12px;
        color: #B2B2B2;
        outline: none;
        width: 87%;
    }
    
    .newsletter-input-mobile button {
        background: #00A859;
        color: #ffffff;
        border: none;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        white-space: nowrap;
        width: 74px !important;
    }
    
    .footer-links-mobile {
        display: flex;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .footer-column-mobile {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-column-mobile a {
        font-size: 14px;
        font-weight: 400;
        color: #E0FFE0;
        text-decoration: none;
    }
    
    .footer-brand-mobile {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 24px;
    }
    
    .footer-logo-mobile {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }
    
    .footer-brand-mobile p {
        font-size: 14px;
        font-weight: 400;
        color: #E0FFE0;
        line-height: 1.4;
        margin: 0;
    }
    
    .footer-bottom-mobile {
        /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
        padding-top: 16px;
    }
    
    .social-links-mobile {
        display: flex;
        gap: 16px;
        justify-content: flex-start;
        margin-bottom: 12px;
    }
    
    .social-links-mobile a {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
    }
    
    .social-links-mobile svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-divider-mobile {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin: 12px 0;
    }
    
    .footer-copyright {
        font-size: 13px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.6);
        text-align: left;
        margin: 0;
    }
}

@media (min-width: 394px) and (max-width: 991px) {
    .nav-header {
        padding: 24px 48px;
    }
    
    .title-banner {
        padding: 24px 48px;
    }
    
    .main-content {
        padding: 64px 48px 184px;
    }
    
    .contact-info-col {
        margin-bottom: 32px;
    }
    
    .footer {
        padding: 64px 48px;
    }
}


/* Our Services section */
.our-services .section-title {
    font-size: 1.25rem;
    color: #212529;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem 0.75rem 1rem 0.75rem;
    box-shadow: 0 6px 20px rgba(14, 163, 74, 0.04);
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.service-card h5 {
    font-weight: 700;
}

.service-card p {
    color: #6c757d;
}

.service-card1 {
    background: #38424A1A;
    border-radius: 12px;
    padding: 0.75rem 0.75rem 1rem 0.75rem;
    box-shadow: 0 6px 20px rgba(14, 163, 74, 0.04);
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.service-card1 h5 {
    font-weight: 700;
}

.service-card1 p {
    color: #6c757d;
}

.service-badge {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.service-badge i { font-size: 16px; }

.service-card.membership { background: #fdecef; }
.service-card.research { background: #e9f7ef; }
.service-card.capacity { background: #eef6fb; }
.service-card.policy { background: #eef6fb; }
.service-card.trade { background: #f4f4f6; }
.service-card.investment { background: #fff1f1; }

.service-card.policy.sector-mining {
    background: rgba(56, 66, 74, 0.1);
    border-radius: 8px;
}

.service-card.policy.sector-infra {
    background: rgba(218, 0, 1, 0.1);
    border-radius: 8px;
}

.sector-icon-dark {
    background: #38424A !important;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sector-icon-red {
    background: #DA0001 !important;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-media img {
    width: 350px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.service-graphic {
    height: 84px;
    border-radius: 12px;
    width: 100%;
}
.Advo {
    height: 205px;
    border-radius: 12px;
    width: 100%;
}

@media (max-width: 991.98px) {
    .service-media img {
        height: 160px;
    }
}

/* Mobile Styles for Our Services Section */
@media (max-width: 767.98px) {
    .our-services {
        padding: 2rem 0 !important;
    }
    
    .our-services .section-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    
    /* Reset desktop layout for mobile */
    .our-services .d-lg-flex {
        display: block !important;
    }
    
    .our-services .me-3,
    .our-services .w-lg-25,
    .our-services .w-lg-75 {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .our-services .row {
        margin: 0 !important;
    }
    
    .our-services .col-lg-8,
    .our-services .col-lg-4 {
        width: 100% !important;
        padding: 0 !important;
    }
    
    /* Service Card Styling */
    .service-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    /* Ensure proper stacking */
    .service-card.Advo {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        padding: 1.25rem !important;
        margin-top: 1rem !important;
    }
    
    /* Service Badge */
    .service-badge {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem !important;
    }
    
    .service-badge i {
        font-size: 18px;
    }
    
    .service-badge img {
        width: 20px;
        height: 20px;
    }
    
    /* Service Card Titles */
    .service-card h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.75rem !important;
        margin-top: 0 !important;
    }
    
    /* Service Card Text */
    .service-card p {
        font-size: 0.875rem;
        line-height: 1.5;
        color: #6c757d;
        margin-bottom: 1rem !important;
    }
    
    /* Service Images */
    .service-media {
        margin-top: 1rem !important;
        width: 100%;
    }
    
    .service-media img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }
    
    .service-graphic {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* Background Colors for Mobile */
    .service-card.membership {
        background: #fce8ec !important;
    }
    
    .service-card.research {
        background: #e8f5f0 !important;
    }
    
    .service-card.capacity {
        background: #e8f0f7 !important;
    }
    
    .service-card.policy {
        background: #e8f0f7 !important;
    }
}

@media (max-width: 575.98px) {
    .service-card {
        padding: 1rem;
    }
    .service-media img {
        height: auto;
        min-height: 180px;
    }
}

/* Slightly larger grid gaps to match the design feel */
.our-services .row.g-4 {
    gap: 1.25rem;
}

/* Chamber News styles */
.chamber-news .section-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.chamber-news a {
    color: #00A758;
    font-weight: 600;
    text-decoration: none;
}

/* Callout cards (join/register/events) */
.callouts .callout-card {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #E6F0F9;
}
.callouts .callout-card1 {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}


.callout-card .callout-badge {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0fbf4;
    border-radius: 8px;
}

.callout-card .btn {
      border-radius: 4px;
      width: 60%;
      font-size:11px;
}

.callout-card1 .btn {
      border-radius: 4px;
      width: 60%;
      font-size:11px;
}

@media (max-width: 991px) {
    .callout-card .btn { 
          width: 100%;
    }
    .callout-card1 .btn { 
          width: 100%;
    }
}
.callout-badge.bg-blue { background: #e9f0fb; }
.callout-badge.bg-outline { background: transparent; border: 1px solid #ddd; }

.callout-card h5 { font-weight: 700; margin-bottom: 0.25rem; }
.callout-card p { margin-bottom: 0.75rem; color: #6c757d; }

@media (max-width: 767.98px) {
    .callouts .row { gap: 1rem; }
}

.news-feature img {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.dele{
    background-color: #f1f5f8;
}
.news-feature .card-body h5 {
    font-size: 1.125rem;
    font-weight: 700;
}
.news-card {
    height: 100%;
    margin-bottom: 1.5rem;
    border: none;
    background: #f1f5f8 !important;
}
.news-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.news-card .card-body h6 {
    font-size: 0.9rem;
    font-weight: 600;
}

.news-card .card-body p {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.news-card .card-body span{
    font-size: 12px;
    font-weight: 600;
}

/* Chamber News Cards in col-lg-5 - Match Figma Design */
.chamber-news .col-lg-5 .news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    background: transparent;
}

.chamber-news .col-lg-5 .news-card .card-img-top {
    width: 100%;
    height: 135px;
    
    object-fit: cover;
    object-position: center;
    border-radius: 8px 8px 0 0;
    display: block;
    flex: 1 0 auto;
}

.chamber-news .col-lg-5 .news-card .card-body {
    background: #F4F4F4;
    padding: 16px;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 0 0 auto;
}

.chamber-news .col-lg-5 .news-card .card-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: #121212;
    margin: 0;
    padding: 0;
}

.chamber-news .col-lg-5 .news-card .card-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: #8C8C8C;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
    .news-feature img { height: 200px; }
    .news-card img { height: 200px; }
    
    /* Chamber News Mobile Styles */
    .chamber-news .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .chamber-news .d-flex {
        margin-bottom: 1.5rem;
        flex-direction: column;
    }
    
    .chamber-news .row {
        display: flex !important;
        flex-direction: column;
        margin: 0;
        gap: 1.5rem;
    }
    
    .chamber-news .col-lg-7,
    .chamber-news .col-lg-5,
    .chamber-news .col-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }
    
    .chamber-news .news-feature,
    .chamber-news .news-card {
        margin-bottom: 0;
    }
    
    .chamber-news .news-feature .card-body,
    .chamber-news .news-card .card-body {
        padding: 1.25rem 0 0.5rem;
    }
    
    .chamber-news .news-feature h5,
    .chamber-news .news-card h6 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .chamber-news .news-feature p,
    .chamber-news .news-card p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
        line-height: 1.5;
    }
    
    .chamber-news .news-feature img,
    .chamber-news .news-card img {
        border-radius: 8px;
        height: 220px;
        width: 100%;
        object-fit: cover;
    }
    
    .chamber-news .view-all {
        display: block;
        text-align: right;
        margin-top: 1rem;
    }

    .view3{
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        text-align: center;
        border: 1px solid #00A758;
        border-radius: 4px;
    }
}

@media (max-width: 575.98px) {
    .news-feature img { height: 200px; }
    .news-card img { height: 120px; }
}

/* Upcoming Events - Desktop View Matching Figma */
@media (min-width: 768px) {
    .upcoming-events .row.g-4 {
        gap: 12px;
        margin-left: 0;
        margin-right: 0;
        display: flex;
        flex-wrap: nowrap;
    }

    .upcoming-events .row.g-4 > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex: 0 0 25%;
        max-width: 25%;
        min-width: 0;
    }

    @media (min-width: 992px) {
        .upcoming-events .row.g-4 {
            gap: 12px;
        }
        
        .upcoming-events .row.g-4 > [class*="col-lg-3"] {
            flex: 0 0 25% !important;
            max-width: 25% !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
    }

.upcoming-events .event-card {
        background: #E6F6EE;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
    height: 100%;
        overflow: hidden;
        position: relative;
    }

    .upcoming-events .event-media {
        position: relative;
        padding: 4px;
        margin: 0;
        border-radius: 0;
        overflow: visible;
    }

    .upcoming-events .event-image {
        width: 100%;
        height: 273px;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
        display: block;
    }

    .upcoming-events .event-date {
        position: absolute;
        left: 24px;
        top: 179px;
        background: #ffffff;
        border-radius: 16px;
        padding: 2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 60px;
    }

    .upcoming-events .event-date-header {
        background: #00A758;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.2;
        padding: 4px 12px;
        border-radius: 14px 14px 0 0;
        width: 100%;
        text-align: center;
    }

    .upcoming-events .event-date-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: 0 12px 4px;
        width: 100%;
    }

    .upcoming-events .event-date-number {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.2;
        color: #121212;
    }

    .upcoming-events .event-date-year {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
        color: #B2B2B2;
    }

    .upcoming-events .event-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px 24px;
        flex: 1;
    }

    .upcoming-events .event-title {
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.2;
        color: #121212;
        margin: 0;
        padding: 0;
    }

    .upcoming-events .event-location {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .upcoming-events .location-icon {
        width: 32px;
        height: 42px;
        flex-shrink: 0;
    }

    .upcoming-events .location-text {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.2;
        color: #121212;
        flex: 1;
    }

    .upcoming-events .event-description {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 300;
        line-height: 28px;
        color: #121212;
        margin: 0;
        padding: 0;
    }

    .upcoming-events .event-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 12px 16px 12px 24px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.2;
        color: #121212;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .upcoming-events .event-button:hover {
        background: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        color: #121212;
    }

    .upcoming-events .button-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}

.view2 {
    font-size: 16px;
    font-weight: 600;
    color: #00A758;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view2:hover {
    color: #008a4a;
    text-decoration: none;
}

/* Mobile styles remain unchanged */
@media (max-width: 767.98px) {
    .upcoming-events .event-card {
        background: #f7fffb;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 6px 18px rgba(6, 120, 70, 0.04);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
}

.event-media { 
    position: relative;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

    .event-media img { 
    width: 100%; 
    height: 160px; 
    object-fit: cover; 
    display: block;
    transition: transform 0.3s ease;
}

.event-card:hover .event-media img {
    transform: scale(1.03);
}

.event-date {
    position: absolute;
    top: 100px;
    left: 32px;
    padding: 10px 4px;
    border-radius: 8px;
    font-weight: 700;
    height: 73px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 50px;
    }
}

@media (max-width: 575.98px) {
.spot{
    font-size: 16px;
}
.our_part{
    font-size: 16px;
}
}



.nov {
    font-size: 14px;
    font-weight: 700;
    background: #00A758;
    padding: 5px 12px;
    border-radius: 5px 5px 0 0;
    color: white;
    display: block;
    line-height: 1;
}

.nov2 {
    margin-top: 10px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.nov3 {
    font-size: 10px;
    font-weight: 500;
    color: #6d6d6d;
    line-height: 1;
    margin-top: 2px;
}

.card-body {
    padding: 0.5rem 0;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
    line-height: 1.3;
}

.location-text {
    font-size: 12px;
    font-weight: 600;
    color: #030303;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.location-text i {
    margin-right: 5px;
    color: #00A758;
}

.reg-button {
    background: #ffffff;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    padding: 8px 12px;
    text-decoration: none;
    width: 100%;
    border: 1px solid #00A758;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.reg-button:hover {
    background: #00A758;
    color: white;
    text-decoration: none;
}

.explore_button {
    color: #00A758;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.explore_button:hover {
    color: #008a4a;
    text-decoration: none;
}

.explore_button1 {
    color: #00A758;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    margin-left: 0% !important;
    padding-left: 0% !important;
    transition: color 0.3s ease;
}

.explore_button1:hover {
    color: #008a4a;
    text-decoration: none;
}

.evei{
    width: 100%;
}
@media (min-width: 992px) {
    .event-media img { 
        height: 180px; 
    }
    
    .upcoming-events .event-card {
        padding: 0.4rem;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .location-text {
        font-size: 13px;
    }
}

/* Trade & Investment Spotlight */
.spotlight-card { min-height: 120px; display:flex; flex-direction:column; justify-content:flex-start; }
.spot-icon { width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center; border-radius:8px; }
.bg-light-1 { background: #eaf7ef; }
.bg-light-2 { background: #fff4ea; }
.bg-light-3 { background: #eef6fb; }
.bg-light-4 { background: #faf0fb; }
.bg-purple { background: #f2d9ff; color:#6a2b9d; }

@media (max-width: 767.98px) {
    .spotlight-card.bg-light-1 { background: #eaf7ef !important; }
    .spotlight-card.bg-light-2 { background: #fff4ea !important; }
    .spotlight-card.bg-light-3 { background: #eef6fb !important; }
    .spotlight-card.bg-light-4 { background: #faf0fb !important; }

    .event-media img { 
        height: 140px;
        width: 100%;
        object-fit: cover;
        display: block;
    }
    
    .upcoming-events .event-card { 
        padding: 0.75rem;
        margin: 0;
        height: auto !important;
        min-height: auto !important;
        display: flex;
        flex-direction: column;
    }
    
    /* Upcoming Events Slider Styles - PEEK EFFECT */
    .upcoming-events-slider {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .upcoming-events-slider .slick-list {
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
    }
    
    .upcoming-events-slider .slick-list .slick-track {
        overflow: visible !important;
        display: flex !important;
    }
    
    .upcoming-events-slider .slick-track {
        display: flex !important;
        align-items: flex-start;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .upcoming-events-slider .slick-slide {
        padding: 0 8px 0 0 !important;
        height: auto !important;
        display: flex !important;
    }
    
    .upcoming-events-slider .slick-slide > div {
        width: 100%;
        height: auto !important;
        display: flex;
    }
    
    .upcoming-events-slider .slick-slide .event-card {
        height: auto !important;
        min-height: auto !important;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    /* HIDE DOTS COMPLETELY */
    .upcoming-events-slider .slick-dots {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        pointer-events: none !important;
    }
    
    /* Ensure the event date is properly positioned on mobile */
    .upcoming-events .event-date {
        left: 16px !important;
        top: 100px !important;
    }
    
    /* Adjust the date styling for better visibility on mobile */
    .upcoming-events .nov {
        padding: 3px 8px;
        font-size: 12px;
    }
    
    .upcoming-events .nov2 {
        margin-top: 5px;
        font-size: 16px;
    }
    
    .upcoming-events .nov3 {
        font-size: 9px;
    }
    
    /* Adjust card content spacing */
    .upcoming-events .card-body {
        padding: 0.75rem 0.5rem 0.75rem 0.5rem !important;
    }
    
    .upcoming-events .card-title {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }
    
    .upcoming-events .location-text {
        font-size: 11px;
    }
    
    .upcoming-events .reg-button {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Partners row */
.our-partners .partner-logos img {
    opacity: 0.95;
    filter: grayscale(0.02);
}

.partner-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

/* Keep title and view-all on one line on smaller widths */
.our-partners .d-flex {
    gap: 12px;
}

@media (max-width: 575.98px) {
    .partner-logo { max-width: 90px; max-height: 48px; }
}

/* Testimonials */
.testimonial { background: #fff; border: 1px solid #e9ecef; height: 100%; }
.testimonial .quote-mark { font-size: 28px; color: #00A758; font-weight: 700; }
.testimonial p { margin-bottom: 0.5rem; }
.dots { display:flex; gap:8px; }
.dot { width: 36px; height: 6px; background:#e6e6e6; border-radius: 4px; display:inline-block; }
.dot.active { background:#00A758; }

@media (max-width: 767.98px) {
    .testimonial { text-align: left; }
}

/* Statistics strip above Our Services */
.stats-strip {
    background: #e9f7ef; /* mint band */
    height: 140px;
}
.stats-strip .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #00A758;
    margin-top: 10px;
}
.stats-strip .stat-label {
    color: #5b6b6b;
    margin-top: 6px;
}

@media (max-width: 575.98px) {
    .stats-strip .stat-number { font-size: 22px; }
    .stats-strip .stat-label { font-size: 12px; }
}

/* Testimonials slider - Desktop View Matching Figma */
@media (min-width: 768px) {
.testimonials-slider {
    position: relative;
    overflow: hidden;
        padding: 0;
}

.testimonials-track {
    display: flex;
        gap: 16px;
    transition: transform 0.45s cubic-bezier(.22,.9,.36,1);
    will-change: transform;
        align-items: stretch;
}

.testimonials-track .testimonial {
    flex: 0 0 22%;
        min-width: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        border: 1px solid #E0E0E0;
    cursor: pointer;
        transition: transform 0.45s cubic-bezier(.22,.9,.36,1), flex-basis 0.45s cubic-bezier(.22,.9,.36,1), box-shadow 0.45s cubic-bezier(.22,.9,.36,1);
    position: relative;
    overflow: hidden;
    background: #fff;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        height: 280px;
        min-height: 280px;
        justify-content: flex-start;
        padding: 20px 18px 18px 18px;
}

.testimonials-track .testimonial .quote-mark {
        font-size: 48px;
    color: #00A758;
    line-height: 1;
        font-weight: 700;
        position: absolute;
        top: 12px;
        left: 16px;
        z-index: 1;
        pointer-events: none;
        width: 40px;
        height: 40px;
        margin: 0;
        padding: 0;
}

.testimonials-track .testimonial .meta {
    color: #6b7280;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        line-height: 1.4;
        margin: 0;
        padding: 0;
    }
    
    .testimonials-track .testimonial .testimonial-footer {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .testimonials-track .testimonial .testimonial-footer .meta {
        flex: 1;
}

.collapse-content {
        max-height: 2rem;
    overflow: hidden;
        transition: max-height 0.45s cubic-bezier(.22,.9,.36,1), opacity 0.45s cubic-bezier(.22,.9,.36,1);
}

.testimonial.expanded {
    flex-basis: 40%;
        transform: translateY(0);
    z-index: 5;
        height: auto;
        min-height: 280px;
        justify-content: space-between;
        padding-bottom: 18px;
}

.testimonial.expanded .collapse-content {
    max-height: 400px;
        opacity: 1;
        margin-bottom: 0;
        padding-bottom: 0;
        flex: 0 1 auto;
    }

    .testimonial:not(.expanded) .collapse-content {
        opacity: 0.7;
}

.testimonial:focus {
    outline: 2px solid rgba(0,167,88,0.15);
    outline-offset: 4px;
}

    .testimonial-dots { 
        display: flex; 
        gap: 8px; 
        justify-content: center;
        align-items: center;
    }
    
    .testimonial-dots .dot { 
        width: 8px; 
        height: 8px; 
        background: #E0E0E0; 
        border-radius: 50%; 
        display: inline-block; 
        cursor: pointer; 
        transition: all 0.3s ease; 
        border: 0; 
        padding: 0;
        flex-shrink: 0;
    }
    
    .testimonial-dots .dot.active { 
        background: #00A758; 
        width: 32px;
        height: 8px;
        border-radius: 4px;
        transform: none;
    }
}

/* Tablet responsive adjustments */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .testimonials-track .testimonial { 
        flex: 0 0 28%; 
        height: 280px;
        min-height: 280px;
    }
}

/* Mobile styles remain unchanged */
@media (max-width: 767.98px) {
    .testimonials-track .testimonial { 
        flex: 0 0 100%; 
        min-width: 100%; 
        height: auto;
        min-height: auto;
    }
    
    .testimonial.expanded { 
        flex-basis: 100%; 
    }
}

/* Testimonials - Desktop View Text Styling */
@media (min-width: 768px) {
/* Avatar inside testimonial */
.testimonial-avatar {
        width: 40px;
        height: 40px;
    object-fit: cover;
        border-radius: 50%;
        flex-shrink: 0;
    }

/* Hide the footer (avatar + meta) until card expands */
.testimonial-footer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 0;
}

.testimonial.expanded .testimonial-footer {
        max-height: 120px;
    opacity: 1;
    transform: translateY(0);
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        flex-shrink: 0;
    }
    
    /* Remove any default paragraph margins that might create space */
    .testimonial.expanded .collapse-content + .testimonial-footer {
        margin-top: 0 !important;
}

/* Preview paragraph is shown when card is collapsed; hide it when expanded */
.testimonial .preview {
    display: block;
        margin-bottom: 0;
        margin-top: 28px;
        color: #121212;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        line-height: 1.5;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
}

.testimonial.expanded .preview {
    display: none;
}

/* When expanded, reveal the full collapse-content; otherwise keep it clipped */
    .testimonial .collapse-content { 
        display: block; 
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        line-height: 1.5;
        color: #121212;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .testimonial.expanded .collapse-content {
        margin-top: 28px;
        margin-bottom: 0 !important;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0 !important;
        line-height: 1.4;
    }
    
    /* Override global p margin-bottom for testimonial paragraphs */
    .testimonial.expanded p.collapse-content {
        margin-bottom: 0 !important;
        margin-top: 28px !important;
    }
    
    /* Ensure no spacing between collapse-content and footer */
    .testimonial.expanded .collapse-content ~ .testimonial-footer {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .testimonial:not(.expanded) .collapse-content { 
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 4.5rem;
        opacity: 1;
        margin-top: 28px;
        margin-bottom: 0;
    }
}



/* Advocacy Advocacy Advocacy css */

.advocacy-header {
  background-color: #00853E;
font-family: Inter;
font-size: 28px;
font-style: normal;
font-weight: 600;

}

.advocacy-content h3,
.advocacy-content h4 {
  color: #000;
}

.advocacy-content p {
  font-size: 0.93rem;
  line-height: 1.7;
}

.advocacy-content .container {
  max-width: 1100px;
}

.img-fluid {
  border-radius: 0.5rem;
}

.advocacy-main-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.small-img {
  max-width: 420px;
  height: 120px;
  object-fit: cover;
}

.shadow-sm {
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* Policy areas cards */
.policy-areas {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.policy-areas-header h5 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #121212;
    margin: 0;
}

.policy-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.policy-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-grid--narrow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    min-height: 196px;
}

.policy-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.policy-copy h6 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 8px;
}

.policy-copy p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #374151;
    margin: 0;
}

.policy-card--trade { background: #E7F3FD; }
.policy-card--tax { background: #F4E9FB; }
.policy-card--infrastructure { background: #E5F4EC; }
.policy-card--sme { background: #FCE9EA; }
.policy-card--digital { background: #F9F5E3; }

@media (max-width: 991.98px) {
    .policy-grid--wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .policy-grid--narrow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .policy-grid--wide,
    .policy-grid--narrow {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .policy-card {
        padding: 18px;
        min-height: auto;
    }

    .policy-copy h6 {
        font-size: 15px;
    }

    .policy-copy p {
        font-size: 13px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
  .advocacy-image-wrap { height: 220px; }
  .small-img { max-width: 100%; height: auto; }
  .AdvoFirstImage{
    height: 200px;
  }

}

.voice{
    color: #00853E;
    font-weight: 600;
    width: 80%;
}


.callouts .callout-card2 {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #E6F6EE;
}


.callout-card2 .btn {
      border-radius: 4px;
      width: 60%;
      font-size:11px;
}

@media (max-width: 767.98px) {
    .callouts .row { gap: 1rem; }
}
/* Responsive adjustments */
@media (max-width: 767px) {
  .small-img {
    max-width: 100%;
  }
}

/*Trade & Investment Spotlight css*/

.voice2{
    color: #00853E;
    font-weight: 700;
    width: 80%;
    font-size: 25px;
}


/* Statistics Strip */
.stats-strip {
    background-color: #E8F5F0;
    padding: 25px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00A758;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.3;
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .stats-strip {
        background-color: #E8F5F0;
        padding: 30px 0;
        margin-bottom: 10px;
        height: 100%;
    }
    
    .stats-strip .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }
    
    .stat-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        background-color: transparent;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.875rem;
        max-width: 250px;
        color: #6c757d;
        text-align: center;
    }
}

/* What We Are Mobile Slider */
        .what-we-are-slider {
            padding: 10px 0 40px;
        }
        
        .what-we-are-slider .slick-dots {
            bottom: 15px !important;
        }
        
        .what-we-are-slider .slick-dots li button:before {
            font-size: 12px;
            color: #00A758;
            opacity: 0.3;
        }
        
        .what-we-are-slider .slick-dots li.slick-active button:before {
            color: #00A758;
            opacity: 1;
        }
        
        .what-we-are-slider .feature-card {
            margin: 0 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Base slider styles */
        .features-slider {
            position: relative;
            padding-bottom: 40px; /* Add space for dots */
        }
        
        /* Dots container */
        .slick-dots {
            position: absolute !important;
            bottom: 15px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
            text-align: center !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 8px !important;
            width: auto !important;
            z-index: 1000 !important;
        }
        
        /* Individual dot */
        .slick-dots li {
            display: inline-block !important;
            margin: 0 4px !important;
            padding: 0 !important;
            width: auto !important;
            height: auto !important;
        }
        
        /* Dot button */
        .slick-dots button {
            display: block !important;
            width: 10px !important;
            height: 10px !important;
            padding: 0 !important;
            border: none !important;
            border-radius: 50% !important;
            background: #d1d1d1 !important;
            text-indent: -9999px !important;
            overflow: hidden !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
        }
        
        /* Active dot */
        .slick-dots .slick-active button {
            background: #00A758 !important;
            transform: scale(1.3) !important;
        }
        
        /* Ensure dots are visible and properly positioned */
        .slick-dots {
            height: 20px !important;
            padding: 10px 0 !important;
            margin: 0 !important;
            list-style: none !important;
            text-align: center !important;
            z-index: 1000 !important;
        }
        
        html body .features-slider.slick-slider .slick-dots li,
        html body .features-slider .slick-dots li {
            display: inline-block !important;
            margin: 0 8px !important;
            padding: 0 !important;
            width: auto !important;
            height: auto !important;
        }
        
        html body .features-slider.slick-slider .slick-dots button,
        html body .features-slider .slick-dots button {
            display: block !important;
            width: 12px !important;
            height: 12px !important;
            padding: 0 !important;
            border: none !important;
            border-radius: 50% !important;
            background: #d1d1d1 !important;
            text-indent: -9999px !important;
            overflow: hidden !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
        }
        
        html body .features-slider.slick-slider .slick-dots .slick-active button,
        html body .features-slider .slick-dots .slick-active button {
            background: #00A758 !important;
            transform: scale(1.4) !important;
        }
        /* Base slider styles */
        .features-slider {
            position: relative;
            display: block;
            opacity: 1 !important;
            visibility: visible !important;
            z-index: 1;
            margin: 0 -10px;
            padding-bottom: 40px; /* Add space for dots */
        }
        
        /* Ensure dots are centered and visible */
        .slick-dots {
            position: absolute;
            bottom: 10px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
            text-align: center !important;
            width: auto !important;
            z-index: 1000 !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 8px !important;
        }
        
        .slick-dots li {
            display: inline-block !important;
            margin: 0 4px !important;
            padding: 0 !important;
            width: auto !important;
            height: auto !important;
        }
        
        .slick-dots button {
            display: block !important;
            width: 10px !important;
            height: 10px !important;
            padding: 0 !important;
            border: none !important;
            border-radius: 50% !important;
            background: #d1d1d1 !important;
            text-indent: -9999px !important;
            overflow: hidden !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
        }
        
        .slick-dots .slick-active button {
            background: #00A758 !important;
            transform: scale(1.3) !important;
        }
        
        /* Reset any conflicting styles */
        .features-slider .slick-slide {
            padding: 0 5px;
            padding: 20px 0 60px; /* Increased bottom padding for dots */
        }
        
        /* Custom dots container */
        .features-slider .slick-dots {
            position: absolute !important;
            bottom: 15px !important;
            left: 0 !important;
            right: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
            text-align: center !important;
            list-style: none !important;
            z-index: 1000 !important;
            display: block !important;
            height: 20px !important;
            line-height: 1 !important;
        }
        
        .features-slider .slick-dots li {
            display: inline-block !important;
            margin: 0 5px !important;
            padding: 0 !important;
            width: auto !important;
            height: auto !important;
        }
        
        .features-slider .slick-dots li button {
            font-size: 0 !important;
            line-height: 0 !important;
            display: block !important;
            width: 12px !important;
            height: 12px !important;
            padding: 0 !important;
            border: none !important;
            border-radius: 50% !important;
            background: #d1d1d1 !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            position: relative !important;
            opacity: 1 !important;
        }
        
        .features-slider .slick-dots li button:before {
            display: none !important;
        }
        
        .features-slider .slick-dots li.slick-active button {
            background: #00A758 !important;
            transform: scale(1.3) !important;
            opacity: 1 !important;
        }
        
        /* Custom dots container - More visible and positioned correctly */
        .features-slider + .custom-dots {
            position: relative !important;
            bottom: auto !important;
            left: auto !important;
            right: auto !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            padding: 15px 0 5px !important;
            margin: 0 auto !important;
            width: 100% !important;
            max-width: 300px !important;
            height: auto !important;
            background: transparent !important;
            z-index: 1000 !important;
            gap: 12px !important;
            flex-wrap: wrap !important;
        }
        
        .features-slider + .custom-dots .custom-dot {
            width: 14px !important;
            height: 14px !important;
            border-radius: 50% !important;
            background: #e0e0e0 !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 3px !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            position: relative !important;
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            text-indent: -9999px !important;
            overflow: hidden !important;
        }
        
        .features-slider + .custom-dots .custom-dot.active,
        .features-slider + .custom-dots .custom-dot:hover {
            background: #00A758 !important;
            transform: scale(1.4) !important;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
        }
        
        /* Ensure dots are visible on mobile */
        @media (max-width: 991px) {
            .features-slider + .custom-dots {
                display: flex !important;
                opacity: 1 !important;
                visibility: visible !important;
            }
        }
        
        /* Slide styles */
        .feature-slide {
            padding: 0 10px;
            box-sizing: border-box;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        
        .feature-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        /* Dots navigation - More specific and visible styles */
        .features-slider .slick-dots {
            position: absolute !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            margin: 0 !important;
            padding: 15px 0 !important;
            text-align: center !important;
            list-style: none !important;
            z-index: 1000 !important;
            display: block !important;
            height: auto !important;
            width: 100% !important;
            background: transparent !important;
        }
        
        .features-slider .slick-dots li {
            display: inline-block !important;
            margin: 0 6px !important;
            padding: 0 !important;
            width: auto !important;
            height: auto !important;
        }
        
        .features-slider .slick-dots li button {
            font-size: 0 !important;
            line-height: 0 !important;
            display: block !important;
            width: 12px !important;
            height: 12px !important;
            padding: 0 !important;
            border: none !important;
            border-radius: 50% !important;
            background: #d1d1d1 !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            position: relative !important;
            opacity: 1 !important;
        }
        
        .features-slider .slick-dots li button:before {
            display: none !important;
        }
        
        .features-slider .slick-dots li.slick-active button {
            background: #00A758 !important;
            transform: scale(1.3) !important;
            opacity: 1 !important;
        }
        
        /* Fix for slider visibility */
        .slick-slide {
            opacity: 1 !important;
            transform: translateZ(0);
        }
        
        .slick-list {
            overflow: visible;
            margin: 0 -10px;
            padding: 10px 0 !important;
        }
        
        /* Center mode active slide */
        .slick-center .feature-card {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .features-slider {
                padding-bottom: 50px;
            }
            
            .slick-dots {
                bottom: 0;
            }
        }
        
        /* Ensure proper spacing */
        .what-we-are {
            overflow: hidden;
        }

  @media (max-width: 991px) {
    .capcityCard {
      margin-top: 15px;
    }
  }

@media (max-width: 767.98px) {
    .testimonials-slider {
        padding: 0 16px;
        position: relative;
        overflow: hidden;
    }

    .testimonials-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        align-items: stretch;
        transition: transform 0.45s cubic-bezier(.22,.9,.36,1);
        will-change: transform;
    }

    /* Figma exact sizing: width: 345px, height: 284px */
    .testimonials-track .testimonial {
        flex: 0 0 345px;
        min-width: 270px;
        max-width: 270px;
        height: 340px;
        min-height: 340px;
        background: #ffffff;
        border: 1px solid #D0D0D0;
        border-radius: 12px;
        box-shadow: none;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 12px;
        overflow: hidden;
    }

    .testimonials-track .testimonial .quote-mark {
        position: relative;
        font-size: 28px;
        color: #00A758;
        margin: 0;
        line-height: 1;
    }

    .testimonial .preview {
        margin: 0;
        font-size: 14px;
        line-height: 1.45;
        color: #121212;
    }

    .testimonial.expanded .preview {
        display: none;
    }

    .testimonial .collapse-content {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #121212;
    }

    .testimonial.expanded .collapse-content {
        margin: 0 !important;
    }

    .testimonial.expanded {
        height: 284px;
        min-height: 284px;
        padding-bottom: 12px;
    }

    .testimonial.expanded .testimonial-footer {
        margin-top: 12px !important;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .testimonial-footer .meta {
        font-size: 12px;
        line-height: 1.4;
        color: #6B7280;
    }

    /* Dots: small circles by default; elongated active */
    .testimonial-dots {
        margin-top: 16px;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .testimonial-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 4px;
        background: #FFFFFF;
        border: 1px solid #D6D6D6;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        transition: all 0.25s ease;
    }

    .testimonial-dots .dot.active {
        width: 28px;
        height: 8px;
        border-radius: 4px;
        background: #00A758;
        border-color: #00A758;
        box-shadow: 0 2px 6px rgba(0, 167, 88, 0.35);
    }
}



