*{

margin:0;
padding:0;
box-sizing:border-box;

}


body{

font-family:
"Segoe UI",
Arial,
sans-serif;

color:#333;

}




/* HERO */

.activity-hero{

height:75vh;

background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),
url("../images/activity2.jpeg");
background-size:cover;
background-position:center;
animation:slideBg 15s infinite;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}



.hero-overlay{

position:absolute;

inset:0;

background:

linear-gradient(
90deg,
rgba(0,70,30,.20),
rgba(0,0,0,.20)
);

}



.hero-content{

position:relative;

color:white;

max-width:900px;

}


.hero-content h1{

font-size:55px;

letter-spacing:2px;

margin-bottom:20px;

}



.hero-content p{

font-size:22px;

}


@keyframes slideBg{

0%{background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),url("../images/activity3.jpeg");}

25%{background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),url("../images/activity1.jpeg");}

50%{background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),url("../images/activity2.jpeg");}
75%{background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),url("../images/agristart expo.jpeg");}
100%{background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),url("../images/activity3.jpeg");}

}

/* INTRO */


.intro{

padding:80px 10%;

text-align:center;

}


.intro h2{

font-size:40px;

color:#0b6b34;

margin-bottom:20px;

}


.intro p{

font-size:18px;

line-height:1.8;

}




/* ACTIVITIES */


.activities{

padding:70px 8%;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:30px;

background:#f7f7f7;

}



.activity-card{

background:white;

padding:40px 30px;

border-radius:15px;

box-shadow:

0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}



.activity-card:hover{

transform:translateY(-10px);

}



.icon{

font-size:45px;

margin-bottom:20px;

}


.activity-card h3{

color:#0b6b34;

font-size:25px;

margin-bottom:15px;

}


.activity-card p{

line-height:1.7;

margin-bottom:20px;

}


.activity-card a{

color:#d49b00;

font-weight:bold;

text-decoration:none;

}



/* PITCH */

.pitch{

background:

linear-gradient(
90deg,
#0b6b34,
#164d2c
);

padding:90px 10%;

color:white;

text-align:center;

}


.pitch h2{

font-size:45px;

margin-bottom:20px;

}


.pitch p{

font-size:20px;

margin-bottom:30px;

}



.pitch button{

padding:15px 40px;

border:none;

background:#d9a400;

color:white;

font-size:17px;

border-radius:30px;

}





/* RECOGNITION */


.recognition{

padding:80px 10%;

}


.recognition h2{

text-align:center;

font-size:40px;

color:#0b6b34;

margin-bottom:50px;

}



.recognition-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}


.recognition-grid div{

padding:30px;

border-left:

5px solid #d9a400;

background:#fafafa;

}


.recognition-grid h3{

margin-bottom:15px;

color:#0b6b34;

}



/* CTA */


.cta{

padding:80px 10%;

background:#111;

color:white;

text-align:center;

}


.cta h2{

font-size:42px;

margin-bottom:20px;

}



.cta a{

display:inline-block;

margin-top:30px;

background:#d9a400;

padding:15px 35px;

border-radius:30px;

color:white;

text-decoration:none;

}




/* MOBILE */


@media(max-width:768px){


.hero-content h1{

font-size:35px;

}


.hero-content p{

font-size:17px;

}


.intro h2,
.pitch h2,
.cta h2{

font-size:30px;

}


}
/*==============================
        AWARD MODAL
==============================*/

.award{
    cursor:pointer;
}


.award-modal{

    position:fixed;

    inset:0;

    background:#fff;

    z-index:99999;

    display:none;

    overflow-y:auto;

    animation:fadeIn .35s ease;

}


.award-modal.show{

    display:block;

}



.award-container{

    width:min(1200px,92%);

    margin:auto;

    padding:60px 0 50px;

}



/* HEADER */

.award-header{

    text-align:center;

    margin-bottom:40px;

}


.award-header h1{

    font-size:2.3rem;

    color:#0b6b32;

    margin-bottom:12px;

}


.award-header p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.7;

}



/* CLOSE BUTTON */

.award-close{

    position:fixed;

    right:25px;

    top:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#0b6b32;

    color:white;

    cursor:pointer;

    font-size:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    transition:.3s;

}


.award-close:hover{

    background:#f39c12;

    transform:rotate(90deg);

}

/* =========================================
   COURSES
========================================= */

.courses{
    padding:100px 0;
    background:#f7f8f7;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.course-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.course-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.18);
}

.course-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.5s;
}

.course-card:hover img{
    transform:scale(1.08);
}

.course-card h3{
    padding:25px 25px 10px;
    color:#0B6B34;
}

.course-card p{
    padding:0 25px 30px;
}



/*==============================
        AWARD GRID
==============================*/


.award-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}



/* CARD */

.award-person{

    position:relative;

    height:360px;

    overflow:hidden;

    border-radius:18px;

    background:#fff;
  

    box-shadow:
    0 12px 35px rgba(0,0,0,.12);

    transition:.35s ease;

}



.award-person:hover{

    transform:translateY(-8px);

}



/* IMAGE */

.award-person img{

    width:100%;

    height:360px;

    object-fit:contain;

    display:block;

}



/* IMAGE OVERLAY */

.award-person::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        to top,
        rgba(0,0,0,.75),
        transparent 65%
    );

}



/* INFO HIDDEN */

.award-info{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:25px;

    background:

    rgba(11,107,50,.92);

    color:white;

    z-index:2;

    transform:translateY(100%);

    transition:.45s ease;

}



/* HOVER SHOW */

.award-person:hover .award-info{

    transform:translateY(0);

}



.award-info h3{

    color:#ffd54f;

    font-size:1.15rem;

    margin-bottom:10px;

}



.award-info p{

    color:white;

    font-size:.9rem;

    line-height:1.6;

    max-height:130px;

    overflow-y:auto;

}



/* SCROLLBAR */

.award-info p::-webkit-scrollbar{

    width:5px;

}


.award-info p::-webkit-scrollbar-thumb{

    background:#ffd54f;

    border-radius:10px;

}



/* ANIMATION */

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}



body.modal-open{

    overflow:hidden;

}



/*==============================
        AWARD CATEGORIES
==============================*/


.award-categories{

    padding:80px 8%;

    background:#f8faf8;

}


.award-categories .section-title{

    text-align:center;

    max-width:850px;

    margin:auto auto 50px;

}


.award-categories h2{

    font-size:2.2rem;

    color:#165b33;

}


.award-categories .section-title p{

    color:#666;

    line-height:1.8;

}


.category-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}


.category-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}


.category-card:hover{

    transform:translateY(-8px);

}


.category-number{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#1d7d42;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

    margin-bottom:20px;

}


.category-card h3{

    color:#165b33;

    margin-bottom:15px;

}


.category-card p{

    color:#666;

    line-height:1.8;

}



/*==============================
        JURY
==============================*/


.jury-box{

    margin-top:70px;

    background:

    linear-gradient(
        135deg,
        #165b33,
        #1e7b47
    );

    color:white;

    border-radius:20px;

    padding:45px;

}


.jury-box h2{

    text-align:center;

    margin-bottom:35px;

}


.jury-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}


.jury-grid div{

    background:rgba(255,255,255,.12);

    padding:25px;

    border-radius:15px;

}


.jury-grid h3{

    color:#ffd54f;

}



/*==============================
        RESPONSIVE
==============================*/


@media(max-width:768px){


.award-container{

    width:92%;

}


.award-header h1{

    font-size:1.8rem;

}


.award-person{

    height:330px;

}


.award-person img{

    height:330px;

}


/* always show text on mobile */

.award-info{

    transform:translateY(0);

}


.award-close{

    width:42px;

    height:42px;

}


.award-categories{

    padding:60px 20px;

}


.jury-box{

    padding:30px 20px;

}


}
/*==============================
OFFICIAL AWARD CATEGORIES
===============================*/

.award-categories{
    padding:90px 8%;
    background:#f8faf8;
}

.award-categories .section-title{
    text-align:center;
    max-width:850px;
    margin:auto auto 60px;
}

.award-categories h2{
    font-size:2.3rem;
    color:#165b33;
    margin-bottom:15px;
}

.award-categories .section-title p{
    color:#666;
    line-height:1.8;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.category-card{

    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.category-card:hover{

    transform:translateY(-8px);

}

.category-number{

    width:58px;
    height:58px;
    border-radius:50%;
    background:#1d7d42;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:bold;
    margin-bottom:20px;

}

.category-card h3{

    color:#165b33;
    margin-bottom:15px;
    line-height:1.4;

}

.category-card h4{

    margin-top:20px;
    color:#d39b00;
    font-size:15px;

}

.category-card p{

    color:#666;
    line-height:1.8;

}

.category-card ul{

    margin:15px 0;
    padding-left:20px;
    color:#555;

}

.category-card li{

    margin-bottom:8px;

}

.category-card span{

    display:inline-block;
    margin-top:15px;
    padding:8px 14px;
    background:#edf7ef;
    border-radius:50px;
    color:#1d7d42;
    font-size:14px;
    font-weight:600;

}

.jury-box{

    margin-top:80px;
    background:linear-gradient(135deg,#165b33,#1e7b47);
    color:#fff;
    border-radius:20px;
    padding:50px;

}

.jury-box h2{

    text-align:center;
    margin-bottom:40px;
    color:#fff;

}

.jury-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.jury-grid div{

    background:rgba(255,255,255,.12);
    padding:25px;
    border-radius:15px;
    backdrop-filter:blur(10px);

}

.jury-grid h3{

    margin-bottom:15px;
    color:#ffd54f;

}

.jury-grid p{

    line-height:1.8;

}

@media(max-width:768px){

    .award-categories{

        padding:70px 20px;

    }

    .award-categories h2{

        font-size:1.9rem;

    }

    .jury-box{

        padding:30px 20px;

    }

}

@media(max-width:768px){

.award-header h1{
    font-size:1.8rem;
}

.award-person img{
    height:220px;
}

.award-close{
    width:45px;
    height:45px;
}

}