/* ===================================
   GOOGLE FONT RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    transition:.4s ease;
    background:var(--bg-color);
    color:var(--text-color);
}

/* ===================================
   THEME VARIABLES
=================================== */

:root{

    --primary:#16a34a;
    --primary-dark:#15803d;
    --secondary:#22c55e;

    --bg-color:#ffffff;
    --bg-soft:#f5fff7;

    --card-bg:#ffffff;
    --text-color:#1f2937;

    --text-light:#6b7280;

    --border-color:#e5e7eb;

    --shadow:
    0 15px 35px rgba(0,0,0,.08);

    --gradient:
    linear-gradient(
    135deg,
    #16a34a,
    #22c55e
    );

}

/* ===================================
   DARK MODE
=================================== */

body.dark-mode{

    --bg-color:#0f1117;

    --bg-soft:#151923;

    --card-bg:#1b2130;

    --text-color:#ffffff;

    --text-light:#a9b0bf;

    --border-color:#2d3445;

    --shadow:
    0 15px 40px rgba(0,0,0,.5);

    --gradient:
    linear-gradient(
    135deg,
    #22c55e,
    #4ade80
    );

}

/* ===================================
   CONTAINER
=================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===================================
   SECTION SPACING
=================================== */

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    margin-bottom:15px;
    color:var(--text-color);
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:var(--text-light);
}

/* ===================================
   CUSTOM CURSOR
=================================== */

.cursor{
    width:20px;
    height:20px;

    border:2px solid var(--primary);

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    z-index:9999;

    transform:
    translate(-50%,-50%);

    transition:.08s linear;
}

/* ===================================
   HEADER
=================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(20px);

    background:
    rgba(255,255,255,.8);

    border-bottom:
    1px solid rgba(255,255,255,.2);

}

.dark-mode .header{
    background:
    rgba(15,17,23,.85);
}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;
}

/* ===================================
   LOGO
=================================== */

.logo{

    text-decoration:none;

    font-size:1.8rem;

    font-weight:700;

    color:var(--text-color);
}

.logo span{
    color:var(--primary);
}

/* ===================================
   NAVIGATION
=================================== */

.nav-links{

    display:flex;

    list-style:none;

    gap:30px;
}

.nav-links a{

    text-decoration:none;

    color:var(--text-color);

    font-weight:500;

    position:relative;
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;

    height:2px;

    background:var(--primary);

    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* ===================================
   ACTION BUTTONS
=================================== */

.nav-actions{

    display:flex;

    align-items:center;

    gap:10px;
}

.lang-btn,
.theme-btn,
.menu-btn{

    width:45px;
    height:45px;

    border:none;

    cursor:pointer;

    border-radius:50%;

    background:var(--card-bg);

    color:var(--text-color);

    box-shadow:var(--shadow);

    transition:.3s;
}

.lang-btn:hover,
.theme-btn:hover,
.menu-btn:hover{

    transform:translateY(-3px);
}

.menu-btn{
    display:none;
}

/* ===================================
   HERO SECTION
=================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:100px;

    background:
    radial-gradient(
    circle at top left,
    rgba(34,197,94,.15),
    transparent 40%
    );
}

.hero-container{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:70px;

    align-items:center;
}

/* ===================================
   HERO CONTENT
=================================== */

.hero-badge{

    display:inline-block;

    background:
    rgba(34,197,94,.15);

    color:var(--primary);

    padding:10px 18px;

    border-radius:30px;

    font-size:.9rem;

    margin-bottom:20px;
}

.hero-content h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:15px;
}

.hero-content h2{

    font-size:1.5rem;

    color:var(--primary);

    margin-bottom:25px;
}

.hero-content p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:35px;
}

/* ===================================
   BUTTONS
=================================== */

.hero-buttons{

    display:flex;

    gap:15px;

    margin-bottom:45px;
}

.btn{

    text-decoration:none;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.primary-btn{

    background:var(--gradient);

    color:white;
}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px
    rgba(34,197,94,.3);
}

.secondary-btn{

    border:2px solid var(--primary);

    color:var(--primary);
}

.secondary-btn:hover{

    background:var(--primary);

    color:white;
}

/* ===================================
   HERO STATS
=================================== */

.hero-stats{

    display:flex;

    gap:40px;

    flex-wrap:wrap;
}

.stat h3{

    color:var(--primary);

    font-size:2rem;
}

.stat p{

    margin-top:8px;

    font-size:.95rem;
}

/* ===================================
   HERO IMAGE
=================================== */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;
}

.image-wrapper{

    width:420px;
    height:520px;

    overflow:hidden;

    border-radius:30px;

    background:var(--gradient);

    padding:8px;

    box-shadow:var(--shadow);
}

.image-wrapper img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:25px;
}

/* ===================================
   FLOATING CARDS
=================================== */

.floating-card{

    position:absolute;

    background:var(--card-bg);

    padding:14px 22px;

    border-radius:20px;

    box-shadow:var(--shadow);

    font-weight:600;

    animation:
    float 4s ease-in-out infinite;
}

.card-1{

    top:50px;
    left:-20px;
}

.card-2{

    bottom:50px;
    right:-20px;
}

@keyframes float{

    0%{
        transform:
        translateY(0);
    }

    50%{
        transform:
        translateY(-15px);
    }

    100%{
        transform:
        translateY(0);
    }
}

/* ===================================
   BACK TO TOP
=================================== */

#backToTop{

    position:fixed;

    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:white;

    background:var(--gradient);

    box-shadow:var(--shadow);

    z-index:999;

    display:none;
}
/* ===================================
   ABOUT SECTION
=================================== */

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.about-card{
    background:var(--card-bg);
    padding:35px;
    border-radius:25px;
    box-shadow:var(--shadow);
    transition:.35s ease;
    border:1px solid var(--border-color);
}

.about-card:hover{
    transform:translateY(-10px);
}

.about-card.large{
    grid-column:span 2;
}

.about-card i{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:20px;
}

.about-card h3{
    margin-bottom:15px;
}

.about-card p{
    line-height:1.8;
    color:var(--text-light);
}

/* ===================================
   TIMELINE
=================================== */

.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{
    content:"";
    position:absolute;
    left:20px;
    top:0;
    width:4px;
    height:100%;
    background:var(--gradient);
}

.timeline-item{
    position:relative;
    margin-left:70px;
    margin-bottom:50px;
    background:var(--card-bg);
    padding:30px;
    border-radius:20px;
    box-shadow:var(--shadow);
    border:1px solid var(--border-color);
}

.timeline-item::before{
    content:"";
    position:absolute;
    left:-60px;
    top:30px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--primary);
}

.year{
    display:inline-block;
    margin-bottom:10px;
    background:var(--gradient);
    color:#fff;
    padding:8px 14px;
    border-radius:25px;
    font-size:.85rem;
    font-weight:600;
}

.timeline-item h3{
    margin-bottom:10px;
}

.timeline-item h4{
    color:var(--primary);
    margin-bottom:15px;
}

.timeline-item p{
    color:var(--text-light);
    line-height:1.8;
}

/* ===================================
   CAREER SECTION
=================================== */

.career-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.career-card{
    background:var(--card-bg);
    padding:35px;
    border-radius:25px;
    box-shadow:var(--shadow);
    border:1px solid var(--border-color);
    transition:.35s;
}

.career-card:hover{
    transform:translateY(-10px);
}

.career-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--gradient);
    color:white;
    border-radius:18px;
    font-size:1.5rem;
    margin-bottom:20px;
}

.career-card h3{
    margin-bottom:10px;
}

.career-card h4{
    color:var(--primary);
    margin-bottom:10px;
}

.career-card span{
    display:block;
    margin-bottom:15px;
    color:var(--text-light);
}

.career-card p{
    line-height:1.8;
    color:var(--text-light);
}

/* ===================================
   ORGANIZATION CARDS
=================================== */

.org-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.org-card{
    background:var(--card-bg);
    padding:35px;
    border-radius:25px;
    box-shadow:var(--shadow);
    border:1px solid var(--border-color);
    transition:.35s;
}

.org-card:hover{
    transform:translateY(-12px);
}

.org-card h3{
    margin-bottom:10px;
}

.org-card span{
    color:var(--primary);
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.org-card p{
    line-height:1.8;
    color:var(--text-light);
    margin-bottom:15px;
}

.org-card ul{
    padding-left:18px;
}

.org-card ul li{
    margin-bottom:10px;
    color:var(--text-light);
}

/* ===================================
   MOVEMENTS
=================================== */

.movement-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:25px;
    border:1px solid var(--border-color);
    box-shadow:var(--shadow);
    background:var(--card-bg);
    transition:.35s;
}

.gallery-item{
    overflow:hidden;
    border-radius:25px;
    border:1px solid var(--border-color);
    box-shadow:var(--shadow);
    background:var(--card-bg);
    transition:.35s;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item img{
    width:auto;
    max-width:100%;
    max-height:350px;
    display:block;
    object-fit:contain;
    cursor:pointer;
}

.gallery-modal{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.9);
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease;
    z-index:9999;
}

.gallery-modal.open{
    opacity:1;
    visibility:visible;
}

.gallery-modal-content{
    position:relative;
    max-width:95%;
    max-height:95%;
    width:100%;
}

.gallery-modal-img{
    width:100%;
    height:auto;
    max-height:calc(100vh - 140px);
    display:block;
    border-radius:20px;
    object-fit:contain;
}

.gallery-modal-caption{
    margin-top:15px;
    color:var(--text-light);
    text-align:center;
    font-size:16px;
}

.gallery-modal-close{
    position:absolute;
    top:-10px;
    right:-10px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}

.movement-card{
    background:var(--card-bg);
    padding:35px;
    border-radius:25px;
    box-shadow:var(--shadow);
    border:1px solid var(--border-color);
    transition:.35s;
}

.movement-card:hover{
    transform:translateY(-10px);
}

.movement-card h3{
    margin-bottom:10px;
}

.movement-card h4{
    color:var(--primary);
    margin-bottom:15px;
}

.movement-card p,
.movement-card li{
    color:var(--text-light);
    line-height:1.8;
}

/* ===================================
   VISION SECTION
=================================== */

.vision-box{
    text-align:center;
    padding:70px;
    border-radius:30px;
    background:var(--gradient);
    color:white;
    box-shadow:var(--shadow);
}

.vision-box h2{
    margin-bottom:25px;
    font-size:2.4rem;
}

.vision-box blockquote{
    font-size:1.6rem;
    font-weight:600;
    margin-bottom:30px;
    font-style:italic;
}

.vision-box p{
    max-width:800px;
    margin:auto;
    line-height:1.9;
}

/* ===================================
   REFERENCES
=================================== */

.reference-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.reference-card{
    background:var(--card-bg);
    padding:30px;
    border-radius:25px;
    text-align:center;
    box-shadow:var(--shadow);
    border:1px solid var(--border-color);
    transition:.35s;
}

.reference-card:hover{
    transform:translateY(-10px);
}

.reference-card h3{
    margin-bottom:15px;
}

.reference-card p{
    color:var(--text-light);
    line-height:1.8;
}

/* ===================================
   CONTACT
=================================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.contact-item i{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--gradient);
    color:white;
    border-radius:18px;
    font-size:1.2rem;
}

.contact-item h4{
    margin-bottom:8px;
}

.contact-item p,
.contact-item a{
    color:var(--text-light);
    text-decoration:none;
}

.contact-form{
    background:var(--card-bg);
    padding:35px;
    border-radius:25px;
    box-shadow:var(--shadow);
    border:1px solid var(--border-color);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    padding:16px;
    border:1px solid var(--border-color);
    border-radius:14px;
    background:transparent;
    color:var(--text-color);
    outline:none;
}

.contact-form textarea{
    resize:none;
}

/* ===================================
   FOOTER
=================================== */

.footer{
    background:var(--bg-soft);
    padding:60px 0;
    text-align:center;
    border-top:1px solid var(--border-color);
}

.footer h3{
    margin-bottom:15px;
}

.footer p{
    color:var(--text-light);
}

.footer-socials{
    margin:25px 0;
    display:flex;
    justify-content:center;
    gap:15px;
}

.footer-socials a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    background:var(--gradient);
    transition:.3s;
}

.footer-socials a:hover{
    transform:translateY(-6px);
}

.copyright{
    margin-top:20px;
}

/* ===================================
   SCROLL ANIMATION
=================================== */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ===================================
   TABLET
=================================== */

@media(max-width:992px){

.hero-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-stats{
    justify-content:center;
}

.image-wrapper{
    width:350px;
    height:450px;
}

.contact-grid{
    grid-template-columns:1fr;
}

.about-card.large{
    grid-column:auto;
}

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

.menu-btn{
    display:block;
}

.navbar{
    position:fixed;
    top:85px;
    right:-100%;
    width:280px;
    height:calc(100vh - 85px);
    background:var(--card-bg);
    transition:.4s;
    box-shadow:var(--shadow);
}

.navbar.active{
    right:0;
}

.nav-links{
    flex-direction:column;
    padding:40px;
    gap:25px;
}

.hero-content h1{
    font-size:2.8rem;
}

.hero-content h2{
    font-size:1.2rem;
}

.section-title h2{
    font-size:2rem;
}

.image-wrapper{
    width:100%;
    max-width:320px;
    height:400px;
}

.floating-card{
    display:none;
}

.vision-box{
    padding:40px 25px;
}

.vision-box blockquote{
    font-size:1.2rem;
}

.timeline-item{
    margin-left:50px;
}

}

@media(max-width:480px){

.hero-content h1{
    font-size:2.2rem;
}

.hero-buttons{
    flex-direction:column;
}

.btn{
    width:100%;
}

.section{
    padding:70px 0;
}

}