/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-blue: #0071BC;
    --primary-green: #00A651;
    --dark-blue: #005A94;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --yellow: #FFC107;
}
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--text-dark); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 20px; }
.nav-menu { display: flex; list-style: none; gap: 25px; }
.nav-menu a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.3s; position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-blue); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--primary-blue); }
.nav-buttons { display: flex; gap: 10px; }
.btn-marketplace { background: var(--yellow); color: var(--text-dark); padding: 10px 20px; text-decoration: none; font-weight: 600; font-size: 13px; border-radius: 5px; transition: all 0.3s; }
.btn-marketplace:hover { background: #FFD54F; transform: translateY(-2px); }
.btn-login { background: var(--primary-green); color: var(--white); padding: 10px 20px; text-decoration: none; font-weight: 600; font-size: 13px; border-radius: 5px; transition: all 0.3s; }
.btn-login:hover { background: #008C44; transform: translateY(-2px); }
.search-btn { background: var(--primary-green); border: none; color: var(--white); width: 45px; height: 45px; border-radius: 5px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.search-btn:hover { background: #008C44; }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-menu-toggle span { width: 25px; height: 3px; background: var(--text-dark); transition: 0.3s; }
.hero-slider { position: relative; height: 500px; overflow: hidden; }
.slider-container { position: relative; height: 100%; }
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 0.5s ease-in-out; background: linear-gradient(135deg, var(--primary-green) 0%, #00864B 100%); }
.slide.active { opacity: 1; }
.slide-content { display: flex; align-items: center; height: 100%; padding: 60px 0; }
.slide-content h1 { color: var(--white); font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; max-width: 800px; }
.slide-content p { color: var(--white); font-size: 1.2rem; max-width: 700px; line-height: 1.6; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.3); border: none; color: var(--white); font-size: 3rem; width: 60px; height: 60px; cursor: pointer; transition: all 0.3s; border-radius: 50%; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.slider-btn:hover { background: rgba(255,255,255,0.5); }
.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--white); width: 30px; border-radius: 6px; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; color: var(--text-dark); position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--primary-green); }
.section-subtitle { font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.section-description { font-size: 1.2rem; color: var(--text-light); margin-bottom: 10px; }
.section-text { color: var(--text-light); max-width: 800px; margin: 0 auto 40px; }
.page-header { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%); padding: 80px 0 60px; text-align: center; color: var(--white); }
.page-header h1 { font-size: 3rem; margin-bottom: 15px; }
.page-header p { font-size: 1.3rem; opacity: 0.9; }
.footer { background: var(--text-dark); color: var(--white); padding: 60px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo img { height: 60px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary-green); }
.footer-col p { color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-links a:hover { background: var(--primary-green); transform: translateY(-5px); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links-bar a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.footer-links-bar a:hover { color: var(--white); }
.footer-social-links { display: flex; justify-content: center; gap: 20px; padding: 25px 0; }
.footer-social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-social-links a:hover { background: var(--primary-green); transform: translateY(-3px); }
.footer-bottom-bar { text-align: center; padding-top: 20px; }
.footer-bottom-bar p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 10px; }
.footer-meta-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
.footer-meta-links a:hover { color: var(--white); }
.breadcrumb-section { background: var(--light-gray); padding: 15px 0; }
.breadcrumb { color: var(--text-light); font-size: 0.9rem; }
.breadcrumb a { color: var(--primary-blue); text-decoration: none; }
.container-with-sidebar { max-width: 1200px; margin: 0 auto; padding: 60px 20px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.main-content-area { min-height: 400px; }
.sidebar-right { position: sticky; top: 100px; height: fit-content; }
.sidebar-widget { background: var(--white); padding: 25px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); text-align: center; }
.sidebar-widget h3 { font-size: 1rem; margin-bottom: 20px; color: var(--text-dark); }
.social-feeds { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.social-feed-link { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 10px; transition: all 0.3s; }
.social-feed-link.facebook { background: #1877F2; color: var(--white); }
.social-feed-link.twitter { background: #1DA1F2; color: var(--white); }
.social-feed-link:hover { transform: scale(1.1); }
@media (max-width: 992px) {
    .container-with-sidebar { grid-template-columns: 1fr; }
    .sidebar-right { position: relative; top: 0; }
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    .page-header h1 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    .hero-slider { height: 400px; }
    .slide-content h1 { font-size: 1.5rem; }
    .slide-content p { font-size: 0.9rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
}
@media (max-width: 576px) {
    .logo img { height: 45px; }
    .nav-buttons { display: none; }
}
/* Stats Banner */
.stats-banner {
    background: var(--primary-blue);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 15px;
    }
    .stat-item:nth-child(3),
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn-marketplace {
    background: var(--yellow);
    color: var(--text-dark);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-marketplace:hover {
    background: #FFD54F;
    transform: translateY(-2px);
}

.btn-login {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #008C44;
    transform: translateY(-2px);
}

.search-btn {
    background: var(--primary-green);
    border: none;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #008C44;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 560px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00864B 100%);
}

.slide:nth-child(1) {
    background:
        linear-gradient(135deg, rgba(0,90,148,0.82) 0%, rgba(0,166,81,0.75) 100%),
        url('img/slides/slide1.jpg') center/cover no-repeat;
}

.slide:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(0,113,188,0.80) 0%, rgba(0,90,148,0.85) 100%),
        url('img/slides/slide2.jpg') center/cover no-repeat;
}

.slide:nth-child(3) {
    background:
        linear-gradient(135deg, rgba(0,134,75,0.82) 0%, rgba(0,113,188,0.80) 100%),
        url('img/slides/slide3.jpg') center/cover no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 60px 0;
}

.slide-content h1 {
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.slide-content p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.30);
    margin-bottom: 32px;
}

.slide-cta {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.slide-cta:hover {
    background: var(--yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: var(--white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Featured Event Section */
.featured-event {
    padding: 80px 0;
    background: var(--light-gray);
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.event-info h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.event-info p {
    color: var(--text-light);
    line-height: 1.8;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    padding: 30px;
    text-align: center;
}

.event-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.event-body {
    padding: 30px;
}

.event-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.meta-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.partners {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background: var(--light-gray);
    flex-wrap: wrap;
    gap: 15px;
}

.partner-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-green);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.section-text {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--dark-blue);
}

/* Marketplace Section */
.marketplace-section {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,113,188,0.3);
}

.text-center {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-green);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-img-wrap {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-img-wrap img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.about-img-placeholder {
    display: none;
    width: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.placeholder-content {
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.placeholder-content p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.placeholder-content span {
    font-size: 1rem;
    opacity: 0.85;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00864B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.objectives {
    margin-bottom: 80px;
}

.objectives h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.objective-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.objective-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,113,188,0.1);
    margin-bottom: 15px;
}

.objective-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.core-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,113,188,0.3);
}

.contact-info-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Join Section */
.why-join-section {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--light-gray);
    padding: 35px 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--primary-green);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    background: var(--white);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.97rem;
}


.marketplace-actions {
    background: var(--light-gray);
    padding: 20px 0;
}

.btn-add-product {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.btn-add-product:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.marketplace-search {
    background: var(--primary-blue);
    padding: 30px 0;
}

.search-filter-box {
    display: grid;
    grid-template-columns: 2fr 1.5fr auto;
    gap: 20px;
    align-items: end;
}

.filter-group label {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
}

.search-input,
.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.btn-apply-filter {
    background: #DC3545;
    color: var(--white);
    padding: 12px 35px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-apply-filter:hover {
    background: #C82333;
}

.marketplace-products {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.marketplace-product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.marketplace-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-details h3 a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.product-details h3 a:hover {
    color: var(--dark-blue);
}

.product-price {
    color: var(--text-light);
    font-weight: 500;
}

.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.social-sidebar h3 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-icons-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon-large {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s;
}

.social-icon-large.facebook {
    background: #1877F2;
    color: var(--white);
}

.social-icon-large.twitter {
    background: #1DA1F2;
    color: var(--white);
}

.social-icon-large:hover {
    transform: scale(1.1);
}

/* Members Page Styles */
.breadcrumb-section {
    background: var(--light-gray);
    padding: 15px 0;
}

.breadcrumb {
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.container-with-sidebar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.main-content-area {
    min-height: 400px;
}

.members-title {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 40px;
}

.members-grid-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.member-logo-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    min-height: 150px;
}

.member-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.member-logo-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.sidebar-right {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.sidebar-widget h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.social-feeds {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-feed-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s;
}

.social-feed-link.facebook {
    background: #1877F2;
    color: var(--white);
}

.social-feed-link.twitter {
    background: #1DA1F2;
    color: var(--white);
}

.social-feed-link:hover {
    transform: scale(1.1);
}

/* Footer Alternative Style */
.footer-links-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links-bar a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links-bar a:hover {
    color: var(--white);
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px 0;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom-bar {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom-bar p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-meta-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-meta-links a:hover {
    color: var(--white);
}

/* Events Table Styles */
.events-list-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.events-table {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.event-row {
    display: grid;
    grid-template-columns: 120px 1fr 250px;
    gap: 25px;
    padding: 20px 25px;
    border-bottom: 1px solid #E0E0E0;
    transition: all 0.3s;
}

.event-row:hover {
    background: #F9F9F9;
}

.event-row.highlighted {
    background: #FFF9E6;
}

.event-row:last-child {
    border-bottom: none;
}

.event-date-col {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.event-title-col a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.event-title-col a:hover {
    color: var(--primary-blue);
}

.event-location-col {
    color: var(--primary-green);
    font-weight: 500;
    text-align: right;
}

/* Calendar Widget */
.calendar-widget {
    margin-top: 25px;
}

.calendar-month {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    text-align: center;
    padding: 8px 5px;
    font-size: 0.85rem;
    border-radius: 4px;
}

.calendar-day.header {
    font-weight: 600;
    color: var(--primary-blue);
}

.calendar-day.today {
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
}

/* Blog Page Styles */
.blog-list-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.blog-page-title {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 40px;
}

.blog-post-item {
    background: var(--white);
    padding: 0;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-post-item.featured {
    grid-template-columns: 1fr;
    background: var(--light-gray);
}

.blog-post-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.blog-post-thumbnail {
    width: 150px;
    height: 150px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
}

.blog-post-content {
    padding: 20px 25px;
}

.blog-post-item.featured .blog-post-content {
    padding: 15px 20px;
}

.blog-post-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-post-item.featured h3 {
    font-size: 1.3rem;
}

.blog-post-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post-content h3 a:hover {
    color: var(--primary-blue);
}

.post-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.post-meta span {
    margin-right: 15px;
}

.post-author a {
    color: var(--primary-blue);
    text-decoration: none;
}

.post-author a:hover {
    text-decoration: underline;
}

.post-date {
    color: #999;
}

/* Events & Blog List Styles */
.events-list,
.blog-list {
    padding: 60px 0;
}

.event-item,
.blog-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 25px;
    align-items: center;
    transition: all 0.3s;
}

.event-item:hover,
.blog-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.event-date,
.blog-date {
    text-align: center;
    color: var(--primary-blue);
    font-weight: 600;
}

.event-info h3,
.blog-item-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.event-info h3 a,
.blog-item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.event-info h3 a:hover,
.blog-item-title a:hover {
    color: var(--primary-blue);
}

.event-meta,
.blog-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-location {
    color: var(--primary-green);
    font-weight: 500;
}

/* Blog Detail Styles */
.blog-detail-content {
    line-height: 1.8;
    color: var(--text-light);
}

.blog-detail-content h2 {
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .event-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-location-col {
        text-align: center;
        margin-top: 10px;
    }
    
    .blog-post-item {
        grid-template-columns: 1fr;
    }
    
    .blog-post-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .search-filter-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .container-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-right {
        position: relative;
        top: 0;
    }
    
    .social-sidebar {
        display: none;
    }
    
    .event-item,
    .blog-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links-bar {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .about-grid,
    .mission-vision,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-marketplace,
    .btn-login {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-grid,
    .marketplace-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 45px;
    }
    
    .search-btn {
        width: 35px;
        height: 35px;
    }
    
    .nav-buttons {
        display: none;
    }
}

/* ===== FLAGS TICKER ===== */
.flags-ticker-wrap {
    overflow: hidden;
    width: 90px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
}

.flags-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 6px;
    animation: flagSlide 12s linear infinite;
    white-space: nowrap;
}

.flags-ticker span {
    font-size: 1.7rem;
    line-height: 1;
    cursor: default;
    transition: transform 0.2s;
    display: inline-block;
}

.flags-ticker span:hover {
    transform: scale(1.3);
}

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

/* Pause on hover */
.flags-ticker-wrap:hover .flags-ticker {
    animation-play-state: paused;
}

/* ===== EXTRA SOCIAL ICON COLORS ===== */
.social-feed-link.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
}

.social-feed-link.youtube {
    background: #FF0000;
    color: #fff;
}

.social-feed-link.linkedin {
    background: #0A66C2;
    color: #fff;
}

.social-icon-large.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
}

.social-icon-large.youtube {
    background: #FF0000;
    color: #fff;
}

.social-icon-large.linkedin {
    background: #0A66C2;
    color: #fff;
}

/* Also add LinkedIn/IG/YT to footer social links */
.footer .social-links a[aria-label="Instagram"],
.footer-social-links a[aria-label="Instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer .social-links a[aria-label="YouTube"],
.footer-social-links a[aria-label="YouTube"] {
    background: #FF0000;
}

@media (max-width: 992px) {
    .flags-ticker-wrap { display: none; }
}



/* ===== IMAGE PLACEHOLDERS (until real photos are added) ===== */
.img-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25) 0%, transparent 55%);
}

.placeholder-emoji {
    font-size: 3.5rem;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

/* Blog placeholder themes */
.placeholder-empower { background: linear-gradient(135deg, #0071BC 0%, #005A94 100%); }
.placeholder-trade    { background: linear-gradient(135deg, #00A651 0%, #00703a 100%); }
.placeholder-success  { background: linear-gradient(135deg, #FFC107 0%, #F57C00 100%); }

/* Marketplace placeholder themes */
.placeholder-jewelry { background: linear-gradient(135deg, #D4AF37 0%, #8B6914 100%); }
.placeholder-beauty  { background: linear-gradient(135deg, #00A651 0%, #0071BC 100%); }
.placeholder-crafts  { background: linear-gradient(135deg, #C0392B 0%, #7B241C 100%); }

.blog-image, .product-image {
    position: relative;
}

.blog-image img, .product-image img {
    position: relative;
    z-index: 2;
}

/* Marketplace page product placeholder themes */
.placeholder-spices     { background: linear-gradient(135deg, #E74C3C 0%, #922B21 100%); }
.placeholder-tea-green  { background: linear-gradient(135deg, #27AE60 0%, #145A32 100%); }
.placeholder-tea-purple { background: linear-gradient(135deg, #8E44AD 0%, #5B2C6F 100%); }
.placeholder-eco        { background: linear-gradient(135deg, #A9BA53 0%, #6B7A2A 100%); }
.placeholder-flour      { background: linear-gradient(135deg, #F39C12 0%, #B9770E 100%); }
.placeholder-maasai     { background: linear-gradient(135deg, #C0392B 0%, #E74C3C 50%, #F1C40F 100%); }
.placeholder-jewelry2   { background: linear-gradient(135deg, #D4AF37 0%, #8B6914 100%); }
.placeholder-beauty2    { background: linear-gradient(135deg, #00A651 0%, #0071BC 100%); }
.placeholder-crafts2    { background: linear-gradient(135deg, #C0392B 0%, #7B241C 100%); }

.product-img {
    position: relative;
}

.product-img img {
    position: relative;
    z-index: 2;
}
