/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

/* Responsive Container */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-wrapper {
        box-shadow: none;
        border-radius: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* Top Header */
.top-header {
    background: #0B3D2E;
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-header-left .contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-header-left .contact-item .icon {
    font-size: 0.9rem;
}

.top-header-right .social-links {
    display: flex;
    gap: 12px;
}

.top-header-right .social-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.top-header-right .social-links a:hover {
    opacity: 1;
}

/* Responsive Top Header */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }
    
    .top-header-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 0.8rem;
    }
    
    .top-header-left .contact-item {
        gap: 4px;
    }
    
    .top-header-right .social-links {
        gap: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .top-header-left {
        gap: 15px;
        font-size: 0.8rem;
    }
    
    .top-header-right .social-links {
        gap: 10px;
    }
}

/* Main Header */
.main-header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.main-header .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header .logo h1 {
    color: #0B3D2E;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-image {
        height: 60px;
        max-width: 200px;
    }
    
    .main-header .institution-name h2 {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
}

.main-header .institution-name h2 {
    color: #1F7A63;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Bar */
.navigation-bar {
    background: #1F7A63;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navigation-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.navigation-bar .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navigation-bar .nav-menu li {
    margin: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 24px;
}

.hamburger span {
    height: 3px;
    border-radius: 2px;
    background: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navigation-bar .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 20px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navigation-bar .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.navigation-bar .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navigation-bar .container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navigation-bar .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #1F7A63;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .navigation-bar .nav-menu.active {
        right: 0;
    }
    
    .navigation-bar .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .navigation-bar .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        font-size: 16px;
    }
    
    .navigation-bar .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .navigation-bar .btn-primary {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

/* Tablet Navigation */
@media (min-width: 769px) and (max-width: 1024px) {
    .navigation-bar .nav-link {
        padding: 15px 15px;
        font-size: 14px;
    }
    
    .navigation-bar .btn-primary {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.navigation-bar .btn-primary {
    background: #0B3D2E;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 25px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.navigation-bar .btn-primary:hover {
    background: #0a2f23;
    transform: translateY(-1px);
}

/* News Ticker */
.news-ticker {
    background: #A7D7C5;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.news-ticker .ticker-content {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.news-ticker .ticker-item {
    flex-shrink: 0;
    padding: 0 50px;
}

.news-ticker .ticker-item a {
    color: #0B3D2E;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.news-ticker .ticker-item a:hover {
    color: #1F7A63;
}

.news-ticker:hover .ticker-content {
    animation-play-state: paused;
}

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

/* Header Styles */
.header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    background: transparent;
    backdrop-filter: none;
    z-index: auto;
    transition: none;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #0B3D2E;
    font-size: 2rem;
    font-weight: 700;
}

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

.nav-link {
    color: #0B3D2E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1F7A63;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #1F7A63;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #1F7A63;
    color: white;
}

.btn-primary:hover {
    background: #0B3D2E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(31, 122, 99, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1F7A63;
    border: 2px solid #1F7A63;
}

.btn-secondary:hover {
    background: #1F7A63;
    color: white;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: white;
    color: #1F7A63;
}

/* Responsive Buttons */
@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 10px 18px;
    }
    
    .btn-secondary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
}

.btn-outline {
    background: transparent;
    color: #0B3D2E;
    border: 2px solid #0B3D2E;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Page Content Styles */
.page-content {
    padding: 60px 0;
    background: white;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Page Content */
@media (max-width: 768px) {
    .page-content {
        padding: 40px 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .page-content {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.05rem;
    }
}

/* Initiatives Grid Styling */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.initiative-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #1F7A63;
}

.initiative-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1F7A63, #A7D7C5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.initiative-card h3 {
    font-size: 1.5rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.initiative-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsive Initiatives Grid */
@media (max-width: 768px) {
    .initiatives-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
    
    .initiative-card {
        padding: 2rem 1.5rem;
    }
    
    .initiative-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .initiative-card h3 {
        font-size: 1.3rem;
    }
    
    .initiative-card p {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    .initiative-card {
        padding: 2.2rem;
    }
    
    .initiative-card .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .initiative-card h3 {
        font-size: 1.4rem;
    }
}

/* Initiative Details Section */
.initiative-details {
    margin-top: 4rem;
}

.project-details {
    margin-top: 4rem;
}

.detail-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.detail-section h2 {
    font-size: 2.5rem;
    color: #0B3D2E;
    margin-bottom: 1.5rem;
    text-align: center;
}

.detail-section > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.detail-text h3 {
    font-size: 1.8rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.detail-text h3:first-child {
    margin-top: 0;
}

.detail-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.program-highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.program-highlights h4 {
    font-size: 1.5rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
}

.program-highlights ul {
    list-style: none;
    padding: 0;
}

.program-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.program-highlights li:before {
    content: "✓";
    color: #1F7A63;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f0 100%);
}

.projects .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.projects .section-header .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #1F7A63 0%, #2d9678 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(31, 122, 99, 0.3);
}

.projects .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.projects .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Projects Filter & Search */
.projects-filter {
    margin-bottom: 3rem;
}

.filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: #1F7A63;
    background: white;
    box-shadow: 0 0 0 3px rgba(31, 122, 99, 0.1);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.filter-selects {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.filter-select:focus {
    outline: none;
    border-color: #1F7A63;
    box-shadow: 0 0 0 3px rgba(31, 122, 99, 0.1);
}

.view-all-btn {
    background: linear-gradient(135deg, #1F7A63 0%, #2d9678 100%);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 122, 99, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 122, 99, 0.4);
    background: linear-gradient(135deg, #2d9678 0%, #1F7A63 100%);
}

/* Projects Grid */
.projects-grid-container {
    margin-bottom: 4rem;
}

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

/* Responsive Projects Grid */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-image {
        height: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.8rem;
    }
    
    .project-image {
        height: 240px;
    }
}

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

.contact-info {
    padding: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0B3D2E;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1F7A63;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-grid {
        gap: 2.5rem;
    }
    
    .contact-form {
        padding: 2.2rem;
    }
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    display: block;
}

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

.project-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-badge, .sector-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.status-badge.ongoing {
    background: rgba(34, 197, 94, 0.95);
    color: white;
}

.status-badge.completed {
    background: rgba(59, 130, 246, 0.95);
    color: white;
}

.status-badge.upcoming {
    background: rgba(245, 158, 11, 0.95);
    color: white;
}

.sector-badge.infrastructure {
    background: rgba(139, 69, 19, 0.95);
    color: white;
}

.sector-badge.health {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

.sector-badge.education {
    background: rgba(168, 85, 247, 0.95);
    color: white;
}

.sector-badge.agriculture {
    background: rgba(34, 197, 94, 0.95);
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: #1F7A63;
    flex-shrink: 0;
}

.progress-section {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0B3D2E;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1F7A63 0%, #2d9678 100%);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.project-content .btn-primary {
    background: linear-gradient(135deg, #1F7A63 0%, #2d9678 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(31, 122, 99, 0.3);
}

.project-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 122, 99, 0.4);
    background: linear-gradient(135deg, #2d9678 0%, #1F7A63 100%);
}

/* Projects CTA */
.projects-cta {
    background: linear-gradient(135deg, #0B3D2E 0%, #1F7A63 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.projects-cta .btn-primary {
    background: white;
    color: #1F7A63;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.projects-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects .section-header h2 {
        font-size: 2rem;
    }

    .filter-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .search-box {
        min-width: auto;
    }

    .filter-selects {
        width: 100%;
        justify-content: space-between;
    }

    .filter-select {
        flex: 1;
        min-width: 120px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-meta {
        gap: 0.5rem;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .projects-cta {
        padding: 3rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* News Grid Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.news-content {
    padding: 2rem;
}

.news-date {
    color: #1F7A63;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 1.4rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Hero Slider Styles */
.hero-slider .swiper-slide {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.mainSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-content .btn-primary {
    font-size: 1.1rem;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
    font-weight: 600;
}

.slide-content .btn-primary:hover {
    background: white;
    color: #0B3D2E;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Thumbnail Navigation */
.thumbnailSwiper {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 500px;
    z-index: 10;
}

.thumbnailSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    height: 90px;
}

.thumbnailSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: white;
    transform: scale(1.05);
}

.thumbnailSwiper .swiper-slide:hover {
    opacity: 0.8;
}

.thumbnailSwiper img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.thumbnailSwiper span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    padding: 6px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(11, 61, 46, 0.7), rgba(11, 61, 46, 0.7)),
                url('https://picsum.photos/seed/nature/1920/1080.jpg') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: #f8f9fa;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.welcome-content {
    max-width: 620px;
}

.welcome-content .section-subtitle {
    display: inline-block;
    margin-bottom: 1rem;
    color: #0B3D2E;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome-content h2 {
    font-size: 2.8rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.welcome-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.welcome-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    gap: 1.25rem;
}

.welcome-features li {
    padding: 1.5rem;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(11, 61, 46, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.welcome-features h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #0B3D2E;
}

.welcome-features p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.welcome-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f0 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 3rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #1F7A63;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1F7A63, #A7D7C5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-card .btn-outline {
    border-color: #1F7A63;
    color: #1F7A63;
}

.about-card .btn-outline:hover {
    background: #1F7A63;
    color: white;
}

.about-image-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-section:hover .main-image {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 61, 46, 0.9), transparent);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.image-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.image-caption p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.image-caption .btn-primary {
    background: white;
    color: #0B3D2E;
    border: none;
}

.image-caption .btn-primary:hover {
    background: #0B3D2E;
    color: white;
}


/* Projects Section */
/* =========================
   PROJECTS SECTION
========================= */
.projects {
    padding: 80px 20px;
    background: #ffffff;
}

/* Section header (same as About/Initiatives for consistency) */
.projects .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects .section-header h2 {
    font-size: 2.5rem;
    color: #0B3D2E;
    margin-bottom: 15px;
}

.projects .section-header p {
    color: #555;
    font-size: 1.1rem;
}

/* Grid layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 30px;
}

/* Project card */
.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Project image */
.project-card img {
    width: 100%;
    display: block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.3s ease;
}

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

/* Project content */
.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-content h3 {
    font-size: 1.4rem;
    color: #0B3D2E;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.project-content .btn {
    align-self: flex-start;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects .section-header h2 {
        font-size: 2rem;
    }

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

    .project-content {
        padding: 20px;
    }
}

/* Publications Section */
.publications {
    padding: 80px 0;
    background: #f8f9fa;
}

.publications-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: flex-start;
}

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

.publications-left h2 {
    font-size: 2.5rem;
    color: #0B3D2E;
    margin-bottom: 2rem;
    font-weight: 700;
}

.document-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1F7A63, #A7D7C5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.document-icon svg {
    stroke: white;
}

.publications-left p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.category-selector {
    margin-bottom: 2rem;
}

.category-selector label {
    display: block;
    font-size: 1rem;
    color: #0B3D2E;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.category-selector select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #1F7A63;
    border-radius: 8px;
    background: white;
    color: #0B3D2E;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-selector select:hover,
.category-selector select:focus {
    border-color: #0B3D2E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 122, 99, 0.1);
}

.publications-list {
    display: grid;
    gap: 1.25rem;
}

.publication-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid #1F7A63;
}

.publication-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.publication-content {
    flex: 1;
}

.publication-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B3D2E;
    margin-bottom: 0.25rem;
}

.publication-category {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.publication-actions {
    display: flex;
    gap: 0.75rem;
    margin-left: 1rem;
}

.btn-download,
.btn-view {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download {
    background: #1F7A63;
    color: white;
}

.btn-download:hover {
    background: #0B3D2E;
    transform: translateY(-1px);
}

.btn-view {
    background: #A7D7C5;
    color: #0B3D2E;
}

.btn-view:hover {
    background: #1F7A63;
    color: white;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B3D2E, #1F7A63);
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.counter-item {
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #A7D7C5;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #A7D7C5;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #0B3D2E;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: #0B3D2E;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Get Involved Section */
.get-involved {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f0 100%);
}

.get-involved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.involvement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.involvement-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #1F7A63;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.involvement-card .card-icon svg {
    width: 35px;
    height: 35px;
}

.involvement-card h3 {
    font-size: 1.4rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.involvement-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.involvement-card .btn-primary {
    background: #1F7A63;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.involvement-card .btn-primary:hover {
    background: #145c4c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 122, 99, 0.3);
}

@media (max-width: 768px) {
    .get-involved {
        padding: 60px 0;
    }
    
    .get-involved-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .involvement-card {
        padding: 2rem;
    }
    
    .involvement-card h3 {
        font-size: 1.2rem;
    }
    
    .involvement-card p {
        font-size: 0.9rem;
    }
}

/* Donations Section */
.donations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f0 100%);
}

.donations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.donations-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donations-content h3 {
    font-size: 2rem;
    color: #0B3D2E;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.donations-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.donation-options {
    margin-bottom: 2.5rem;
}

.donation-option h4 {
    font-size: 1.3rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.donation-btn {
    padding: 12px 20px;
    background: #1F7A63;
    color: white;
    border: 2px solid #1F7A63;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-btn:hover {
    background: #0B3D2E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 122, 99, 0.3);
}

.donation-btn.active {
    background: #0B3D2E;
    box-shadow: 0 5px 15px rgba(31, 122, 99, 0.3);
}

.custom-amount {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.custom-amount:focus {
    outline: none;
    border-color: #1F7A63;
}

.donation-impact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.donation-impact h4 {
    font-size: 1.3rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.donation-impact ul {
    list-style: none;
    padding: 0;
}

.donation-impact li {
    padding: 0.75rem 0;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.donation-impact li:last-child {
    border-bottom: none;
}

.donation-impact strong {
    color: #1F7A63;
}

.donation-info {
    background: #f0faf7;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #1F7A63;
}

.donation-info h4 {
    font-size: 1.3rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.donation-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.donation-info strong {
    color: #0B3D2E;
}

.donation-option.recurring {
    margin-bottom: 1.5rem;
}

.donation-option.recurring label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
}

.donation-option.recurring input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    text-align: center;
}

.donations-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.donation-highlight {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.donation-highlight h3 {
    font-size: 1.4rem;
    color: #0B3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.donation-highlight p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.donation-highlight ul {
    list-style: none;
    padding: 0;
}

.donation-highlight li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.donation-highlight li:before {
    content: "✓";
    color: #1F7A63;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.donation-highlight.legacy {
    background: linear-gradient(135deg, #1F7A63, #145c4c);
    color: white;
}

.donation-highlight.legacy h3,
.donation-highlight.legacy p {
    color: white;
}

.donation-highlight.legacy li:before {
    color: #A7D7C5;
}

.donation-highlight.legacy a {
    margin-top: 1rem;
}

/* Responsive Design for Donations */
@media (max-width: 992px) {
    .donations-grid {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .donations {
        padding: 60px 0;
    }

    .donations-content {
        padding: 2rem;
    }

    .donations-content h3 {
        font-size: 1.6rem;
    }

    .donation-amounts {
        grid-template-columns: 1fr;
    }

    .donation-impact,
    .donation-info {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #0B3D2E;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #A7D7C5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D2E;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #0B3D2E;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1F7A63;
}

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

/* Footer */
.footer {
    background: #0B3D2E;
    color: white;
    padding: 60px 0 30px;
}

.main-footer {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
    color: #A7D7C5;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-size: 1.4rem;
}

.footer-column h4 {
    font-size: 1.15rem;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #A7D7C5;
}

.footer-logo img {
    max-width: 140px;
    display: block;
    margin-bottom: 1rem;
}

.footer-motto {
    max-width: 280px;
    color: #ccc;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: #1F7A63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: #A7D7C5;
    transform: translateY(-3px);
}

.subscribe-newsletter p {
    color: #ccc;
    margin: 1.5rem 0 0.75rem;
    font-size: 0.95rem;
}

.footer-subscribe-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-subscribe-form input {
    flex: 1 1 180px;
    min-width: 0;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.footer-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.footer-subscribe-form button {
    border-radius: 30px;
    padding: 0.9rem 1.5rem;
    border: none;
}

.footer-credit {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 1rem;
    padding-top: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-credit-item p,
.footer-credit-item a {
    color: #ccc;
    margin: 0;
}

.footer-credit-item a {
    color: #A7D7C5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit-item a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1F7A63;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(31, 122, 99, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #145c4c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 122, 99, 0.4);
}

.back-to-top svg {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: rotate(-90deg) translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mission Page Styles */
.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-section, .vision-section, .values-section {
    margin-bottom: 4rem;
}

.mission-section h2, .vision-section h2, .values-section h2 {
    color: #0B3D2E;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-section p, .vision-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.detail-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.detail-card h3 {
    color: #1F7A63;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.detail-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.goal-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1F7A63;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.goal-item h4 {
    color: #1F7A63;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.goal-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.value-item {
    background: linear-gradient(135deg, #1F7A63 0%, #145c4c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .mission-details {
        grid-template-columns: 1fr;
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-section h2, .vision-section h2, .values-section h2 {
        font-size: 2rem;
    }
    
    .detail-card, .goal-item, .value-item {
        padding: 1.5rem;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-right p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-right a {
    color: #A7D7C5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-right p {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        left: 0;
        transform: none;
        max-width: 100%;
    }
    
    .main-wrapper {
        box-shadow: none;
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-header-left {
        flex-direction: column;
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .main-header .logo h1 {
        font-size: 2.5rem;
    }
    
    .main-header .institution-name h2 {
        font-size: 1rem;
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-header-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .top-header-right {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .navigation-bar .container {
        flex-direction: column;
        padding: 0;
    }
    
    .navigation-bar .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .navigation-bar .nav-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .navigation-bar .btn-primary {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 18px;
        z-index: 1001;
    }

    .navigation-bar .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #1F7A63;
        padding: 5rem 0 0;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .navigation-bar .nav-menu.active {
        left: 0;
    }

    .navigation-bar .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }

    .navigation-bar .nav-menu .nav-link {
        padding: 15px 20px;
        text-align: center;
    }

    .navigation-bar .btn-primary {
        margin: 1rem auto;
        width: calc(100% - 40px);
        max-width: 320px;
        text-align: center;
    }

    .navigation-bar .container {
        position: relative;
    }

    .news-ticker .ticker-item {
        padding: 0 25px;
    }
    
    .news-ticker .ticker-item a {
        font-size: 0.85rem;
    }
    
    /* Hero Slider Responsive */
    .hero-slider {
        height: 80vh;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-content .btn-primary {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    .thumbnailSwiper {
        display: none;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .swiper-pagination {
        bottom: 20px !important;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* =========================
   ABOUT SECTION
========================= */
.about {
    padding: 80px 20px;
    background: #f9fbfa;
}

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

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 2.5rem;
    color: #0B3D2E;
    margin-bottom: 15px;
}

.about-header p {
    color: #555;
    font-size: 1.1rem;
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Cards */
.about-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Icon */
.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #1F7A63;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

/* Card Content */
.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0B3D2E;
}

.about-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid #1F7A63;
    color: #1F7A63;
}

.btn-outline:hover {
    background: #1F7A63;
    color: #fff;
}

/* Image Section */
.about-image-section {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Overlay Caption */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px;
    background: linear-gradient(to top, rgba(11,61,46,0.9), rgba(11,61,46,0.2));
    color: #fff;
    text-align: center;
}

.image-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.image-caption p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Primary Button */
.btn-primary {
    background: #1F7A63;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #145c4c;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2rem;
    }

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

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .welcome-content,
    .welcome-image {
        width: 100%;
    }

    .welcome-content h2 {
        font-size: 2rem;
    }

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

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

    .detail-section {
        padding: 2rem;
    }

    .detail-section h2 {
        font-size: 2rem;
    }

    .publication-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .publication-actions {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .btn-download,
    .btn-view {
        flex: 1;
        justify-content: center;
    }

    .image-caption {
        padding: 25px 15px;
    }

    .image-caption h3 {
        font-size: 1.4rem;
    }
}
    .card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .image-caption {
        padding: 2rem 1.5rem;
    }
    
    .image-caption h3 {
        font-size: 1.4rem;
    }
    
    .image-caption p {
        font-size: 1rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
    }
}

/* Sticky Header on Scroll */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Loading State */
.loading {
    opacity: 0;
    transform: translateY(20px);
}

.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Form Validation */
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Success Message */
.success-message {
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Lazy Loading Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

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

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-image {
        height: 250px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 180px;
    }
    
    .initiative-card .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-image {
        height: 320px;
    }
    
    .logo-image {
        height: 70px;
        max-width: 240px;
    }
}

/* Video and Iframe Responsive */
.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    min-width: 600px;
    width: 100%;
}

@media (max-width: 768px) {
    .table-responsive {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
    }
}

/* Footer Styles */
footer {
    background: #0f172a;
    color: white;
}

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

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-column .logo-img {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.footer-column p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.footer-column .tagline {
    font-style: italic;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-links .fa-chevron-right {
    margin-right: 0.5rem;
    font-size: 0.75rem;
    color: #60a5fa;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item .fa {
    color: #4ade80;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #60a5fa;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link.facebook {
    background: #2563eb;
}

.social-link.facebook:hover {
    background: #1d4ed8;
}

.social-link.twitter {
    background: #60a5fa;
}

.social-link.twitter:hover {
    background: #3b82f6;
}

.social-link.instagram {
    background: #db2777;
}

.social-link.instagram:hover {
    background: #be185d;
}

.social-link.linkedin {
    background: #1e40af;
}

.social-link.linkedin:hover {
    background: #1e3a8a;
}

.social-link.youtube {
    background: #dc2626;
}

.social-link.youtube:hover {
    background: #b91c1c;
}

.social-link .fa {
    color: white;
    font-size: 0.875rem;
}

.newsletter h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.25rem;
    color: white;
    font-size: 0.875rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #60a5fa;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-button {
    padding: 0.5rem 1rem;
    background: #16a34a;
    color: white;
    border: none;
    border-radius: 0.25rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background: #15803d;
}

.footer-divider {
    border-top: 1px solid #334155;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    
    .footer-bottom-grid div:last-child {
        text-align: right;
    }
}

.footer-bottom a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #60a5fa;
}

/* Additional Responsive Utilities */
.hidden-mobile {
    display: block;
}

.visible-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
    
    .visible-mobile {
        display: block;
    }
    
    .text-center-mobile {
        text-align: center;
    }
    
    .full-width-mobile {
        width: 100%;
    }
}

/* Touch-friendly targets for mobile */
@media (max-width: 768px) {
    .nav-link,
    .btn,
    .social-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-item {
        padding: 8px 0;
    }
}

/* Print Styles */
@media print {
    .top-header,
    .navigation-bar,
    .hamburger,
    .footer-divider,
    .social-links {
        display: none;
    }
    
    .main-wrapper {
        box-shadow: none;
        max-width: 100%;
    }
    
    .page-content {
        padding: 20px 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .nav-link:hover {
        background: #000;
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
