html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins',sans-serif;
    padding-top: 90px;
}
/*navbar*/
.navbar{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: #223c65;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#e67e22;
}

/*logo*/
.logo h2{
    color:#f3f4f6;
    font-size:15px;
    font-weight:700;
}

.logo{
    display:flex;
    align-items:center;
    gap:25px;
}

.logo img{
    height: 45px;
}

.logo span{
    font-size:28px;
    font-weight:700;
    color:#E67E22;
}

/*Navigation*/
.nav-links{
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-links a{
    text-decoration: none;
    color: #f3f4f6;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}
.nav-links a:hover{
    color: #E67E22;
}
.navbar-actions{
    display:flex;
    align-items:center;
    gap:15px;
}
.theme-toggle{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f3f4f6;
    border-radius:50%;
    cursor:pointer;
    font-size:20px;
    transition:0.3s ease;
}
.theme-toggle:hover{
    transform:scale(1.1);
}
/*button*/
.join-btn{
    text-decoration: none;
    background:#E67E22;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.join-btn:hover{
    transform: translateY(-2px);
}
/* Hero Section*/
.hero{
    min-height: calc(100vh-90px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: #ffffff;
}
/*Left side*/
.hero-content{
    width: 55%;
}
.hero-content h1{
    font-size: 56px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 25px;
}
.hero-content p{
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}
/*button*/
.hero-buttons{
    display: flex;
    gap: 20px;
}
.primary-btn{
    text-decoration: none;
    background: #E67E22;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}
.primary-btn:hover{
    transform:translateY(-3px);
}
.secondary-btn{
    text-decoration: none;
    border: 2px solid #E67E22;
    color: #E67E22;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}
.secondary-btn:hover{
    background:#E67E22;
    color:white;
}
/*right side image*/
.hero-image{
    width: 45%;
    text-align: right;
}
.hero-image img{
    width: 100%;
    max-width: 550px;
}

/*About GMGA*/
.about{
    padding: 100px 8%;
    background: #f8f9fa;
}
.about-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-image{
    width: 100%;
}
.about-image img{
   width:100%;
    max-width:800px;       /* Makes the image larger */
    height: 830px;          /* Increase image height */
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
.about-content{
    flex:1;
}
.section-tag{
    display: block;
    width: 100%;
    text-align: center;
    color: #E67E22;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.about-content h2{
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-content p{
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}
.about-cards{
    display: flex;
    gap: 20px;
    flex-direction:column;
}
.about-card{
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.about-card h3{
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}
.about-card p{
    margin-bottom:0;
}

/*our journey*/

.journey{
    padding: 100px 8%;
    background: #ffffff;
}
.journey-header{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}
.journey-header h2{
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin: 15px 0;
}
.journey-header p{
    color: #6b7280;
    line-height: 1.8;
}
.roadmap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    position: relative;
    flex-wrap: wrap;
}
.roadmap::before{
    content:'';
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:10%;
    width:80%;
    height:4px;
    background:#E67E22;
    z-index:-1;
}
.roadmap-item{
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 1;
}
.roadmap-circle{
    width:110px;
    height:110px;
    background:#E67E22;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    font-weight:600;
    margin:0 auto;
    position:relative;
    z-index:2;
}
.future-circle{
    background:#1F2937;
}
.roadmap-item h3{
    margin-top:15px;
    color:#1F2937;
    font-size:18px;
    font-weight:600;
}
.roadmap-item:hover .roadmap-circle{
    transform:translateY(-8px) scale(1.05);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.roadmap-line{
    width: 80px;
    height:2px;
    background:#E67E22;
    margin:0 2px;
}

/* Leadership Team */

.leadership{
    padding:100px 8%;
    background:#f8f9fa;
}

.leadership-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.leadership-header h2{
    font-size:42px;
    font-weight:700;
    color:#1f2937;
    margin:15px 0;
}

.leadership-header p{
    color:#6b7280;
    line-height:1.8;
}

.leadership-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.leader-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    padding-bottom:20px;
}

.leader-card:hover{
    transform:translateY(-8px);
}

.leader-card img{
    width:100%;
    height:320px;
    object-fit:contain;
}

.leader-card h3{
    margin-top:20px;
    font-size:22px;
    color:#1f2937;
}

.leader-card span{
    display:block;
    margin-top:8px;
    color:#E67E22;
    font-weight:600;
}

/* Leadership Popup */

.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.modal-content{
    background:#fff;
    width:90%;
    max-width:600px;
    margin:5% auto;
    padding:30px;
    border-radius:15px;
    text-align:center;
    position:relative;
    animation:popup 0.3s ease;
}

.modal-content img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}

.modal-content h2{
    margin-bottom:5px;
}

.modal-content h4{
    color:#666;
    margin-bottom:15px;
}
.modal-content p{
    color:#555;
    text-align:justify;
    font-weight: 600;
}

.close{
    position:absolute;
    right:20px;
    top:15px;
    font-size:32px;
    cursor:pointer;
}

@keyframes popup{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/*Local Initiatives*/
.initiatives{
    padding: 50px 8%;
    background-color: #f8f9fa;
    text-align: center;
}
.initiative-header{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}
.initiative-header h2{
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin: 15px 0;
}
.initiatives-header p{
    color:#6b7280;
    line-height:3.5;
}
.initiatives-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.initiative-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    display:block;
    width:100%;
}
.initiative-card:hover{
    transform:translateY(-8px);
}
.initiative-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}
.initiative-content{
    padding:25px;
}
.initiative-content h3{
    font-size:24px;
    font-weight:600;
    color:#1f2937;
    margin-bottom:15px;
}
.initiative-content p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:20px;
}
.initiative-content span{
    color:#E67E22;
    font-weight:600;
}

.learn-btn{

    margin-top:15px;

    background:#E67E22;

    color:#fff;

    border:none;

    padding:12px 25px;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.learn-btn:hover{

    background:#cf6b13;

}

.program-modal{

    position:fixed;
    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.65);

    overflow-y:auto;

    padding:30px;

    z-index:9999;

}

.modal-box{

    width:95%;

    max-width:1100px;

    max-height:90vh;

    overflow-y:auto;

    background:#fff;

    border-radius:20px;

    padding:35px;

    position:relative;

    animation:popup .35s ease;

}

@keyframes popup{

    from{

        transform:translateY(40px);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

.close-modal{

    position:absolute;

    right:20px;

    top:15px;

    border:none;

    background:none;

    font-size:35px;

    cursor:pointer;

    color:#555;

}
/*==================== Modal Content ====================*/

.modal-title{

    text-align:center;

    margin-bottom:10px;

    color:#1f2937;

    font-size:38px;

    font-weight:700;

}

.modal-subtitle{

    text-align:center;

    color:#E67E22;

    font-size:20px;

    margin-bottom:35px;

}

.program-overview{

    background:#f8f9fa;

    padding:25px;

    border-left:5px solid #E67E22;

    border-radius:12px;

    margin-bottom:35px;

}

.program-overview p{

    line-height:1.9;

    color:#555;

    text-align:justify;

}

.section-heading{

    font-size:28px;

    color:#1f2937;

    margin:40px 0 20px;

    border-left:5px solid #E67E22;

    padding-left:15px;

}

/*================ Objectives =================*/

.objectives{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.objective-card{

    background:#ffffff;

    border-radius:15px;

    padding:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    display:flex;

    align-items:flex-start;

    gap:15px;

}

.objective-icon{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#E67E22;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    flex-shrink:0;

}

.objective-card p{

    margin:0;

    line-height:1.8;

    color:#555;

}

/*================ Timeline =================*/

.timeline{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:20px;

}

.timeline-card{

    background:#fafafa;

    border-left:5px solid #E67E22;

    padding:22px;

    border-radius:15px;

    transition:.3s;

}

.timeline-card:hover{

    transform:translateY(-5px);

}

.timeline-card h4{

    color:#1f2937;

    margin-bottom:6px;

}

.timeline-time{

    color:#E67E22;

    font-weight:600;

    margin-bottom:15px;

    display:block;

}

.timeline-card ul{

    padding-left:18px;

    color:#555;

    line-height:1.9;

}

/*================ Resources =================*/

.resources{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.resource{

    background:#f8f9fa;

    padding:18px;

    border-radius:12px;

    display:flex;

    align-items:center;

    gap:15px;

}

.resource-icon{

    font-size:30px;

}

/*================ Footer =================*/

.program-footer{

    margin-top:40px;

    background:#1f2937;

    color:#fff;

    padding:25px;

    border-radius:15px;

    text-align:center;

}

.program-footer h3{

    margin-bottom:10px;

    color:#fff;

}

.program-footer p{

    color:#ddd;

    line-height:1.8;

}

/*================ Responsive =================*/

@media(max-width:900px){

.objectives{

grid-template-columns:1fr;

}

.timeline{

grid-template-columns:1fr;

}

.resources{

grid-template-columns:1fr;

}

.modal-title{

font-size:30px;

}

.section-heading{

font-size:24px;

}

}

@media(max-width:600px){

.modal-box{

padding:20px;

}

.modal-title{

font-size:26px;

}

.modal-subtitle{

font-size:17px;

}

}
/* Global Initiatives */

.global-initiatives{
    padding:100px 8%;
    background:#ffffff;
}

.global-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.global-header h2{
    font-size:42px;
    font-weight:700;
    color:#1f2937;
    margin:15px 0;
}

.global-header p{
    color:#6b7280;
    line-height:1.8;
}

.global-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.global-card{
    background:#f8f9fa;
    padding:20px;
    border-radius:0px;
    text-align:center;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.global-card:hover{
    transform:translateY(-8px);
}

.global-icon{
    font-size:50px;
    margin-bottom:20px;
}

.global-card h3{
    font-size:22px;
    font-weight:600;
    color:#1f2937;
    margin-bottom:15px;
}

.global-card p{
    color:#6b7280;
    line-height:1.8;
}
/*=========================================
        EVENTS & ACTIVITIES
=========================================*/

.events{
    padding:80px 8%;
    background:#f8f9fa;
}

.events-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.events-header .section-tag{
    color:#E67E22;
    font-size:25px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.events-header h2{
    font-size:48px;
    color:#1F2937;
    margin:18px 0;
    font-weight:700;
}

.heading-line{
    width:70px;
    height:4px;
    background:#E67E22;
    margin:18px auto 28px;
    border-radius:10px;
}

.events-header p{
    font-size:20px;
    color:#6B7280;
    line-height:1.8;
}

/*========== GRID ==========*/

.events-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/*========== CARD ==========*/

.event-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    transition:.4s ease;
    background:#fff;
}

.event-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

/*========== OVERLAY ==========*/

.event-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    text-align:center;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.45),
        rgba(0,0,0,.08)
    );
    transition:.4s ease;
}



/*========== TITLE ==========*/

.event-overlay h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
    line-height:1.3;
}

/*========== HOVER EFFECTS ==========*/

.event-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.event-card:hover img{
    transform:scale(1.08);
}

.event-card:hover .event-overlay{
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.55),
        rgba(0,0,0,.15)
    );
}

.event-card:hover .event-icon{
    transform:translateY(-8px) scale(1.08);
    background:#E67E22;
    color:#fff;
}

/*========== TABLET ==========*/

@media(max-width:1100px){

.events-grid{
    grid-template-columns:repeat(2,1fr);
}

.events-header h2{
    font-size:40px;
}

.events-header p{
    font-size:18px;
}

}

/*========== MOBILE ==========*/

@media(max-width:768px){

.events{
    padding:60px 5%;
}

.events-grid{
    grid-template-columns:1fr;
}

.events-header h2{
    font-size:32px;
}

.events-header p{
    font-size:17px;
}

.event-card img{
    height:240px;
}

.event-overlay h3{
    font-size:24px;
}

.event-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

}

/* Contact Section */

.contact{
    padding:100px 8%;
    background:#f8f9fa;
}

.contact-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.contact-header h2{
    font-size:30px;
    color:#1f2937;
    margin:15px 0;
}

.contact-header p{
    color:#6b7280;
    line-height:1.8;
}

.contact-container{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

.contact-info{
    flex:1;
}

.contact-info h3{
    font-size:30px;
    color:#1f2937;
    margin-bottom:20px;
}

.contact-info p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:25px;
}

.contact-item{
    margin-bottom:15px;
    font-size:17px;
    color:#1f2937;
}

.contact-form{
    flex:1;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
}

.contact-form textarea{
    resize:none;
}

/* Footer */

.footer{
    background:#1f2937;
    color:#ffffff;
    padding:70px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
}

.footer-col p{
    line-height:1.8;
    color:#d1d5db;
}

.footer-col h3{
    margin-bottom:20px;
    color:#ffffff;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#d1d5db;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#E67E22;
}

.footer-social{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

.footer-social a{
    text-decoration:none;
    color:#d1d5db;
    transition:0.3s;
}

.footer-social a:hover{
    color:#E67E22;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
}

.footer-bottom p{
    color:#9ca3af;
}
.qr-container{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:35px;
    flex-wrap:wrap;
}

.qr-card{
    text-align:center;
}

.qr-card img{
    width:180px;
    height:180px;
    object-fit:contain;
    background:#fff;
    padding:10px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
    transition:0.3s ease;
}

.qr-card img:hover{
    transform:scale(1.05);
}

.qr-card p{
    margin-top:12px;
    color:#6b7280;
    font-size:15px;
    line-height:1.6;
}
/* Back To Top Button */

.back-to-top{
    position:fixed;
    bottom:30px;
    right:30px;
    width:50px;
    height:50px;
    background:#E67E22;
    color:white;
    text-decoration:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition:0.3s ease;
    z-index:999;
}

.back-to-top:hover{
    transform:translateY(-5px);
}























































/* DARK MODE */

.dark-mode{
    background:#121212;
    color:white;
}

/* Navbar */
.dark-mode .navbar{
    background:#1a1a1a;
    box-shadow:0 2px 15px rgba(255,255,255,0.05);
}
.dark-mode .nav-links a{
    color:white;
}
.dark-mode .logo h2{
    color:#E67E22;
}

/* Theme Toggle */
.dark-mode .theme-toggle{
    background:#2a2a2a;
}

/* Hero */
.dark-mode .hero{
    background:#121212;
}
.dark-mode .hero-content h1{
    color:white;
}
.dark-mode .hero-content p{
    color:#d1d5db;
}

/* About */
.dark-mode .about{
    background:#1a1a1a;
}
.dark-mode .about-content h2{
    color:white;
}
.dark-mode .about-content p{
    color:#d1d5db;
}
.dark-mode .about-card{
    background:#252525;
}
.dark-mode .about-card h3{
    color:white;
}
.dark-mode .about-card p{
    color:#d1d5db;
}

/* Journey */
.dark-mode .journey{
    background:#121212;
}
.dark-mode .journey-header h2{
    color:white;
}
.dark-mode .journey-header p{
    color:#d1d5db;
}
.dark-mode .roadmap-item h3{
    color:white;
}
/*Local Initiative*/
.dark-mode .initiatives{
    background:#111827;
}

.dark-mode .initiative-card{
    background:#1f2937;
}

.dark-mode .initiative-content h3{
    color:white;
}

.dark-mode .initiative-content p{
    color:#d1d5db;
}
.dark-mode .global-initiatives{
    background:#111827;
}

.dark-mode .global-card{
    background:#1f2937;
}

.dark-mode .global-card h3{
    color:#ffffff;
}

.dark-mode .global-card p{
    color:#d1d5db;
}

.dark-mode .global-header h2{
    color:#ffffff;
}

.dark-mode .global-header p{
    color:#d1d5db;
}
/*Leader*/
.dark-mode .leadership{
    background:#111827;
}

.dark-mode .leader-card{
    background:#1f2937;
}

.dark-mode .leader-card h3{
    color:#ffffff;
}

.dark-mode .leadership-header h2{
    color:#ffffff;
}

.dark-mode .leadership-header p{
    color:#d1d5db;
}
.dark-mode .events{
    background:#111827;
}

.dark-mode .events-header h2{
    color:#ffffff;
}

.dark-mode .events-header p{
    color:#d1d5db;
}

.dark-mode .event-info h3{
    color:#ffffff;
}

.dark-mode .event-info p{
    color:#d1d5db;
}
/*Contact*/
.dark-mode .contact{
    background:#111827;
}

.dark-mode .contact-header h2,
.dark-mode .contact-info h3,
.dark-mode .contact-item{
    color:#ffffff;
}

.dark-mode .contact-header p,
.dark-mode .contact-info p{
    color:#d1d5db;
}

.dark-mode .contact-form input,
.dark-mode .contact-form textarea{
    background:#1f2937;
    border:1px solid #374151;
    color:#ffffff;
}

.dark-mode .nav-links{
    background:#1f1f1f;
}

.dark-mode .nav-links a{
    color:white;
}
/* Leader Modal Dark Mode */
.dark-mode .modal-content{
    background:#1f2937;
    color:#ffffff;
    border:1px solid #374151;
}

.dark-mode .modal-content h2,
.dark-mode .modal-content h3{
    color:#ffffff;
}

.dark-mode .modal-content p{
    color:#d1d5db;
}

.dark-mode .close{
    color:#ffffff;
}

.dark-mode .close:hover{
    color:#E67E22;
}























@media screen and (max-width:768px){

    body{
        overflow-x:hidden;
    }

    /* Navbar */
    .navbar{
        padding:15px;
        height:auto;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .nav-links a{
        font-size:14px;
    }

    .logo h2{
        font-size:22px;
    }

    /* Hero */
    .hero{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .hero-content,
    .hero-image{
        width:100%;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .hero-image img{
        width:100%;
        height:auto;
    }

    /* About */
    .about-container{
        flex-direction:column;
    }

    .about-content{
        text-align:center;
    }

    .about-cards{
        flex-direction:column;
        gap:20px;
    }

    /* Journey */
    .roadmap{
        flex-direction:column;
        gap:20px;
    }

    .roadmap-line{
        width:3px;
        height:40px;
    }

    /* Leadership */
    .leadership-container{
        grid-template-columns:1fr;
    }

    .leader-card img{
        height:250px;
        object-fit:cover;
    }

    /* Initiatives */
    .initiatives-container{
        grid-template-columns:1fr;
    }

    /* Global Initiatives */
    .global-container{
        grid-template-columns:1fr;
    }

    /* Events */
    .event-banner,
    .event-banner.reverse{
        flex-direction:column;
    }

    .event-image,
    .event-info{
        width:100%;
    }

    .event-image img{
        width:100%;
        height:auto;
    }

    .event-info{
        text-align:center;
    }

    .event-info h3{
        font-size:24px;
    }

    /* Contact */
    .contact-container{
        flex-direction:column;
    }

    .contact-info,
    .contact-form{
        width:100%;
    }

    .contact-header h2{
        font-size:28px;
    }

    /* Footer */
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:25px;
    }

    .footer-social{
        align-items:center;
    }

    /* Modal Popup */
    .modal-content{
        width:95%;
        max-height:90vh;
        overflow-y:auto;
        padding:20px;
        margin:10% auto;
    }

    .modal-content img{
        width:120px;
        height:120px;
        object-fit:cover;
    }

    .modal-content h2{
        font-size:22px;
    }
    .menu-toggle{
    display:block;
}

.nav-links{
    display:none;
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    text-align:center;
    padding:20px 0;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    z-index:999;
}

.nav-links.active{
    display:flex;
}

.nav-links li{
    margin:10px 0;
}

.navbar-actions{
    display:none;
}
}