/*==============================
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;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fdfaf5;
    color:#333;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/*==============================
Hero Section
===============================*/

.hero{
    width:100%;
    min-height:100vh;
    background:linear-gradient(135deg,#fff8ef,#fff4df);
    position:relative;
    overflow:hidden;
}

/* Decorative Circles */

.hero::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#f59e0b20;
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.hero::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:#2e7d3215;
    border-radius:50%;
    bottom:-120px;
    left:-100px;
}

/*==============================
Navbar
===============================*/

.navbar{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:100px;
}

.logo h2{
    color:#2e7d32;
    font-size:26px;
    font-weight:700;
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#333;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#f57c00;
}

.btn-nav{
    background:#f57c00;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-nav:hover{
    background:#2e7d32;
}

/*==============================
Hero Content
===============================*/

.hero-content{
    width:90%;
    max-width:1300px;
    margin:auto;
    min-height:85vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.hero-text{
    flex:1;
}

.subtitle{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
    color:#222;
}

.hero-text h1 span{
    color:#f57c00;
}

.hero-text p{
    font-size:18px;
    color:#555;
    line-height:1.9;
    max-width:600px;
    margin-bottom:40px;
}

/*==============================
Buttons
===============================*/

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:#f57c00;
    color:#fff;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#2e7d32;
}

.btn-secondary{
    border:2px solid #2e7d32;
    color:#2e7d32;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#2e7d32;
    color:#fff;
}

/*==============================
Hero Image
===============================*/

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:520px;
    animation:float 4s ease-in-out infinite;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.18));
}

/* Floating Animation */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*==============================
Responsive
===============================*/

@media(max-width:991px){

.hero-content{
    flex-direction:column-reverse;
    text-align:center;
    padding:40px 0;
}

.hero-text p{
    margin:auto;
    margin-bottom:35px;
}

.hero-buttons{
    justify-content:center;
}

.hero-text h1{
    font-size:44px;
}

nav{
    display:none;
}

.btn-nav{
    display:none;
}

}

@media(max-width:576px){

.hero-text h1{
    font-size:34px;
}

.hero-text p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    text-align:center;
}

.logo h2{
    font-size:20px;
}

.logo img{
    width:45px;
}

.hero-image img{
    max-width:320px;
}

}

/*==============================
About Section
===============================*/

.about{
    padding:100px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.about .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* Image */

.about-image{
    flex:1;
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Experience Box */

.experience-box{

    position:absolute;
    bottom:25px;
    right:-20px;

    background:#2E7D32;

    color:#fff;

    padding:25px;

    width:220px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.experience-box h2{

    font-size:42px;
    margin-bottom:8px;

}

.experience-box span{

    font-size:14px;
    line-height:22px;

}

/* Content */

.about-content{

    flex:1;

}

.section-subtitle{

    display:inline-block;

    background:#F57C00;

    color:#fff;

    padding:8px 22px;

    border-radius:30px;

    margin-bottom:20px;

    font-size:14px;

    font-weight:500;

}

.about-content h2{

    font-size:42px;

    color:#222;

    line-height:1.3;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    font-size:17px;

    line-height:32px;

    margin-bottom:20px;

}

/* List */

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.about-list .item{

    background:#FFF8EF;

    padding:15px 20px;

    border-radius:10px;

    font-weight:500;

    transition:.3s;

}

.about-list .item:hover{

    background:#2E7D32;

    color:#fff;

}

/* Button */

.about-btn{

    display:inline-block;

    background:#F57C00;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.about-btn:hover{

    background:#2E7D32;

}

/* Responsive */

@media(max-width:991px){

.about .container{

    flex-direction:column;

}

.about-content{

    text-align:center;

}

.about-list{

    grid-template-columns:1fr;

}

.experience-box{

    right:20px;

}

.about-content h2{

    font-size:34px;

}

}

@media(max-width:576px){

.about{

    padding:70px 0;

}

.about-content h2{

    font-size:28px;

}

.about-content p{

    font-size:16px;

    line-height:28px;

}

.experience-box{

    width:180px;

    padding:18px;

}

.experience-box h2{

    font-size:34px;

}

}

/*==================================
Services Section
===================================*/

.services{

    padding:100px 0;
    background:#FFF8EF;

}

.section-title{

    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;

}

.section-title span{

    display:inline-block;
    background:#2E7D32;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:18px;

}

.section-title h2{

    font-size:42px;
    color:#222;
    margin-bottom:20px;

}

.section-title p{

    color:#666;
    line-height:30px;
    font-size:17px;

}

/* Grid */

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

/* Card */

.service-box{

    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.07);

}

.service-box:hover{

    transform:translateY(-10px);

    background:#2E7D32;

    color:#fff;

}

.service-box:hover p{

    color:#eee;

}

.icon{

    width:80px;
    height:80px;
    margin:auto;
    background:#F57C00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:25px;

}

.service-box h3{

    font-size:24px;
    margin-bottom:15px;

}

.service-box p{

    color:#666;
    line-height:28px;
    transition:.4s;

}

/* Responsive */

@media(max-width:991px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.services{

padding:70px 0;

}

.section-title h2{

font-size:32px;

}

.services-grid{

grid-template-columns:1fr;

}

}

/*=========================
Contact Section
=========================*/

.contact{
    padding:100px 0;
    background:#ffffff;
}

.contact-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.contact-card{
    background:#fff;
    text-align:center;
    padding:45px 30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#F57C00;
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.contact-card h3{
    font-size:24px;
    margin-bottom:12px;
    color:#2E7D32;
}

.contact-card p{
    color:#666;
    margin-bottom:25px;
    line-height:28px;
}

.contact-card a{
    display:inline-block;
    padding:14px 35px;
    background:#2E7D32;
    color:#fff;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.contact-card a:hover{
    background:#F57C00;
}

@media(max-width:991px){

.contact-box{
    grid-template-columns:1fr;
}

}