
/* Mobile Menu Button Styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

/* Hamburger icon */
.hamburger-icon {
    display: block;
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

/* Animate to X when active */
.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -25px;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile styles */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .nav-social {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px; /* Adjust based on your nav height */
        left: 0;
        right: 0;
        background: #333; /* Fallback color */
        background: var(--dark-color, #333);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.show {
        display: flex !important;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        transition: background 0.3s;
    }
    
    .nav-menu a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0,0,0,0.3);
        box-shadow: none;
        width: 100%;
        margin: 0;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding-left: 40px;
    }
}
/*</style> */
/* Fix horizontal overflow on desktop */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

/* Ensure all sections don't overflow */
section {
    overflow-x: hidden;
}

/* Fix video wrapper overflow */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

/* Fix image overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Fix grid layouts that might cause overflow */
.highlight-grid,
.sectors-grid,
.awards-grid,
.values-grid,
.news-grid,
.video-grid,
.stats-grid {
    display: grid;
    gap: 2rem;
    width: 100%;
}

/* Mobile Menu Fixes */
@media (max-width: 1024px) {
    /* Fix navigation container */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        position: relative;
        width: 100%;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    /* Hide desktop navigation items on mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px; /* Adjust based on your nav height */
        left: 0;
        right: 0;
        background: var(--dark-color, #333);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 1000;
    }

    /* Show menu when active */
    .nav-menu.active {
        display: flex;
    }

    /* Mobile menu items */
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        color: white;
        text-decoration: none;
    }

    /* Hide nav actions on mobile or make them smaller */
    .nav-actions {
        display: none;
    }

    /* Or if you want to keep social icons visible */
    .nav-social {
        display: flex;
        gap: 0.5rem;
        margin-right: 10px;
    }

    .nav-social a {
        font-size: 1rem;
    }

    /* Dropdown menu on mobile */
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0,0,0,0.2);
        margin: 0;
        box-shadow: none;
        width: 100%;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    /* Fix hero section on mobile */
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 20px;
    }

    .hero-image {
        flex: 1;
        max-width: 300px;
        margin: 0 auto;
    }

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

    /* Fix other potentially overflowing elements */
    .bio-content,
    .political-overview,
    .contact-grid,
    .hotel-details {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-date {
        text-align: left;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    /* Ensure tables don't overflow */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Fix form elements */
    input, textarea, select {
        max-width: 100%;
    }
}

/* Additional mobile fixes for smaller screens */
@media (max-width: 768px) {
    /* Reduce padding and margins */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 2rem 0;
    }

    /* Stack grid layouts on mobile */
    .highlight-grid,
    .sectors-grid,
    .awards-grid,
    .values-grid,
    .news-grid,
    .video-grid,
    .stats-grid,
    .impact-numbers,
    .roles-grid,
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Fix newsletter form */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Fix buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Fix featured article on mobile */
    .featured-article {
        flex-direction: column;
    }

    .article-image {
        flex: 1;
        width: 100%;
    }

    /* Fix footer on mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Ensure nothing causes horizontal scroll */
.main-nav,
.hero-section,
.highlights,
.quote-section,
.featured-video,
.page-header,
section {
    width: 100%;
    overflow-x: hidden;
}

/* Fix any absolute positioned elements */
.search-bar {
    left: 0;
    right: 0;
    width: 100%;
}

/* Prevent long words from breaking layout */
p, h1, h2, h3, h4, h5, h6, li, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}


/* Emergency mobile menu fix */
@media (max-width: 1024px) {
    .main-nav {
        position: relative;
        z-index: 999;
    }
    
    .nav-container {
        min-height: 60px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: relative;
        z-index: 1002;
    }
    
    .nav-logo {
        flex: 1;
    }
    
    /* Ensure menu doesn't push content down when closed */
    .nav-menu:not(.active) {
        display: none !important;
    }
}



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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #FFD700;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #444;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-color);
    margin:0;
}

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

/* Navigation */
.main-nav {
    background: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo a {
    color: var(--accent-color);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.nav-social a {
    color: white;
    margin-left: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-social a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #FFC700;
}

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

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

.hero-image {
    flex: 0 0 400px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
    background: var(--light-color);
}

.highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.highlight-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Quote Section */
.quote-section {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.quote-section cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Featured Video */
.featured-video {
    padding: 4rem 0;
}

.featured-video h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* Biography Section */
.biography {
    padding: 4rem 0;
}

.bio-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.bio-image {
    flex: 0 0 300px;
}

.bio-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.bio-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bio-text h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.bio-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-date {
    flex: 0 0 150px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
    padding-right: 2rem;
}

.timeline-content {
    flex: 1;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Values Section */
.values-section {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Political Content */
.political-content {
    padding: 4rem 0;
}

.political-overview {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.overview-content {
    flex: 1;
}

.overview-image {
    flex: 0 0 400px;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.political-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
}

.stat h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Business Content */
.business-sectors {
    margin: 4rem 0;
}

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

.sector-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-color);
}

.sector-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sector-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.sector-card ul {
    list-style: none;
    margin-top: 1rem;
}

.sector-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Hotel Showcase */
.hotel-showcase {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.hotel-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.hotel-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hotel-info i {
    color: var(--primary-color);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.video-card .video-wrapper {
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-card h3 {
    padding: 1rem;
    color: var(--primary-color);
}

.video-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* Foundation Cards */
.foundation-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.foundation-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.foundation-details {
    margin-top: 1.5rem;
}

.foundation-details h4 {
    color: var(--secondary-color);
    margin: 1rem 0 0.5rem;
}

.foundation-details ul {
    list-style: none;
    padding-left: 1rem;
}

.foundation-details li {
    padding: 0.3rem 0;
    position: relative;
}

.foundation-details li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Impact Stats */
.impact-stats {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.impact-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #555;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        flex: 1;
        max-width: 300px;
    }
    
    .bio-content {
        flex-direction: column;
    }
    
    .bio-image {
        flex: 1;
    }
    
    .political-overview {
        flex-direction: column;
    }
    
    .overview-image {
        flex: 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-details {
        grid-template-columns: 1fr;
    }
}



/* News Page Styles */
.news-featured {
    margin-bottom: 3rem;
}

.featured-article {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-image {
    flex: 0 0 400px;
}

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

.article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-date, .news-date {
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 3px solid var(--primary-color);
}

.newsletter-signup {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
}

/* Awards Page Styles */
.awards-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.award-card.special {
    background: var(--primary-color);
    color: white;
}

.award-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.award-card.special .award-icon {
    color: var(--accent-color);
}

.award-type {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.award-card.special .award-type {
    color: rgba(255,255,255,0.8);
}

.recognition-section {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 10px;
}

.recognition-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

/* Youth Empowerment Styles */
.youth-intro {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.youth-stat {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.youth-stat h3 {
    font-size: 2rem;
    color: var(--accent-color);
}

.program-detail {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.program-icon {
    flex: 0 0 100px;
    font-size: 4rem;
    color: var(--primary-color);
}

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

.story-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid var(--primary-color);
}

.story-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.youth-message {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.signature {
    text-align: right;
    font-style: italic;
    margin-top: 1rem;
    color: var(--accent-color);
}

/* Women's Initiatives Styles */
.impact-showcase {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.impact-numbers {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.impact-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.women-program {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.women-program h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.testimonial {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial:before {
    content: """;
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonial cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.call-to-action {
    text-align: center;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 10px;
    margin-top: 3rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .featured-article {
        flex-direction: column;
    }
    
    .article-image {
        flex: 1;
    }
    
    .youth-intro {
        flex-direction: column;
    }
    
    .intro-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .program-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .program-content {
        grid-template-columns: 1fr;
    }
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-color);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 0 0 5px 5px;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
}


</style>
