/*==========================================
  GOOGLE FONT
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==========================================
  RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#ffffff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    cursor:pointer;
    font-family:inherit;
}

section{
    padding:90px 0;
}


/*==========================================
  VARIABLES
==========================================*/

:root{

    --primary:#1E3A2A;
    --primary-dark:#173021;
    --secondary:#ffffff;
    --dark:#1B1B1B;
    --light:#F4FAF5;
    --section-light:#EEF7F0;
    --section-dark:#E3F0E6;
    --gray:#6F6F6F;
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --radius:16px;
    --transition:.3s ease;

}


/*==========================================
  COMMON
==========================================*/

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

.section-header{

    text-align:center;
    margin-bottom:60px;

}

.section-subtitle{

    display:inline-block;
    color:var(--primary);
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:15px;

}

.section-header h2{

    font-size:42px;
    margin-bottom:18px;
    color:var(--dark);

}

.section-header p{

    max-width:700px;
    margin:auto;
    color:var(--gray);

}


/*==========================================
  BUTTONS
==========================================*/

.btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 32px;
    border-radius:50px;
    transition:var(--transition);
    font-weight:600;

}

.btn-primary{

    background:var(--primary);
    color:#ffffff;

}

.btn-primary:hover{

    background:var(--primary-dark);
    transform:translateY(-3px);

}

.btn-secondary{

    background:#25D366;
    color:#ffffff;

}

.btn-secondary:hover{

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid var(--primary);
    color:var(--primary);
    background:#ffffff;

}

.btn-outline:hover{

    background:var(--primary);
    color:#ffffff;

}


/*==========================================
  HEADER
==========================================*/

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.06);

}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;

}

.logo img{

    width:170px;

}

.nav-links{

    display:flex;
    gap:35px;

}

.nav-links a{

    font-weight:500;
    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--primary);

}

.menu-toggle{

    display:none;
    font-size:28px;
    cursor:pointer;

}


/*==========================================
  HERO
==========================================*/

.hero{

    padding-top:160px;
    padding-bottom:100px;
    background:linear-gradient(135deg,#1E3A2A 0%,#295239 100%);
    color:#ffffff;

}

.hero-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;

}

.hero-content h1{

    font-size:56px;
    line-height:1.2;
    margin:18px 0 25px;
    color:#ffffff;

}

.hero-content p{

    color:rgba(255,255,255,.88);
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:18px;
    margin-bottom:35px;

}

.hero-features{

    display:flex;
    flex-wrap:wrap;
    gap:25px;

}

.feature{

    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
    color:#ffffff;

}

.feature i{

    color:#A9E5B2;

}

.hero-image img{

    border-radius:25px;
    box-shadow:var(--shadow);

}/*==========================================
  ABOUT SECTION
==========================================*/

.about{

    background:var(--section-light);

}

.about-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;

}

.about-image img{

    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);

}

.about-content h2{

    font-size:42px;
    margin:15px 0 20px;
    color:var(--dark);

}

.about-content p{

    color:var(--gray);
    margin-bottom:18px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;

}

.about-box{

    background:#ffffff;
    padding:25px;
    border-radius:var(--radius);
    text-align:center;
    transition:var(--transition);
    border:1px solid rgba(0,0,0,.05);

}

.about-box:hover{

    transform:translateY(-8px);
    box-shadow:var(--shadow);

}

.about-box i{

    font-size:32px;
    color:var(--primary);
    margin-bottom:15px;

}

.about-box h4{

    font-size:18px;
    color:var(--dark);

}


/*==========================================
  SERVICES SECTION
==========================================*/

.services{

    background:var(--primary);

}

.services .section-subtitle{

    color:#A9E5B2;

}

.services .section-header h2{

    color:#ffffff;

}

.services .section-header p{

    color:rgba(255,255,255,.85);

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.service-card{

    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border:1px solid rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    width:100%;
    height:240px;
    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content i{

    width:70px;
    height:70px;
    background:var(--primary);
    color:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;

}

.service-content h3{

    font-size:22px;
    margin-bottom:15px;
    color:var(--dark);

}

.service-content p{

    color:var(--gray);

}


/*==========================================
  WHY CHOOSE US
==========================================*/

.why-us{

    background:var(--section-light);

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.why-card{

    background:#ffffff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border:1px solid rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card i{

    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;

}

.why-card h3{

    color:var(--dark);
    margin-bottom:15px;

}

.why-card p{

    color:var(--gray);

}


/*==========================================
  GALLERY
==========================================*/

.gallery{

    background:var(--section-dark);

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.gallery-item{

    overflow:hidden;
    border-radius:20px;
    background:#ffffff;
    box-shadow:var(--shadow);

}

.gallery-item img{

    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}


/*==========================================
  CONTACT
==========================================*/

.contact{

    background:var(--primary);

}

.contact .section-subtitle{

    color:#A9E5B2;

}

.contact .section-header h2{

    color:#ffffff;

}

.contact .section-header p{

    color:rgba(255,255,255,.85);

}

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;

}

.contact-form{

    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);

}

.contact-info{

    color:#ffffff;

}

.contact-info h3,
.contact-info h4{

    color:#ffffff;

}

.contact-info p,
.contact-info a{

    color:rgba(255,255,255,.85);

}


/*==========================================
  COMMON IMAGE EFFECTS
==========================================*/

.hero-image img,
.about-image img,
.service-card img{

    transition:.4s ease;

}

.hero-image img:hover,
.about-image img:hover,
.service-card:hover img{

    transform:scale(1.05);

}


/*==========================================
  SECTION SPACING
==========================================*/

.about,
.services,
.why-us,
.gallery,
.contact{

    position:relative;

}

.section{

    overflow:hidden;

}/*==========================================
  FOOTER
==========================================*/

.footer{

    background:var(--primary);
    color:#ffffff;
    text-align:center;
    padding:30px 0;

}

.footer p{

    font-size:15px;
    letter-spacing:.5px;

}

.footer a{

    color:#A9E5B2;
    transition:var(--transition);

}

.footer a:hover{

    color:#ffffff;

}


/*==========================================
  FLOATING BUTTONS
==========================================*/

.floating-whatsapp,
.floating-call,
.back-to-top{

    position:fixed;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:24px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    z-index:999;

}

.floating-whatsapp{

    background:#25D366;
    right:25px;
    bottom:25px;

}

.floating-call{

    background:var(--primary);
    right:25px;
    bottom:100px;

}

.back-to-top{

    background:var(--primary-dark);
    right:25px;
    bottom:175px;
    border:none;
    cursor:pointer;
    opacity:0;
    visibility:hidden;

}

.back-to-top.show{

    opacity:1;
    visibility:visible;

}

.floating-whatsapp:hover,
.floating-call:hover,
.back-to-top:hover{

    transform:translateY(-5px);
    filter:brightness(1.08);

}


/*==========================================
  SCROLLBAR (OPTIONAL)
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF5EF;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}


/*==========================================
  RESPONSIVE
==========================================*/

@media(max-width:992px){

    .hero-container,
    .about-container,
    .contact-wrapper{

        grid-template-columns:1fr;
        gap:50px;

    }

    .services-grid,
    .why-grid,
    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .hero-content{

        order:2;
        text-align:center;

    }

    .hero-image{

        order:1;

    }

    .hero-buttons,
    .hero-features{

        justify-content:center;

    }

}

@media(max-width:768px){

    section{

        padding:70px 0;

    }

    .navbar{

        height:75px;

    }

    .menu-toggle{

        display:block;

    }

    .nav-links{

        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#ffffff;
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:30px 0;
        box-shadow:var(--shadow);
        display:none;

    }

    .nav-links.active{

        display:flex;

    }

    .header-buttons{

        display:none;

    }

    .hero{

        padding-top:130px;

    }

    .hero-content h1{

        font-size:38px;

    }

    .section-header h2,
    .about-content h2{

        font-size:34px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .services-grid,
    .why-grid,
    .gallery-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    .container{

        width:92%;

    }

    .hero-content h1{

        font-size:32px;

    }

    .btn{

        width:100%;
        justify-content:center;

    }

    .section-header h2,
    .about-content h2{

        font-size:28px;

    }

    .floating-whatsapp,
    .floating-call,
    .back-to-top{

        width:55px;
        height:55px;
        font-size:22px;

    }

}