* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2868AD;
    --primary-color-d: #235A95;
    --secondary-color: #3d8b49;  /* Darker green for better contrast */
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 190px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.logo i {
    font-size: 32px;
    color: var(--secondary-color);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

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

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(40, 104, 173, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.mobile-nav {
    list-style: none;
    text-align: center;
}

.mobile-nav-item {
    margin: 20px 0;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 190px;
}

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

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}

.hero-slide.active {
    opacity: 1;
}

/* Individual slide backgrounds */
.hero-slide:nth-child(1) {
    background-image: 
        linear-gradient(rgba(40, 104, 173, 0.7), rgba(85, 174, 99, 0.6)),
        url('../images/slides/slide-ndws.webp');
}

.hero-slide:nth-child(2) {
    background-image: 
        linear-gradient(rgba(40, 104, 173, 0.7), rgba(85, 174, 99, 0.6)),
        url('../images/slides/slide2-nsc.webp');
}

.hero-slide:nth-child(3) {
    background-image: 
        linear-gradient(rgba(40, 104, 173, 0.7), rgba(85, 174, 99, 0.6)),
        url('../images/slides/slide3-foundation.webp');
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.hero-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.hero-btn:hover {
    background: #2f6b3a;  /* Even darker on hover for better contrast */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-btn-c1 {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border: 1px solid #CCCCCC;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.hero-btn-c1:hover {
    background: #2f6b3a;  /* Even darker on hover for better contrast */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

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

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

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

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

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Sponsors Scroll - WCAG Accessible */
.sponsors-scroll {
    background: var(--bg-light);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

/* Pause button for accessibility */
.sponsors-scroll-controls {
    position: absolute;
    bottom: 0px;  /* Change from 10px to 20px, 25px, or 30px */
    right: 20px;
    z-index: 10;
}

.pause-scroll-btn {
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pause-scroll-btn:hover {
    color: var(--primary-color);
}

.pause-scroll-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
    background: rgba(40, 104, 173, 0.05);  /* Subtle background */
}

.pause-scroll-btn:focus:not(:focus-visible) {
    outline: none;
    background: transparent;
}

.pause-scroll-btn i {
    font-size: 0.75rem;
}

.sponsors-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 160s linear infinite;
}

.sponsors-track:hover,
.sponsors-track.paused {
    animation-play-state: paused;
}

.sponsor-logo {
    flex-shrink: 0;
    width: 250px;
    height: 125px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    padding: 15px;
}

.sponsor-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-290px * 38));
    }
}

@media (max-width: 768px) {
    .sponsors-track {
        animation-duration: 160s;
    }
    
    .sponsor-logo {
        width: 200px;
        height: 100px;
    }
    
    @keyframes scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-240px * 38));
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .sponsors-track {
        animation: none;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Countdown Timer */
.countdown-section {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.countdown-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.countdown-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Events Section */
.events-section {
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

        .event-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .event-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

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

        .event-card:hover .event-image img {
            transform: scale(1.05);
        }

        .event-content {
            padding: 25px;
        }

        .event-date {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .event-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .event-description {
            color: var(--text-light);
            line-height: 1.6;
        }

/* View All Events Button */
.view-all-events {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.view-all-btn:hover {
    background: #1e5085;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.view-all-btn i {
    font-size: 1rem;
}

/* Learn More Button for Facility Section */
.learn-more-facility {
    text-align: center;
    margin-top: 50px;
}

.learn-more-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.learn-more-btn:hover {
    background: #2f6b3a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.learn-more-btn i {
    font-size: 1rem;
}

/* About Section */
       /* About Section */
        .about-section {
            background: var(--bg-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: center;
        }

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

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

        .about-image {
            position: relative;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            display: block;
            padding-top: 125%; /* 5:4 ratio (4/5 = 0.8, so 1/0.8 = 1.25 = 125%) */
        }

        .about-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

/* Facility Section */
.facility-section {
    background: var(--white);
}

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

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

.facility-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color-d);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: none;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-about a {
    margin-bottom: 20px;
    line-height: 1.7;
    color:#FFFFFF;
}

.footer-about a:hover {
    color:#FFFFFF;
}

/* Footer Learn More Button */
.footer-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--secondary-color);
    padding: 8px 16px;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.footer-learn-more-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(3px);
}

.footer-learn-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-learn-more-btn:hover i {
    transform: translateX(2px);
    color: var(--white);
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p,
.footer-column a {
    color: #F2F2F2;
    text-decoration: none;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #FFFFFF;
    text-decoration:underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #FFFFFF;
}

.footer-bottom p,
.footer-bottom a {
    color: #F2F2F2;
    text-decoration: none;
    line-height: 1.8;
}

.footer-bottom a:hover {
    color: #FFFFFF;
    text-decoration:underline;
}

/* Social Media Links */
.social-media {
    margin-top: 25px;
}

.social-media h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 139, 73, 0.3);
}

.social-link i {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.social-link:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

       /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 120px 0 60px;
            margin-top: 70px;
            text-align: center;
            margin-top:125px;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
        }

        .page-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--white);
            padding: 20px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .breadcrumb-link {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: var(--secondary-color);
        }


/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .countdown-timer {
        gap: 20px;
    }

    .countdown-item {
        min-width: 100px;
        padding: 20px 15px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .facility-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .slider-nav {
        bottom: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }
    
    .sponsors-track {
        animation: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Video Hero Section */
.vid-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.vid-hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.vid-hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.vid-hero .container {
    position: relative;
    z-index: 10;
}

.vid-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.vid-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.vid-hero-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.vid-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.vid-btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.vid-btn-primary:hover {
    background: #2f6b3a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.vid-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.vid-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Video Controls */
.vid-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}

.vid-pause-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid-pause-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.vid-pause-btn:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.vid-pause-btn i {
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vid-hero {
        margin-top: 125px;
    }

    .vid-hero-text h1 {
        font-size: 2.5rem;
    }

    .vid-hero-text p {
        font-size: 1.2rem;
    }

    .vid-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .vid-btn {
        width: 100%;
        max-width: 300px;
    }

    .vid-controls {
        bottom: 20px;
        right: 20px;
    }

    .vid-pause-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vid-hero-text h1 {
        font-size: 2rem;
    }

    .vid-hero-text p {
        font-size: 1rem;
    }
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    .vid-hero-video-bg video {
        animation: none;
    }
}
</style>

<style>

/* Container */
.cg-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.cg-container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Row */
.cg-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  box-sizing: border-box;
}

.cg-row-no-gutters {
  margin: 0;
}

.cg-row-no-gutters > [class*="cg-col"] {
  padding: 0;
}

/* Column Base */
[class*="cg-col"] {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Columns (12-column grid) */
.cg-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.cg-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.cg-col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.cg-col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.cg-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.cg-col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.cg-col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.cg-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.cg-col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.cg-col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.cg-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.cg-col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.cg-col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.cg-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Responsive breakpoints */
/* Small devices (576px and up) */
@media (min-width: 576px) {
  .cg-col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cg-col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .cg-col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .cg-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .cg-col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cg-col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .cg-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cg-col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .cg-col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .cg-col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .cg-col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .cg-col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .cg-col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
  .cg-col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cg-col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .cg-col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .cg-col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .cg-col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cg-col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .cg-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cg-col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .cg-col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .cg-col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .cg-col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .cg-col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .cg-col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
  .cg-col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cg-col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .cg-col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .cg-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .cg-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cg-col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .cg-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cg-col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .cg-col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .cg-col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .cg-col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .cg-col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .cg-col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
  .cg-col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cg-col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .cg-col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .cg-col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .cg-col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cg-col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .cg-col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cg-col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .cg-col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .cg-col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .cg-col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .cg-col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .cg-col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Utility classes */
.cg-no-gutters {
  padding-right: 0;
  padding-left: 0;
}

/* Order utilities */
.cg-order-first {
  order: -1;
}

.cg-order-last {
  order: 13;
}

/* Offset utilities */
.cg-offset-1 {
  margin-left: 8.333333%;
}

.cg-offset-2 {
  margin-left: 16.666667%;
}

.cg-offset-3 {
  margin-left: 25%;
}

.cg-offset-4 {
  margin-left: 33.333333%;
}

.cg-offset-5 {
  margin-left: 41.666667%;
}

.cg-offset-6 {
  margin-left: 50%;
}

/* Alignment utilities */
.cg-align-items-start {
  align-items: flex-start;
}

.cg-align-items-center {
  align-items: center;
}

.cg-align-items-end {
  align-items: flex-end;
}

.cg-justify-content-start {
  justify-content: flex-start;
}

.cg-justify-content-center {
  justify-content: center;
}

.cg-justify-content-end {
  justify-content: flex-end;
}

.cg-justify-content-between {
  justify-content: space-between;
}

.cg-justify-content-around {
  justify-content: space-around;
}

.cg-callout {
  background-color: rgb(254.85, 254.85, 254.85);
  color: #0a0a0a;
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
}

.cg-callout-nb {
  background-color: rgb(254.85, 254.85, 254.85);
  color: #0a0a0a;
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 0px;
  border-radius: 0;
}

.cg-callout-nb h2 {
font-size:2.6rem;
text-align: center;
}

/* Container for the grid */
.cg-block-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
  box-sizing: border-box;
}

/* Clear floats and ensure proper spacing */
.cg-block-grid::before,
.cg-block-grid::after {
  content: "";
  display: table;
}

.cg-block-grid::after {
  clear: both;
}

/* Grid items */
.cg-block-grid > * {
  box-sizing: border-box;
  padding: 0 1rem 1rem;
}

/* Small screens (default) */
.cg-block-grid-1 > * { width: 100%; }
.cg-block-grid-2 > * { width: 50%; }
.cg-block-grid-3 > * { width: 33.33333%; }
.cg-block-grid-4 > * { width: 25%; }
.cg-block-grid-5 > * { width: 20%; }
.cg-block-grid-6 > * { width: 16.66667%; }
.cg-block-grid-7 > * { width: 14.28571%; }
.cg-block-grid-8 > * { width: 12.5%; }

/* Medium screens */
@media screen and (min-width: 640px) {
  .cg-block-grid-medium-1 > * { width: 100%; }
  .cg-block-grid-medium-2 > * { width: 50%; }
  .cg-block-grid-medium-3 > * { width: 33.33333%; }
  .cg-block-grid-medium-4 > * { width: 25%; }
  .cg-block-grid-medium-5 > * { width: 20%; }
  .cg-block-grid-medium-6 > * { width: 16.66667%; }
  .cg-block-grid-medium-7 > * { width: 14.28571%; }
  .cg-block-grid-medium-8 > * { width: 12.5%; }
}

/* Large screens */
@media screen and (min-width: 1024px) {
  .cg-block-grid-large-1 > * { width: 100%; }
  .cg-block-grid-large-2 > * { width: 50%; }
  .cg-block-grid-large-3 > * { width: 33.33333%; }
  .cg-block-grid-large-4 > * { width: 25%; }
  .cg-block-grid-large-5 > * { width: 20%; }
  .cg-block-grid-large-6 > * { width: 16.66667%; }
  .cg-block-grid-large-7 > * { width: 14.28571%; }
  .cg-block-grid-large-8 > * { width: 12.5%; }
}

/* This allows you to change the spacing between grid items if needed */
.cg-block-grid.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

.cg-block-grid.no-gutter > * {
  padding-left: 0;
  padding-right: 0;
}

.cg-block-grid.small-gutter {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.cg-block-grid.small-gutter > * {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
}

.cg-block-grid.large-gutter {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.cg-block-grid.large-gutter > * {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}

.events-grid a {
text-decoration:none;
border:0px;
}

/* Main Content Area Styles - Scoped to avoid conflicts */
.main-content-area {
    background: var(--white);
    padding: 60px 0;
    min-height: 60vh;
}

.main-content-area .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.main-content-area .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* Main Content Column Styles */
.main-content-area .content-column {
    padding-right: 30px;
}

.main-content-area .content-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.main-content-area .content-highlight {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.main-content-area .content-highlight h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-content-area .content-highlight p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Content Button - Matches site style */
.main-content-area .content-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 4px rgba(61, 139, 73, 0.2);
}

.main-content-area .content-btn:hover {
    background: #2f6b3a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 139, 73, 0.3);
    color: var(--white);
    text-decoration: none;
}

.main-content-area .content-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.main-content-area .content-btn:hover i {
    transform: translateX(2px);
}

/* Sidebar Styles */
.main-content-area .sidebar-column {
    padding-left: 30px;
}

.main-content-area .sidebar-widget {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.main-content-area .sidebar-widget h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

/* Quick Links Navigation */
.main-content-area .quick-links-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-content-area .quick-links-nav li {
    margin-bottom: 12px;
}

.main-content-area .quick-links-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: var(--white);
    border: 1px solid #e9ecef;
}

.main-content-area .quick-links-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(40, 104, 173, 0.2);
}

.main-content-area .quick-links-nav a i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    transition: color 0.3s ease;
}

.main-content-area .quick-links-nav a:hover i {
    color: var(--white);
}

/* Contact Info Widget */
.main-content-area .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.main-content-area .contact-info-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.main-content-area .contact-info-item span {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.main-content-area .contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.main-content-area .contact-info-item a:hover {
    text-decoration: underline;
}

/* Stats Widget */
.main-content-area .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.main-content-area .stat-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.main-content-area .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.main-content-area .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content-area .content-column,
    .main-content-area .sidebar-column {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .main-content-area .sidebar-widget {
        margin-bottom: 25px;
    }
    
    .main-content-area .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .main-content-area .content-column,
    .main-content-area .sidebar-column {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .main-content-area .content-paragraph {
        text-align: left;
    }
    
    .main-content-area .content-btn {
        width: 100%;
        justify-content: center;
    }
    
    .main-content-area .sidebar-widget {
        margin-left: -5px;
        margin-right: -5px;
    }

    .page-title {
        font-size: 1.8rem;
    }

}

/* Full Width Page Layout Styles */
.full-width-content-area {
    background: var(--white);
    padding: 60px 0;
    min-height: 60vh;
}

.full-width-content-area .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.full-width-content-area .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Full Width Content Styles */
.full-width-content-area .content-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.full-width-content-area .content-highlight {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    border-left: 6px solid var(--secondary-color);
    max-width: 1000px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.full-width-content-area .content-highlight h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.full-width-content-area .content-highlight p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Full Width Button Container */
.full-width-content-area .button-container {
    text-align: center;
    margin: 40px 0;
}

.full-width-content-area .content-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px 15px 10px;
    box-shadow: 0 4px 8px rgba(61, 139, 73, 0.2);
}

.full-width-content-area .content-btn:hover {
    background: #2f6b3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(61, 139, 73, 0.3);
    color: var(--white);
    text-decoration: none;
}

.full-width-content-area .content-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.full-width-content-area .content-btn:hover i {
    transform: translateX(3px);
}

/* Secondary Button Style for Full Width */
.full-width-content-area .content-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.full-width-content-area .content-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Feature Grid for Full Width */
.full-width-content-area .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.full-width-content-area .feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.full-width-content-area .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.full-width-content-area .feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.full-width-content-area .feature-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.full-width-content-area .feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Two Column Section within Full Width */
.full-width-content-area .two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    align-items: center;
}

.full-width-content-area .column-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.full-width-content-area .column-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.full-width-content-area .column-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.full-width-content-area .column-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.full-width-content-area .column-image:hover img {
    transform: scale(1.05);
}

/* Stats Section for Full Width */
.full-width-content-area .stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px;
    margin: 60px 0;
    text-align: center;
}

.full-width-content-area .stats-section h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.full-width-content-area .stats-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.full-width-content-area .stat-item-full {
    text-align: center;
}

.full-width-content-area .stat-number-full {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.full-width-content-area .stat-label-full {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Full Width Responsive Design */
@media (max-width: 768px) {
    .full-width-content-area .content-paragraph,
    .full-width-content-area .content-highlight {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .full-width-content-area .content-highlight {
        padding: 25px;
    }
    
    .full-width-content-area .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .full-width-content-area .two-column-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .full-width-content-area .stats-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .full-width-content-area .content-paragraph {
        text-align: left;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .full-width-content-area .content-highlight {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }
    
    .full-width-content-area .content-btn {
        width: calc(100% - 30px);
        margin: 0 15px 15px 15px;
        justify-content: center;
    }
    
    .full-width-content-area .feature-grid,
    .full-width-content-area .two-column-section {
        padding: 0 15px;
    }
    
    .full-width-content-area .stats-grid-full {
        grid-template-columns: 1fr;
    }
    
    .full-width-content-area .stat-number-full {
        font-size: 2.5rem;
    }
}

.econtentblock img {
width:100%;
max-width:900px;
}

.econtentblock h2, h3 {
margin-bottom:20px;
font-weight:bold;
font-size: 1.8rem;
line-height: 1.4;
}

.econtentblock h4, h5, h6 {
margin-bottom:20px;
font-weight:bold;
font-size: 1.5rem;
line-height: 1.4;
}

.econtentblock p {
margin-bottom:20px;
font-size:120%;
}

.econtentblock .button {
border-radius: 10px;
}

#activelink {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(40, 104, 173, 0.2);
}

#activelink i {
    color: var(--white);
}

.green-button1 {
    background: #3d8b49;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(61, 139, 73, 0.2);
}

.green-button1:hover {
    background: #2f6b3a;
    color:#FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 139, 73, 0.3);
    color: var(--white);
    text-decoration: none;
}

.green-button1 a {
color:#FFFFFF;
text-decoration: none;
}

.green-button1 a:hover {
color:#FFFFFF;
text-decoration: none;
}