*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f5f5;
}

.top-bar{
background:#006400;
color:white;
padding:10px 50px;
display:flex;
justify-content:space-between;
}

header{
background:white;
padding:15px 50px;
display:flex;
justify-content:space-between;
align-items:center;
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#006400;
}

.logo-section{
display:flex;
align-items:center;
gap:20px;
}

.logo-section img{
height:100px;
width:auto;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:600;
}

.hero{
    position:relative;
    height:550px;
    background:url('images/banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
}

.hero::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.10);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:600px;
    margin-left:80px;
}

.hero-content h1{
    font-size:60px;
    line-height:1.2;
    color:#006400;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:24px;
    color:#222;
    line-height:1.6;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    background:#006400;
    color:white;
    text-decoration:none;
    padding:14px 35px;
    border-radius:6px;
    font-size:18px;
    transition:.3s;
}

.hero-btn:hover{
    background:#008000;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
background:white;
padding:30px;
text-align:center;
}

.stat-box h3{
color:#0b5d2a;
font-size:35px;
}

.products{
padding:50px;
background:white;
}

.products h2{
text-align:center;
color:#0b5d2a;
margin-bottom:30px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
}

.card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 0 10px #ddd;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
}

.card h3{
text-align:center;
padding:10px;
}

.info-section{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:20px;
padding:50px;
}

.about,.news,.events{
background:white;
padding:25px;
border-radius:10px;
}

.map-section{
padding:50px;
background:white;
}

.map-section h2{
text-align:center;
margin-bottom:20px;
color:#006400;
}

.map-section iframe{
width:100%;
height:400px;
border:none;
}

.footer-logo{
    text-align:center;
    margin-bottom:25px;
}

.footer-logo img{
    height:70px;
}

.footer{
    background:#006400;
    color:white;
    padding:40px 0 15px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    padding:0 10px;
}

.footer-box{
    flex:1;
    min-width:250px;
}

.footer-box h3{
    margin-bottom:15px;
    font-size:22px;
}

.footer-box p{
    line-height:1.8;
    font-size:16px;
}

.footer hr{
    border:none;
    border-top:1px solid rgba(255,255,255,0.3);
    margin:30px 0 20px;
}

.footer-bottom{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    padding:0 30px;
}

.footer-bottom p{
    margin:0;
}

.social-links a{
    color:white;
    text-decoration:none;
    font-size:24px;
    margin-left:15px;
    transition:0.3s;
}

.social-links a:hover{
    transform:scale(1.2);
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:35px;
text-decoration:none;
}
@media screen and (max-width:768px){

header{
flex-direction:column;
}

nav ul{
flex-direction:column;
}

.stats{
grid-template-columns:1fr;
}

.product-grid{
grid-template-columns:1fr;
}

.info-section{
grid-template-columns:1fr;
}

.hero h2{
font-size:40px;
}

}
.logo-section h1{
font-size:28px;
margin:0;
}

.logo-section h3{
font-size:16px;
margin:0;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:30px;
}

.gallery img{
    width:100%;
    border-radius:10px;
}
.page-title{
    background:#006400;
    color:white;
    text-align:center;
    padding:40px;
}

.page-title h1{
    margin:0;
}
.contact-section{
    padding:50px 20px;
    background:#f5f5f5;
}

.contact-card{
    max-width:800px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.contact-card h2{
    color:#006400;
    margin-bottom:10px;
}

.contact-card p{
    line-height:1.8;
    font-size:16px;
}

.contact-card hr{
    margin:20px 0;
    border:0;
    border-top:1px solid #ddd;
}
/* ABOUT PAGE */

.about-section{
    padding:50px 20px;
    background:#f5f5f5;
}

.about-card{
    max-width:1000px;
    margin:auto;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.about-card h2{
    color:#006400;
    margin-bottom:20px;
}

.about-card p{
    line-height:1.8;
}

.mv-section{
    display:flex;
    gap:30px;
    justify-content:center;
    padding:50px 20px;
    background:#ffffff;
    flex-wrap:wrap;
}

.mv-card{
    width:450px;
    background:#f8f8f8;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.mv-card h2{
    color:#006400;
    margin-bottom:15px;
}

.objectives-section{
    padding:50px 20px;
    background:#f5f5f5;
}

.objectives-card{
    max-width:1000px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.objectives-card h2{
    color:#006400;
    margin-bottom:20px;
}

.objectives-card ul{
    padding-left:20px;
}

.objectives-card li{
    margin-bottom:12px;
    line-height:1.7;
}
.downloads-section{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    padding:50px;
}

.download-card{
    width:300px;
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    text-align:center;
}

.download-card h2{
    color:#006400;
}

.btn{
    display:inline-block;
    margin-top:15px;
    background:#006400;
    color:white;
    padding:10px 20px;
    text-decoration:none;
    border-radius:5px;
}
.gallery-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    padding:50px;
}

.gallery-section img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    transition:.3s;
}

.gallery-section img:hover{
    transform:scale(1.05);
}
.form-section{
    padding:50px;
}

.registration-form{
    max-width:700px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.registration-form label{
    display:block;
    margin-top:15px;
    font-weight:bold;
}

.registration-form input,
.registration-form textarea{
    width:100%;
    padding:10px;
    margin-top:5px;
    border:1px solid #ccc;
    border-radius:5px;
}

.registration-form button{
    margin-top:20px;
    background:#006400;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:5px;
    cursor:pointer;
}
/* SERVICES */

.services-section{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
padding:50px;
}

.service-card{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.service-card h2{
color:#006400;
margin-bottom:10px;
}

/* PRODUCTS PAGE */

.products-page{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
padding:50px;
}

.product-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,.1);
text-align:center;
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
}

.product-card h3{
padding:15px;
color:#006400;
}

/* NEWS */

.news-section{
padding:50px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:25px;
}

.news-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.news-card h2{
color:#006400;
margin-bottom:15px;
}

/* DOWNLOADS */

.downloads-section{
padding:50px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.download-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
text-align:center;
}

.download-card h2{
color:#006400;
margin-bottom:10px;
}

.btn{
display:inline-block;
margin-top:15px;
padding:10px 20px;
background:#006400;
color:white;
text-decoration:none;
border-radius:5px;
}

.btn:hover{
background:#008000;
}

.downloads-section{
    max-width:1200px;
    margin:50px auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.download-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.download-card:hover{
    transform:translateY(-5px);
}

.download-card h2{
    color:#006400;
    margin-bottom:15px;
}

.download-card p{
    color:#666;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    background:#006400;
    color:#fff;
    padding:10px 20px;
    border-radius:5px;
    text-decoration:none;
}

.btn:hover{
    background:#008000;
}

/* DIRECTORS PAGE */

.message-section{
    width:90%;
    max-width:1200px;
    margin:50px auto;
}

.message-card{
    display:flex;
    gap:30px;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.message-card img{
    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:15px;
}

.message-content{
    flex:1;
}

.message-content h2{
    color:#006400;
    margin-bottom:10px;
}

.message-content h3{
    margin-bottom:5px;
}

.message-content span{
    color:#006400;
    font-weight:bold;
}

.message-content p{
    margin-top:15px;
    line-height:1.8;
    color:#555;
}

/* DIRECTORS */

.directors-section{
    padding:60px 5%;
    background:#f8f8f8;
}

.directors-section h2{
    text-align:center;
    color:#006400;
    margin-bottom:40px;
    font-size:36px;
}

.directors-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.director-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.director-card:hover{
    transform:translateY(-8px);
}

.director-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.director-card h3{
    margin:15px 10px 5px;
    color:#222;
}

.director-card p{
    color:#006400;
    font-weight:bold;
    padding-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){

.message-card{
    flex-direction:column;
    text-align:center;
}

.message-card img{
    width:100%;
    height:auto;
}

}


.leadership-preview{
    padding:60px 20px;
    text-align:center;
    background:#f8f8f8;
}

.leadership-preview h2{
    color:#006400;
    margin-bottom:30px;
}

.leadership-grid{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.leader-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    width:250px;
}

.leader-card img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
}

.leader-card h3{
    margin-top:15px;
}

.leader-card p{
    color:#006400;
    font-weight:bold;
}

/* Dropdown */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    display:none;
    z-index:999;
    border-radius:8px;
    overflow:hidden;
}

.dropdown-menu li{
    display:block;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#333;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.dropdown-menu li a:hover{
    background:#008000;
    color:#fff;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

/* Market Rates */

.content-section{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    padding:50px;
}

.rate-card{
    width:220px;
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.rate-card h3{
    color:#006400;
}

/* Schemes */

.scheme-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:50px;
}

.scheme-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

/* Weather */

.weather-grid{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    padding:50px;
}

.weather-card{
    width:220px;
    background:#fff;
    padding:30px;
    border-radius:10px;
    text-align:center;
    font-size:22px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

/* Social Media */

.social-section{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    padding:50px;
}

.social-card{
    width:220px;
    background:#006400;
    color:white;
    text-decoration:none;
    padding:25px;
    border-radius:10px;
    text-align:center;
    font-size:22px;
    transition:0.3s;
}

.social-card:hover{
    background:#008000;
    transform:translateY(-5px);
}

/* WEATHER PAGE */

.weather-section{

padding:60px 20px;

background:#f5f8f5;

}

.weather-main-card{

max-width:700px;

margin:auto;

text-align:center;

background:#ffffff;

padding:40px;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,0.1);

}

.weather-main-card h2{

color:#006400;

margin-bottom:20px;

}

.weather-icon{

font-size:70px;

margin-bottom:20px;

}

.weather-main-card h1{

font-size:60px;

color:#006400;

}

.weather-main-card h3{

text-transform:capitalize;

color:#555;

}

.weather-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-top:40px;

}

.weather-card{

background:white;

padding:25px;

border-radius:15px;

text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,0.1);

}

.weather-card h3{

color:#006400;

margin-bottom:10px;

}

.weather-card p{

font-size:22px;

font-weight:bold;

}


.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#006400;
}












@media(max-width:768px){

.header{
    flex-direction:column;
    text-align:center;
}

.menu{
    flex-wrap:wrap;
    justify-content:center;
}

.products-grid,
.gallery-grid,
.directors-grid,
.services-grid{
    grid-template-columns:1fr;
}

}


/* ===========================
   MOBILE HAMBURGER MENU
=========================== */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#006400;
}

/* Mobile View */
@media screen and (max-width:768px){

    /* Top Bar */
    .top-bar{
        flex-direction:column;
        text-align:center;
        gap:8px;
        padding:10px;
        font-size:14px;
    }

    /* Header */
    header{
        padding:15px;
        flex-wrap:wrap;
        position:relative;
    }

    .logo-section{
        width:100%;
        align-items:center;
    }

    .logo-section img{
        height:60px;
    }

    .logo-section h1{
        font-size:18px;
    }

    .logo-section h3{
        font-size:12px;
    }

    .logo-section p{
        font-size:11px;
    }

    /* Hamburger */
    .menu-toggle{
        display:block;
        position:absolute;
        right:15px;
        top:20px;
        z-index:1001;
    }

    /* Navigation */
    nav{
        width:100%;
        display:none;
        margin-top:15px;
    }

    nav.active{
        display:block;
    }

    .menu{
        flex-direction:column;
        width:100%;
        background:#fff;
        border-top:2px solid #006400;
    }

    .menu li{
        width:100%;
    }

    .menu li a{
        display:block;
        padding:14px;
        border-bottom:1px solid #eee;
    }

    /* Dropdown */
    .dropdown-menu{
        position:static;
        display:block;
        box-shadow:none;
        background:#f5f5f5;
        margin-left:15px;
    }

    .dropdown-menu li a{
        padding:10px;
    }

    /* Hero Section */
    .hero{
        height:420px;
        background-position:center;
    }

    .hero-content{
        margin:0 20px;
        max-width:100%;
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btn{
        padding:12px 25px;
        font-size:16px;
    }

    /* Stats */
    .stats{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    /* Products */
    .products{
        padding:25px 15px;
    }

    .product-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .card img{
        height:120px;
    }

    /* About-News-Events */
    .info-section{
        grid-template-columns:1fr;
        padding:20px;
    }

    /* Leadership */
    .leader-card{
        width:100%;
    }

    /* Footer */
    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
}

.card{
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

@media screen and (max-width:768px){

    .menu-toggle{
        display:block;
    }

}

/* =====================================
   HAMBURGER MENU
===================================== */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#006400;
    font-weight:bold;
}

.logo-link{
    display:flex;
    align-items:center;
    gap:20px;
    text-decoration:none;
    color:inherit;
}

.logo-link:hover{
    opacity:0.9;
}





/* MOBILE */

@media screen and (max-width:768px){

    .menu-toggle{
        display:block;
        position:absolute;
        right:20px;
        top:25px;
        z-index:1000;
    }

    nav{
        display:none;
        width:100%;
        margin-top:15px;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        width:100%;
        background:#fff;
        border-top:2px solid #006400;
    }

    nav ul li{
        width:100%;
        text-align:left;
        border-bottom:1px solid #eee;
    }

    nav ul li a{
        display:block;
        padding:15px;
    }

    .dropdown-menu{
        position:static;
        display:block;
        box-shadow:none;
        background:#f8f8f8;
        margin-left:15px;
    }

    header{
        padding:15px;
        position:relative;
    }

    .logo-section{
        width:100%;
    }

    .logo-section img{
        height:60px;
    }

    .logo-section h1{
        font-size:18px;
    }

    .logo-section p{
        font-size:12px;
    }
}

