/*==================================================
ILNPP WEBSITE
Main Stylesheet
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#222;
    background:#fff;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    font-size:38px;
    color:#008751;
    margin-bottom:50px;
}

/*==========================================
HEADER
==========================================*/

.header{
    background:#008751;
    color:#fff;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    box-shadow:0 3px 8px rgba(0,0,0,.2);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo h2{
    color:#FFD700;
    font-size:32px;
}

.logo span{
    display:block;
    font-size:12px;
    letter-spacing:1px;
}

.navbar ul{
    display:flex;
    gap:25px;
}

.navbar a{
    color:#fff;
    font-weight:bold;
    transition:.3s;
}

.navbar a:hover,
.navbar .active{
    color:#FFD700;
}

#menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/*==========================================
HERO
==========================================*/

.hero{
    background:url("b.png") center/cover no-repeat;
    height:100vh;
    margin-top:80px;
}

.hero-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:flex;
    align-items:center;
}

.hero-content{
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
}

.btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 40px;
    background:#FFD700;
    color:#000;
    border-radius:6px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#fff;
}

/*==========================================
ABOUT
==========================================*/

.about p{
    text-align:center;
    max-width:900px;
    margin:auto;
    font-size:18px;
}

.about-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.box:hover{
    transform:translateY(-10px);
}

.box i{
    font-size:50px;
    color:#008751;
    margin-bottom:20px;
}

/*==========================================
COUNTER
==========================================*/

.counter{
    background:#008751;
    color:#fff;
    padding:70px 0;
}

.counter .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
}

.count-box h2{
    font-size:50px;
    color:#FFD700;
}

/*==========================================
SERVICES
==========================================*/

.services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service{
    background:#fafafa;
    padding:35px;
    text-align:center;
    border-radius:10px;
    transition:.3s;
}

.service:hover{
    background:#008751;
    color:#fff;
}

.service:hover i{
    color:#FFD700;
}

.service i{
    font-size:50px;
    color:#008751;
    margin-bottom:20px;
}

/*==========================================
NEWS
==========================================*/

.latest-news{
    padding:80px 0;
    background:#f5f5f5;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 5px 12px rgba(0,0,0,.1);
}

.news-card img{
    height:240px;
    object-fit:cover;
}

.news-card .content{
    padding:25px;
}

.news-card h3{
    margin-bottom:15px;
}

.news-card a{
    display:inline-block;
    margin-top:15px;
    color:#008751;
    font-weight:bold;
}

/*==========================================
JOIN CTA
==========================================*/

.join-banner{
    background:#FFD700;
    text-align:center;
    padding:80px 20px;
}

.join-banner h2{
    font-size:42px;
    margin-bottom:20px;
}

/*==========================================
FOOTER
==========================================*/

footer{
    background:#111;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    padding:60px 0;
}

.footer-grid h3{
    margin-bottom:20px;
}

.footer-grid li{
    margin:10px 0;
}

.footer-grid a{
    color:#ddd;
}

.footer-grid a:hover{
    color:#FFD700;
}

.social{
    display:flex;
    gap:15px;
}

.social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#008751;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.social a:hover{
    background:#FFD700;
    color:#000;
}

.copyright{
    border-top:1px solid #333;
    text-align:center;
    padding:20px;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.about-grid,
.services,
.news-grid,
.counter .container,
.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero h1{
    font-size:42px;
}

}

@media(max-width:768px){

#menu-btn{
    display:block;
    color:#fff;
}

.navbar{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#008751;
    display:none;
}

.navbar.active{
    display:block;
}

.navbar ul{
    flex-direction:column;
}

.navbar li{
    text-align:center;
    padding:15px;
}

.about-grid,
.services,
.news-grid,
.counter .container,
.footer-grid{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:18px;
}

.section-title{
    font-size:30px;
}

}

@media(max-width:480px){

.hero h1{
    font-size:28px;
}

.btn{
    padding:12px 28px;
}

.logo h2{
    font-size:24px;
}

.logo span{
    font-size:10px;
}

}