/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');
.navbar-brand {
    position: relative;
    z-index: 2;
}

.navbar {
    position: sticky;
    height: 90px; /* or your preferred fixed height */
    overflow: visible; /* allows logo to overflow */
    top: 0;
    z-index: 999;
    background: white;
}

.navbar-brand img {
    height: 100px; /* Make it big */
    width: auto;
    max-width: 350px;
    position: absolute;
    top: -55px; /* Moves it upward beyond the navbar */
    left: 0;
    transition: all 0.4s ease;
}
/* phone */
@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 60px;
        top: 0; /* reset the top shift */
        position: static;
    }
}


/* For smaller screens */
@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 80px;
        top: -20px;
        position: absolute;
    }
}

Logo hover effect
.navbar-brand:hover img {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Footer logo styling */
.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

/* Global Styles */
:root {
    --primary-color: #006d77; /* Teal */
    --secondary-color: #D4AF37; /* Gold */
    --accent-color: #50c878;
    --dark-color: #1A1A1A;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --text-color: #333333;
    --text-light: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    overscroll-behavior-y: contain; /* important */
    touch-action: pan-y;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    margin-left: 5px;
    font-size: 12px;
}

.btn-link:hover {
    color: var(--secondary-color);
}



/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
    font-size: 14px;
    color: var(--light-color);
}

.top-bar span {
    margin-right: 20px;
}

.top-bar i {
    margin-right: 5px;
}

.top-bar a {
    color: var(--light-color);
    margin-left: 15px;
    font-size: 16px;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Show the nested dropdown on hover (optional) */
.dropdown-submenu:hover .dropdown-menu {
    display: block;
} 

/* forcefull teal color on the hamburger */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='teal' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Navigation */
.navbar {
    padding: 15px 0;
    background-color: var(--light-color) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 15px;
    font-size: 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-dark .navbar-nav .btn-donate {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    margin-left: 15px;
    padding: 8px 20px;
}

.navbar-dark .navbar-nav .btn-donate:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.dropdown-item {
    font-weight: 500;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}



/* First Lady Section */
.first-lady-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.first-lady-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.first-lady-image img {
    width: 100%;
    height: auto;
    display: block;
}

.first-lady-message {
    padding: 30px;
}

.first-lady-message h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.first-lady-message blockquote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin-bottom: 20px;
}

.first-lady-message blockquote footer {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .first-lady-section {
        padding: 60px 0;
    }
    
    .first-lady-message {
        padding: 20px 0;
    }
}
/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.pillar-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 9, 9, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.pillar-card:hover .icon-box {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.pillar-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.pillar-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.experience-box h2 {
    font-size: 50px;
    margin-bottom: 0;
    line-height: 1;
}

.experience-box p {
    font-weight: 600;
    margin-bottom: 0;
}

.about-list {
    margin: 25px 0;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* Thematic Areas Section */
.thematic-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.thematic-card {
    background-color: var(--gray-color);
    padding: 50px;
    border-radius: 150px;
    text-align: center;
    height: 90%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.thematic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.thematic-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.thematic-icon.health {
    background-color: rgba(234, 67, 53, 0.1);
    color: #EA4335;
}

.thematic-icon.gender {
    background-color: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.thematic-icon.economy {
    background-color: rgba(251, 188, 5, 0.1);
    color: #FBBC05;
}

.thematic-icon.environment {
    background-color: rgba(52, 168, 83, 0.1);
    color: #34A853;
}

.thematic-icon.governance {
    background-color: rgba(171, 71, 188, 0.1);
    color: #AB47BC;
}

.thematic-icon.collaboration {
    background-color: rgba(233, 30, 99, 0.1);
    color: #E91E63;
}

.thematic-card:hover .thematic-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.thematic-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.thematic-card p {
    color: var(--text-light);
}

/* Success Stories Section */
.stories-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.story-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.partner-logo {
    background-color: #20B2AA ;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .partner-logo {
        height: 100px;
        padding: 15px;
    }
    
    .partner-logo img {
        max-height: 70px;
    }
}

@media (max-width: 767.98px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .partner-logo {
        height: 90px;
        padding: 10px;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
}

@media (max-width: 575.98px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partners-section {
        padding: 60px 0;
    }
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 991.98px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .partner-info h3 {
        font-size: 14px;
    }
    
    .partner-info p {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .partners-section {
        padding: 60px 0;
    }
}
/* Payment Modal Styles */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-footer {
    border-top: none;
}

.payment-logo {
    height: 40px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.payment-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Testimonial Slider */
.testimonial-slider .slick-dots {
    bottom: -40px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 24px;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* FAQ Styles */
.accordion-button:not(.collapsed) {
    background-color: rgba(64, 224, 208, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.25);
    border-color: var(--primary-color);
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2340E0D0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2340E0D0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Card Element Styles */
#card-element {
    border: 1px solid #ced4da;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.StripeElement--focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.25);
}

/* Executive Committee Modal Styles */
.executive-item-modal {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.executive-item-modal:hover {
    background-color: #f1f1f1;
    transform: translateX(5px);
}

.executive-image-modal img {
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

/* Video Modal Styles */
#videoModal .modal-content {
    background-color: #111;
    border: none;
}

#videoModal .modal-header {
    border-bottom: 1px solid #333;
}

#videoModal .modal-title {
    color: white;
}

#videoModal .btn-close {
    filter: invert(1);
}

/* County Table Styles */
.county-table {
    width: 100%;
}

.county-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    font-weight: 600;
}

.county-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.county-table tr:hover {
    background-color: rgba(64, 224, 208, 0.05);
}

/* Search Box Styles */
.search-box {
    position: relative;
}

.search-box .form-control {
    padding-left: 40px;
    border-radius: 20px;
}

.search-box::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 10;
}

/* Responsive Table */
.county-table-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

/* Scrollbar styling */
.county-table-container::-webkit-scrollbar {
    width: 8px;
}

.county-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 8px 8px 0;
}

.county-table-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}

.county-table-container::-webkit-scrollbar-thumb:hover {
    background: #30c9b9;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Modal Enhancements */
.modal-lg .modal-body {
    padding: 2rem;
}

/* Impact Stats */
.impact-stats {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.impact-stats h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stat-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* News Details */
.news-details {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.news-details h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.detail-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* Toast Styles */
.toast {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.toast-header {
    border-radius: 8px 8px 0 0;
}

.toast-body {
    border-radius: 0 0 8px 8px;
}

/* Newsletter Toast Styles */
#newsletterToast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 300px;
    z-index: 1100;
}

.toast-header {
    background-color: var(--primary-color);
    color: white;
}

.toast-header .btn-close {
    filter: invert(1);
}

/* Error Message Styles */
.newsletter-error {
    border-radius: 4px;
    padding: 10px 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Success Modal */
#successModal .modal-header {
    padding: 20px;
}

#successModal .modal-body {
    padding: 30px;
}

#successModal .fa-check-circle {
    color: #28a745;
}

/* County Contacts Styles */
.county-contact-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.county-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.county-contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.contact-person h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-person p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.contact-person i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 109, 119, 0.9), rgba(0, 109, 119, 0.9)), url('../images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-color);
}

.cta-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box h2 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.cta-box p {
    margin-bottom: 0;
    font-size: 18px;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.news-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.newsletter-section h2 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.newsletter-section p {
    margin-bottom: 0;
    font-size: 18px;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 4px 0 0 4px;
    border: none;
    padding-left: 20px;
}

.newsletter-form .btn {
    height: 50px;
    border-radius: 0 4px 4px 0;
    padding: 0 25px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 0;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    height: 60px;
}

.footer-widget p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-widget h3 {
    color: var(--light-color);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: var(--light-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 14px;
}

.copyright a {
    color: var(--light-color);
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 14px;
}

.copyright a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* Events Section */
.events-section {
    padding: 80px 0;
}

.main-event-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.event-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.event-card:hover .event-image img,
.main-event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    line-height: 1.2;
}

.event-date .day {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
}

.event-date .year {
    font-size: 12px;
    display: block;
}

.event-content {
    padding: 25px;
}

.event-meta {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.event-meta span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.event-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.event-footer {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Past Events Section */
.past-events-section {
    padding: 80px 0;
}

.past-event-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.past-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.past-event-card .event-date {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* Sponsorship Section */
.sponsorship-section {
    padding: 80px 0;
}

.sponsorship-table {
    overflow-x: auto;
    margin-bottom: 40px;
}

.sponsorship-table table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.sponsorship-table th {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px;
    text-align: left;
}

.sponsorship-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.sponsorship-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.sponsorship-table tr:hover {
    background-color: #f1f1f1;
}

.sponsorship-table ul {
    margin: 0;
    padding-left: 20px;
}

.sponsorship-table ul li {
    margin-bottom: 8px;
}

.sponsorship-cta {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Leaders Page Specific Styles */
:root {
    --primary-color: #006d77;
    --secondary-color: #D4AF37;
    --accent-color: #50c878;
    --dark-color: #1A1A1A;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --text-color: #333333;
    --text-light: #777777;
}

/* Leaders Hero Section */
.leaders-hero {
    background: linear-gradient(rgba(0, 109, 119, 0.8), rgba(0, 109, 119, 0.8)), url('../images/leaders-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-color);
    padding: 120px 0 80px;
    text-align: center;
}

.leaders-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.leaders-hero p.lead {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Leadership Structure */
.leadership-structure {
    background-color: var(--light-color);
    padding: 80px 0;
}

.structure-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.structure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.structure-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.structure-card:hover .structure-icon {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: rotate(15deg);
}

.structure-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.structure-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Leader Cards */
.leader-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.leader-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.leader-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.leader-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.leader-position {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.leader-achievements {
    margin-bottom: 15px;
    flex-grow: 1;
}

.leader-achievements p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.view-profile {
    align-self: flex-start;
    margin-top: auto;
}

/* Executive Committee Cards */
.leader-card.executive {
    flex-direction: row;
    height: auto;
}

.leader-card.executive .leader-image {
    height: auto;
    width: 40%;
    flex-shrink: 0;
}

.leader-card.executive .leader-content {
    width: 60%;
}

/* Search and Filter */
.search-filter {
    margin-bottom: 30px;
}

.search-filter .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.search-filter .form-control {
    border-radius: 50px 0 0 50px;
    border-right: none;
    padding-left: 20px;
}

.search-filter .btn {
    border-radius: 0 50px 50px 0;
}

.search-filter .form-select {
    border-radius: 0;
    border-left: none;
    border-right: none;
    max-width: 180px;
}

/* Leader Modal */
.modal-leader-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-leader-image img {
    width: 100%;
    height: auto;
    display: block;
}

.leader-contact {
    background-color: var(--gray-color);
    padding: 15px;
    border-radius: 8px;
}

.leader-contact h5 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.leader-contact ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.leader-contact i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.leader-bio p {
    font-size: 15px;
    line-height: 1.6;
}

.leader-achievements ul {
    padding-left: 20px;
}

.leader-achievements li {
    margin-bottom: 8px;
    position: relative;
}

.leader-achievements li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.project-card {
    background-color: var(--gray-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.project-card h6 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.project-card p {
    font-size: 13px;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .leader-card.executive {
        flex-direction: column;
    }
    
    .leader-card.executive .leader-image,
    .leader-card.executive .leader-content {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .leaders-hero {
        padding: 100px 0 60px;
    }
    
    .leaders-hero h1 {
        font-size: 36px;
    }
    
    .search-filter .form-select {
        max-width: 150px;
    }
}

@media (max-width: 767.98px) {
    .leaders-hero {
        padding: 80px 0 40px;
    }
    
    .leaders-hero h1 {
        font-size: 32px;
    }
    
    .search-filter .input-group {
        flex-direction: column;
    }
    
    .search-filter .form-control,
    .search-filter .form-select,
    .search-filter .btn {
        border-radius: 4px;
        width: 100%;
    }
    
    .search-filter .form-select {
        max-width: 100%;
        border-left: 1px solid #ced4da;
        border-top: none;
    }
    
    #leaderModal .modal-body .row {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .leaders-hero h1 {
        font-size: 28px;
    }
    
    .leaders-hero p.lead {
        font-size: 16px;
    }
    
    .leader-image {
        height: 220px;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Timeline Styles */
.past-events-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.past-events-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-date {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Alternate timeline items */
.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

/* Modal Enhancements */
.modal-lg .modal-body {
    padding: 2rem;
}

.event-meta {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.event-meta p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.event-meta i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Toast Styles */
.toast {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Lightbox Overrides */
.lb-data .lb-caption {
    font-size: 16px;
    line-height: 1.4;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 1;
}

.lb-close {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="24px" height="24px"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') no-repeat center center;
    width: 24px;
    height: 24px;
    margin-top: 10px;
    margin-right: 10px;
}

/* Form Styles */
.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    max-height: 180px;
    margin-bottom: 15px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Executive List Styles */
.executive-list {
    margin-bottom: 20px;
}

.executive-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(64, 224, 208, 0.03);
}

.executive-item:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.executive-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.executive-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Facts List */
.facts-list {
    margin-top: 20px;
}

.fact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.fact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.fact-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.fact-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-color);
    color: var(--primary-color);
}

/* Success Story Modal Styles */
#successStoryModal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

#successStoryModal .modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

#successStoryModal .modal-title {
    font-weight: 700;
}

#successStoryModal .modal-body {
    padding: 30px;
}

#successStoryModal .modal-footer {
    border-top: none;
    background-color: var(--gray-color);
}

#storyModalImage {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#storyModalImage:hover {
    transform: scale(1.02);
}

#storyModalHeading {
    color: var(--primary-color);
    margin-bottom: 20px;
}

#storyModalDate {
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Animation for modal */
.modal.fade .modal-dialog {
    transform: translateY(-50px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .past-events-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--light-color);
        padding: 20px;
        margin-top: 15px;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-dark .navbar-nav .btn-donate {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }

    .main-event-card .row {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .top-bar .col-md-6 {
        text-align: center;
    }
    
    .top-bar span {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .hero {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .countdown-box {
        margin-top: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .cta-box {
        padding: 30px;
        text-align: center;
    }
    
    .cta-box .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .newsletter-section .col-lg-6 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: 4px;
        width: 100%;
    }

    .event-footer {
        flex-direction: column;
    }

    .event-footer .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p.lead {
        font-size: 16px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 5px;
    }
    
    .countdown-item span {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .footer {
        padding: 60px 0 0;
    }
}