/* === CSS RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === GLOBAL STYLES === */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.arabic {
    font-family: 'Amiri', serif;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: #2e8b57;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #1f6b3d;
    transform: translateY(-2px);
}

.btn-donate {
    background: #d4af37;
}

.btn-donate:hover {
    background: #b5942e;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #1a3e1a;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto;
}

/* === HEADER === */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3e1a;
}

.logo span {
    color: #d4af37;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2e8b57;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* === HERO SECTION === */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* === CAMPAIGNS SECTION === */
.campaigns {
    padding: 80px 0;
    background: white;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.campaign-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.campaign-card:hover {
    transform: translateY(-10px);
}

.campaign-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

/* === QUICK LINKS === */
.quick-links {
    padding: 60px 0;
    background: #f5f5f5;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.link-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.link-card i {
    font-size: 2rem;
    color: #2e8b57;
    margin-bottom: 15px;
}

/* === MISSION SECTION === */
.mission-section {
    padding: 80px 0;
}

.mission-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* === TEAM SECTION === */
.team-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #d4af37;
}

/* === HISTORY SECTION === */
.history-section {
    padding: 80px 0;
}

.history-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.history-text {
    flex: 1;
}

.history-image {
    flex: 1;
}

.history-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* === PROJECTS SECTION === */
.current-projects {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-stats {
    margin: 20px 0;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #2e8b57;
}

/* === COMPLETED PROJECTS === */
.completed-projects {
    padding: 80px 0;
    background: #f5f5f5;
}

.completed-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.completed-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: white;
    padding: 15px;
    border-radius: 8px;
}

.completed-item i {
    color: #2e8b57;
    font-size: 1.2rem;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* === ZAKAT CALCULATOR === */
.zakat-calculator {
    padding: 80px 0;
    background: #f5f5f5;
}

.calculator-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a3e1a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.calculator-result {
    margin-top: 20px;
    padding: 15px;
    background: #f0f8f0;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    color: #1a3e1a;
    display: none;
}

/* === ZAKAT RULES === */
.zakat-rules {
    padding: 80px 0;
}

.rules-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.rules-text {
    flex: 1;
}

.rules-image {
    flex: 1;
}

.rules-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* === PAYMENT METHODS === */
.payment-methods {
    padding: 80px 0;
    background: #f5f5f5;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.method-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.bank-details p, .mobile-details p {
    margin-bottom: 10px;
    text-align: left;
}


/* === PROJECT GALLERY STYLES === */
.project-gallery {
    margin-top: 50px;
    width: 100%;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 20px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
}

/* Navigation arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Thumbnail container */
.thumbnail-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover, .thumbnail.active {
    border-color: #d4af37;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slideshow-container {
        height: 350px;
    }
    
    .slide-caption {
        font-size: 16px;
        padding: 10px;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 250px;
    }
    
    .thumbnail-container {
        gap: 5px;
    }
    
    .thumbnail {
        width: 50px;
        height: 38px;
    }
}


/* === DONATION METHODS === */
.donation-options {
    padding: 80px 0;
    background: #f5f5f5;
}

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.method-header i {
    font-size: 2rem;
    color: #d4af37;
}

.method-details {
    margin-top: 15px;
}

.transfer-details {
    margin: 20px 0;
}

.transfer-details p,
.bank-details p,
.mobile-details p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.transfer-details strong {
    color: #1a3e1a;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .donation-methods {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        padding: 20px;
    }
}

/* === DONATION IMPACT === */
.donation-impact {
    padding: 80px 0;
    background: #f5f5f5;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.impact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.impact-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    min-height: 150px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.2rem;
    color: #d4af37;
}

.social-media {
    margin-top: 30px;
}

.social-media h4 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2e8b57;
}

/* === MAP SECTION === */
.map-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* === FOOTER === */
footer {
    background: #1a3e1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4af37;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}
/* === TRANSPARENCY PAGE STYLES === */
.financial-transparency {
    padding: 80px 0;
    background: #f5f5f5;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.financial-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.highlight-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.financial-reports {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.report-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.report-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.report-card:hover {
    transform: translateY(-5px);
}

.report-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.funds-distribution {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.distribution-chart {
    max-width: 400px;
    margin: 0 auto;
}

.distribution-key {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.key-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-box {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Impact Stories */
.impact-stories {
    padding: 80px 0;
    background: white;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 20px;
    background: white;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.story-meta i {
    margin-right: 5px;
    color: #d4af37;
}

/* Impact Metrics */
.impact-metrics {
    padding: 80px 0;
    background: #f5f5f5;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.metric-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #2e8b57;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.1rem;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .financial-highlights, .report-cards, .story-cards, .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .distribution-key {
        flex-direction: column;
        align-items: center;
    }
}


/* === CAMPAIGN ALERT === */
.campaign-alert {
    background: #f0f8f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #2e8b57;
}

.campaign-alert h3 {
    color: #1a3e1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.campaign-alert i {
    color: #2e8b57;
    font-size: 1.5rem;
}


/* === QURBAN CAMPAIGN STYLES === */
.qurban-campaign {
    padding: 80px 0;
    background: #f9f4e8;
}

.qurban-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.qurban-text {
    flex: 1;
}

.qurban-image {
    flex: 1;
}

.qurban-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.qurban-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.package {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price {
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: 700;
    margin: 10px 0;
}

.qurban-info ul {
    list-style: none;
    margin-top: 20px;
}

.qurban-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qurban-info i {
    color: #d4af37;
}

@media (max-width: 768px) {
    .qurban-content {
        flex-direction: column;
    }
    
    .qurban-packages {
        grid-template-columns: 1fr;
    }
}



/* === ENHANCED NAVIGATION === */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.header-hidden {
    transform: translateY(-100%);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
    background: none;
    border: none;
    color: #333;
}

.mobile-menu.open {
    transform: rotate(90deg);
}

nav ul {
    transition: all 0.5s ease-out;
    list-style: none;
    display: flex;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    nav ul {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        display: block;
        width: 100%;
        text-align: center;
        padding: 0;
        flex-direction: column;
    }
    
    nav ul.show {
        max-height: 500px;
        opacity: 1;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0 !important;
    }
}

/* Add space below fixed nav bar */
main {
    padding-top: 80px; /* Adjust this value as needed */
    min-height: calc(100vh - 80px); /* Ensures footer stays at bottom */
}

/* Ensure mobile menu button is visible */
.mobile-menu {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
}




/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mission-content, .history-content, .contact-content {
        flex-direction: column;
    }

    .mission-image, .history-image {
        margin-top: 30px;
    }
    
/* === NAVIGATION STYLES === */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
    margin: 0;
    padding: 0 20px;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2e8b57;
}

/* Mobile menu button - hidden by default */
.mobile-menu {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    background: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1001;
}

/* Mobile styles */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        height: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 0;
    }
    
    nav ul.show {
        max-height: 500px;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 10px;
    }

}


}

