/* ===================================================
   GLOBAL STYLE
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f8fafc;

    color:#222;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

section{

    padding:90px 0;

}

/* ===================================================
   LOADER
=================================================== */

#loader{

    position:fixed;

    width:100%;

    height:100vh;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.spinner{

    width:65px;

    height:65px;

    border:7px solid #ddd;

    border-top:7px solid #0E8F63;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* ===================================================
   HEADER
=================================================== */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

    background:white;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo img{

    width:50px;

}

nav ul{

    display:flex;

    gap:35px;

}

nav a{

    color:#333;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#0E8F63;

}

.nav-button{

    padding:12px 28px;

    background:#0E8F63;

    color:white;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.nav-button:hover{

    background:#0a6c4b;

}

/* ===================================================
   HERO
=================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#eff9f4,#ffffff);

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

.hero-small{

    color:#0E8F63;

    font-weight:700;

    letter-spacing:2px;

}

.hero h1{

    margin-top:20px;

    font-size:58px;

    line-height:1.2;

    color:#16334d;

}

.hero p{

    margin:30px 0;

    color:#666;

    font-size:18px;

}

.hero-button{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#0E8F63;

    color:white;

    padding:16px 35px;

    border-radius:50px;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    border:2px solid #0E8F63;

    color:#0E8F63;

    padding:16px 35px;

    border-radius:50px;

}

.hero-right img{

    width:100%;

    animation:floatImage 4s ease-in-out infinite;

}

@keyframes floatImage{

    50%{

        transform:translateY(-15px);

    }

}

/* ===================================================
   SECTION TITLE
=================================================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#0E8F63;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    margin-top:10px;

    font-size:42px;

    color:#16334d;

}

.section-title p{

    max-width:700px;

    margin:20px auto;

    color:#666;

}

/* ===================================================
   SERVICES
=================================================== */

.services{

    background:white;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.service-card{

    background:white;

    border-radius:20px;

    padding:40px 30px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    text-align:center;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card i{

    font-size:48px;

    color:#0E8F63;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:15px;

}

.service-card p{

    color:#666;

}

/* ===================================================
   WHY CHOOSE US
=================================================== */

.why{

    background:#f8fafc;

}

.why .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-left img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.why-right span{

    color:#0E8F63;

    font-weight:700;

    letter-spacing:2px;

}

.why-right h2{

    font-size:42px;

    margin:15px 0;

    color:#16334d;

}

.why-right p{

    color:#666;

    margin-bottom:30px;

}

.why-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.why-list div{

    background:white;

    padding:18px 22px;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.why-list i{

    color:#0E8F63;

    font-size:20px;

}

/* ===================================================
   SUCCESS STORY
=================================================== */

.success{

    background:white;

}

.success-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.success-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.success-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.success-card img{

    width:200px;

    margin:0 auto 20px;

}

.success-card h3{

    margin-bottom:10px;

    color:#16334d;

}

.success-card p{

    color:#777;

    margin-bottom:18px;

}

.success-card ul{

    text-align:left;

    color:#444;

}

.success-card li{

    margin-bottom:10px;

}

/* ===================================================
   ACHIEVEMENT
=================================================== */

.achievement{

    background:linear-gradient(135deg,#0E8F63,#08714e);

    color:white;

}

.achievement-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.achievement-card{

    text-align:center;

}

.achievement-card h2{

    font-size:60px;

    margin-bottom:12px;

    font-weight:700;

}

.achievement-card p{

    font-size:18px;

    opacity:.9;

}

/* ===================================================
   ABOUT
=================================================== */

.about{

    background:white;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.1);

}

.about-content span{

    color:#0E8F63;

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    margin:15px 0 25px;

    font-size:42px;

    color:#16334d;

}

.about-content p{

    color:#666;

    margin-bottom:20px;

}

.about-box{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.about-box div{

    background:#f8fafc;

    padding:25px;

    border-radius:15px;

}

.about-box i{

    color:#0E8F63;

    font-size:34px;

    margin-bottom:15px;

}

.about-box h4{

    margin-bottom:10px;

}

/* ===================================================
   VISION & MISSION
=================================================== */

.vision{

    background:#f8fafc;

}

.vision-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.vision-card{

    background:white;

    padding:45px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    text-align:center;

}

.vision-card i{

    font-size:55px;

    color:#0E8F63;

    margin-bottom:20px;

}

.vision-card h3{

    margin-bottom:15px;

    color:#16334d;

}

.vision-card p{

    color:#666;

}

/* ===================================================
   PROCESS
=================================================== */

.process{

    background:white;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.process-card{

    background:#f8fafc;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-8px);

    background:#0E8F63;

    color:white;

}

.process-card:hover p{

    color:white;

}

.number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#0E8F63;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

}

.process-card:hover .number{

    background:white;

    color:#0E8F63;

}

.process-card p{

    color:#666;

}

/* ===================================================
   CERTIFICATE
=================================================== */

.certificate{

    background:#f8fafc;

}

.certificate-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.certificate-card{

    overflow:hidden;

    border-radius:20px;

    background:white;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    cursor:pointer;

    transition:.35s;

}

.certificate-card:hover{

    transform:translateY(-8px);

}

.certificate-card img{

    width:100%;

    height:500px;

    object-fit:cover;

    transition:.4s;

}

.certificate-card:hover img{

    transform:scale(1.08);

}



/* ===================================================
   GOOGLE MAP
=================================================== */

.map iframe{

    width:100%;

    height:450px;

    border:none;

}

/* ===================================================
   FOOTER
=================================================== */

footer{

    background:#1b2635;

    color:white;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:1.2fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

footer h3{

    margin-bottom:20px;

}

footer p{

    color:#cfd6dd;

    margin-bottom:10px;

    line-height:1.8;

}

footer ul li{

    margin-bottom:15px;

}

footer ul li a{

    color:#cfd6dd;

    transition:.3s;

}

footer ul li a:hover{

    color:#0E8F63;

    padding-left:6px;

}

.footer-social{

    margin-top:25px;

}

.footer-social a{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#25D366;

    color:white;

    font-size:28px;

    transition:.3s;

}

.footer-social a:hover{

    transform:translateY(-6px);

}

.copyright{

    text-align:center;

    margin-top:50px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.1);

    color:#cfd6dd;

}

/* ===================================================
   FLOATING WHATSAPP
=================================================== */

.floating-whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.1);

}

/* ===================================================
   BACK TO TOP
=================================================== */

#topButton{

    position:fixed;

    bottom:110px;

    right:35px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0E8F63;

    color:white;

    font-size:20px;

    cursor:pointer;

    display:none;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

#topButton:hover{

    background:#08714e;

}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:992px){

.hero-grid,
.about-grid,
.why .container,
.contact-grid,
.footer-grid{

grid-template-columns:1fr;

}

.service-grid,
.success-grid,
.process-grid,
.certificate-grid,
.achievement-grid,
.vision-grid{

grid-template-columns:repeat(2,1fr);

}

.hero{

text-align:center;

}

.hero-button{

justify-content:center;

}

nav{

display:none;

}

}

@media(max-width:768px){

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:30px;

}

.service-grid,
.success-grid,
.process-grid,
.certificate-grid,
.achievement-grid,
.vision-grid,
.about-box{

grid-template-columns:1fr;

}

.container{

width:92%;

}

.contact-right{

padding:25px;

}

.footer-grid{

gap:40px;

}

}

/* ===========================================
   SCROLL ANIMATION
=========================================== */

.hidden{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/* Active Menu */

nav ul li a.active{

    color:#0E8F63;

    font-weight:700;

}