/* ===========================
   GOOGLE FONT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

body{
    background:#ffffff;
    color:#333;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
        NAVBAR
=========================== */

header{

position:fixed;

top:0;

left:0;

width:100%;

padding:18px 8%;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(0,0,0,.4);

backdrop-filter:blur(10px);

z-index:999;

transition:.4s;

}

header.scrolled{

background:#fff;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.logo{

display:flex;

align-items:center;

gap:10px;

}

.logo img{

width:55px;

}

.logo h2{

color:#fff;

font-size:22px;

}

header.scrolled .logo h2{

color:#222;

}

nav{

display:flex;

align-items:center;

}

nav ul{

display:flex;

gap:35px;

}

nav ul li a{

color:#fff;

font-weight:500;

transition:.3s;

}

header.scrolled nav ul li a{

color:#222;

}

nav ul li a:hover{

color:#2e8b57;

}

.menu-btn{

display:none;

font-size:30px;

cursor:pointer;

color:#fff;

}

/* ===========================
        HERO
=========================== */

.hero{

height:100vh;

background:

linear-gradient(rgba(0,0,0,.55),

rgba(0,0,0,.55)),

url(images/white-pea.webp);

background-size:cover;

background-position:center;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

padding:0 20px;

}

.hero-content{

max-width:900px;

}

.hero h1{

font-size:65px;

font-weight:700;

color:#fff;

margin-bottom:20px;

line-height:1.2;

}

.hero p{

font-size:20px;

color:#fff;

margin-bottom:35px;

}

.btn{

display:inline-block;

background:#2e8b57;

color:#fff;

padding:15px 45px;

border-radius:40px;

font-size:18px;

transition:.3s;

}

.btn:hover{

background:#1f6e43;

transform:translateY(-5px);

}

/* ===========================
ABOUT
=========================== */

.about{

padding:100px 0;

}

.about .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about img{

border-radius:15px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.about h5{

color:#2e8b57;

font-size:18px;

letter-spacing:2px;

margin-bottom:10px;

}

.about h2{

font-size:42px;

margin-bottom:25px;

}

.about p{

font-size:17px;

color:#666;

margin-bottom:25px;

}

.about-boxes{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-top:30px;

}

.about-boxes div{

background:#f7f7f7;

padding:25px;

border-radius:10px;

text-align:center;

transition:.4s;

}

.about-boxes div:hover{

background:#2e8b57;

color:#fff;

transform:translateY(-8px);

}

.about-boxes h3{

font-size:34px;

margin-bottom:5px;

}

/* ===========================
SECTION TITLE
=========================== */

section h5{

text-align:center;

color:#2e8b57;

font-size:18px;

letter-spacing:2px;

margin-bottom:10px;

}

section h2{

text-align:center;

font-size:40px;

margin-bottom:60px;

}

/* ==========================================
   PRODUCTS SECTION
========================================== */

.products{
    padding:100px 8%;
    background:#f8f9fa;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    padding:20px 20px 10px;
    color:#1d3557;
}

.card p{
    padding:0 20px 25px;
    color:#666;
    line-height:1.7;
}

/* ==========================================
   SERVICES
========================================== */

.services{
    padding:100px 8%;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-grid div{
    background:#fff;
    text-align:center;
    padding:45px 30px;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-grid div:hover{
    background:#2E8B57;
    color:#fff;
    transform:translateY(-10px);
}

.service-grid i{
    font-size:50px;
    color:#2E8B57;
    margin-bottom:20px;
    transition:.3s;
}

.service-grid div:hover i{
    color:#fff;
}

.service-grid h3{
    margin-bottom:15px;
}

/* ==========================================
   COUNTER
========================================== */

.counter{

    padding:90px 8%;

    background:linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url(images/counter.jpg);

    background-size:cover;
    background-position:center;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;

    text-align:center;

}

.counter div{

    color:#fff;

}

.counter h2{

    font-size:55px;

    color:#FFD700;

    margin-bottom:10px;

}

.counter p{

    font-size:18px;

}

/* ==========================================
   CONTACT
========================================== */

.contact{

    padding:100px 8%;

    background:#f8f9fa;

}

.contact form{

    max-width:850px;

    margin:auto;

}

.contact input,

.contact textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:none;

    border-radius:8px;

    background:#fff;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

    font-size:16px;

}

.contact textarea{

    resize:none;

}

.contact button{

    width:100%;

    border:none;

    background:#2E8B57;

    color:#fff;

    padding:18px;

    font-size:18px;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

.contact button:hover{

    background:#206640;

}

/* ============MAP ===================== */

/* ======================
   GOOGLE MAP
====================== */

.map-section{

    padding:90px 8%;

    background:#fff;

}

.map-container{

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.map-container iframe{

    display:block;

    width:100%;

    height:450px;

}

@media(max-width:768px){

.map-section{

padding:60px 5%;

}

.map-container iframe{

height:300px;

}

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#0B1E17;

    color:#fff;

    padding:60px 8%;

    text-align:center;

}

footer h2{

    margin-bottom:15px;

}

footer p{

    color:#ccc;

}

.social{

    display:flex;

    justify-content:center;

    gap:20px;

    margin:30px 0;

}

.social i{

    width:45px;

    height:45px;

    line-height:45px;

    background:#2E8B57;

    border-radius:50%;

    transition:.3s;

    cursor:pointer;

}

.social i:hover{

    background:#FFD700;

    color:#111;

    transform:translateY(-5px);

}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content{
    animation:fadeUp 1.2s ease;
}

.card,
.service-grid div,
.about-boxes div{
    transition:all .4s ease;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

header{
    padding:15px 5%;
}

.hero h1{
    font-size:48px;
}

.hero p{
    font-size:18px;
}

.about .container{
    grid-template-columns:1fr;
}

.about-boxes{
    grid-template-columns:repeat(3,1fr);
}

}

/* ==========================================
   MOBILE NAVIGATION
========================================== */

@media(max-width:768px){

.menu-btn{
    display:block;
}

.logo h2{
    font-size:18px;
}

nav ul{
    position:fixed;
    top:80px;
    right:-100%;
    width:260px;
    height:100vh;
    background:#0b1e17;
    flex-direction:column;
    padding:40px;
    transition:.4s;
    gap:25px;
}

nav ul.active{
    right:0;
}

nav ul li a{
    color:#fff;
    font-size:18px;
}

.hero{
    padding:0 25px;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:17px;
}

.btn{
    padding:14px 35px;
}

.about{
    padding:70px 5%;
}

.about h2{
    font-size:30px;
}

.about-boxes{
    grid-template-columns:1fr;
}

.products,
.services,
.contact{
    padding:70px 5%;
}

.counter{
    grid-template-columns:repeat(2,1fr);
}

footer{
    padding:50px 5%;
}

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:16px;
}

section h2{
    font-size:28px;
}

.counter{
    grid-template-columns:1fr;
}

.counter h2{
    font-size:40px;
}

.service-grid{
    grid-template-columns:1fr;
}

.product-grid{
    grid-template-columns:1fr;
}

.about-boxes{
    grid-template-columns:1fr;
}

}