/* =========================
   GLOBAL STYLE
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


body{
    background:#ffffff;
    color:#1c2b22;
}


html{
    scroll-behavior:smooth;
}


a{
    text-decoration:none;
    color:inherit;
}

/* ==========================
   TOP GLASS HEADER
========================== */


.top-header{

    height:45px;

    padding:0 1%;

    display:flex;

    justify-content:space-between;

    align-items:center;


    background:

    linear-gradient(
        135deg,
        rgba(6,78,59,0.95),
        rgba(6,78,59,0.95)
    );


    color:white;


    backdrop-filter:blur(15px);


    font-size:13px;


    position:relative;

    z-index:1001;


}



.top-left,
/* ==========================
   Premium Glass Social Icons
========================== */

.top-right{
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-right .social{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 18px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 8px 24px rgba(0,0,0,.18),
        inset 0 1px 1px rgba(255,255,255,.12);

    transition: all .35s ease;
}

/* Floating Hover Effect */
.top-right .social:hover{
    transform: translateY(-4px) scale(1.08);
}

/* Facebook */
.top-right .facebook:hover{
    background: linear-gradient(135deg,#1877F2,#4A90FF);
    border-color: rgba(255,255,255,.35);
    box-shadow:
        0 12px 28px rgba(24,119,242,.45),
        0 0 20px rgba(24,119,242,.35);
}

/* WhatsApp */
.top-right .whatsapp:hover{
    background: linear-gradient(135deg,#25D366,#18B856);
    border-color: rgba(255,255,255,.35);
    box-shadow:
        0 12px 28px rgba(37,211,102,.45),
        0 0 20px rgba(37,211,102,.35);
}

/* Icon Animation */
.top-right .social i{
    transition: transform .35s ease;
}

.top-right .social:hover i{
    transform: rotate(10deg) scale(1.15);
}



.top-header a{

    color:white;

    opacity:.9;

    transition:.3s;

}



.top-header a:hover{

    color:#dcfce7;

}

/*=================================
      MOBILE PREMIUM TOP HEADER
==================================*/


.mobile-top-header{

display:none;

}



/*=================================
      MOBILE VERSION
==================================*/


@media(max-width:768px){


/* Hide Desktop Top Header */

.top-header{

display:none;

}



/* Mobile Header */

.mobile-top-header{

display:flex;

flex-direction:column;

justify-content:center;

gap:8px;

padding:12px 15px;

background:

linear-gradient(
135deg,
#063b2b,
#0b5d45,
#15803d
);

color:white;

position:relative;

z-index:10000;

box-shadow:

0 8px 25px rgba(0,0,0,.18);

}



/* Welcome Text */


.mobile-welcome{

text-align:center;

font-size:13px;

font-weight:600;

letter-spacing:.5px;

color:#dcfce7;

}



/* Contact Row */


.mobile-contact{

display:flex;

justify-content:center;

align-items:center;

gap:15px;

flex-wrap:wrap;

}



.mobile-contact a{

display:flex;

align-items:center;

gap:7px;

text-decoration:none;

color:#fff;

font-size:12px;

font-weight:500;

padding:7px 12px;

border-radius:30px;

background:

rgba(255,255,255,.12);

backdrop-filter:blur(10px);

transition:.3s;

}



.mobile-contact a:hover{

background:#22c55e;

transform:translateY(-2px);

}



.mobile-contact i{

color:#86efac;

font-size:13px;

}



}



/* Small Mobile */

@media(max-width:420px){


.mobile-contact{

gap:8px;

}



.mobile-contact a{

font-size:11px;

padding:6px 10px;

}



.mobile-welcome{

font-size:12px;

}


}

/* =========================
   HEADER
========================= */

/*===================================
        PREMIUM HEADER
====================================*/

.header{

position:sticky;

top:0;

z-index:9999;

height:110px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 7%;

background:rgba(255,255,255,.94);

backdrop-filter:blur(18px);

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

/* Logo */

.logo img{

width:260px;

height:auto;

display:block;

}

/* Navigation */

.navbar{

display:flex;

align-items:center;

gap:38px;

}

.navbar a{

position:relative;

font-size:15px;

font-weight:600;

color:#243b32;

transition:.35s;

}

.navbar a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

border-radius:20px;

background:#16a34a;

transition:.35s;

}

.navbar a:hover{

color:#16a34a;

}

.navbar a:hover::after,

.navbar .active::after{

width:100%;

}

/* Quote Button */

.quote-btn{

padding:14px 28px;

border-radius:50px;

background:linear-gradient(135deg,#0b5d45,#15803d);

color:#fff !important;

font-weight:600;

box-shadow:0 12px 25px rgba(11,93,69,.25);

transition:.35s;

}

.quote-btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 35px rgba(11,93,69,.35);

}

/* Hamburger */

.menu-btn{

display:none;

font-size:30px;

cursor:pointer;

color:#064e3b;

}

/*===================================
      MOBILE SIDEBAR
====================================*/

.mobile-menu{

position:fixed;

top:0;

right:-320px;

width:300px;

height:100vh;

background:white;

box-shadow:-10px 0 40px rgba(0,0,0,.15);

padding:30px;

transition:.4s;

z-index:99999;

display:flex;

flex-direction:column;

}

.mobile-menu.active{

right:0;

}

.mobile-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}

.mobile-top img{

width:170px;

}

.close-btn{

font-size:28px;

cursor:pointer;

color:#064e3b;

}

.mobile-menu a{

padding:16px 0;

font-size:17px;

font-weight:500;

color:#333;

border-bottom:1px solid #eee;

transition:.35s;

}

.mobile-menu a:hover{

padding-left:10px;

color:#16a34a;

}

.mobile-quote{

margin-top:30px;

background:#0b5d45;

color:#fff !important;

text-align:center;

padding:15px;

border-radius:40px;

}

.menu-overlay{

position:fixed;

inset:0;

background:rgba(0,0,0,.45);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:99990;

}

.menu-overlay.active{

opacity:1;

visibility:visible;

}

/*===================================
      RESPONSIVE
====================================*/

/*===================================
        MOBILE HEADER SIZE UPDATE
====================================*/

@media(max-width:992px){

/* Main Header */

.header{

height:100px;              /* Increased height */

padding:0 25px;            /* More horizontal space */

}


/* Logo Size */

.logo img{

width:230px;               /* Bigger logo */

}



/* Hide Desktop Menu */

.navbar{

display:none;

}


/* Show Hamburger */

.menu-btn{

display:block;

font-size:34px;

}


}



/*===================================
        SMALL MOBILE
====================================*/

@media(max-width:480px){


.header{

height:90px;

padding:0 18px;

}


.logo img{

width:210px;

}


.menu-btn{

font-size:30px;

}


}
@media(max-width:768px){

.top-header{

height:70px;

padding:0 15px;

font-size:12px;

}


/* Stack content nicely */

.top-left,
.top-right{

gap:12px;

}


.top-right a{

display:none;

}

}
/*==============================
      DROPDOWN MENU
===============================*/

.dropdown{

    position:relative;

}

.dropbtn{

    display:flex;

    align-items:center;

    gap:6px;

}

.dropbtn i{

    font-size:12px;

    transition:.3s;

}

.dropdown-content{

    position:absolute;

    top:45px;

    left:0;

    min-width:260px;

    background:#ffffff;

    border-radius:15px;

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    z-index:999;

}

.dropdown-content a{

    display:block;

    padding:15px 20px;

    color:#333;

    font-size:15px;

    transition:.3s;

    border-bottom:1px solid #eee;

}

.dropdown-content a:last-child{

    border:none;

}

.dropdown-content a:hover{

    background:#064e3b;

    color:#fff;

    padding-left:28px;

}

.dropdown:hover .dropdown-content{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown:hover .dropbtn i{

    transform:rotate(180deg);

}



nav a{

    font-size:15px;
    font-weight:500;

    color:#334155;

    transition:.3s;

}



nav a:hover{

    color:#15803d;

}



/*====================================
      PREMIUM QUOTE BUTTON
====================================*/

.quote-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 32px;
    border-radius: 50px;

    background: linear-gradient(135deg,#064e3b,#16a34a);
    color: #fff !important;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;
    text-decoration: none;

    overflow: hidden;
    transition: all .35s ease;

    box-shadow:
        0 12px 25px rgba(6,78,59,.25),
        0 4px 10px rgba(0,0,0,.08);
}

/* Shine Effect */

.quote-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:rgba(255,255,255,.35);
    transform:skewX(-25deg);
    transition:.7s;
}

.quote-btn:hover::before{
    left:150%;
}

/* Hover */

.quote-btn:hover{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    transform:translateY(-4px) scale(1.03);
    box-shadow:
        0 18px 40px rgba(22,163,74,.35),
        0 6px 18px rgba(0,0,0,.12);
}

/* Click */

.quote-btn:active{
    transform:scale(.97);
}

/* Focus */

.quote-btn:focus{
    outline:none;
    box-shadow:
        0 0 0 4px rgba(34,197,94,.25),
        0 15px 35px rgba(22,163,74,.30);
}

/* Responsive */

@media (max-width:768px){

    .quote-btn{
        padding:13px 26px;
        font-size:14px;
    }

}

@media (max-width:480px){

    .quote-btn{
        width:100%;
        padding:15px;
        font-size:15px;
        border-radius:16px;
    }

}





/* =========================
 HERO SECTION
========================= */


/* ============================
        HERO SECTION
============================ */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

}


/* Background Image */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/hero.png") center center/cover no-repeat;

    animation:bgFloat 12s ease-in-out infinite alternate;

    transform-origin:center;

    z-index:-2;

}


/* Dark Overlay */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,40,20,.55),
        rgba(0,40,20,.55)
    );

    z-index:-1;

}


/* Hero Content */

.hero-content{

    text-align:center;

    color:white;

    max-width:850px;

    padding:20px;

    animation:textFloat 4s ease-in-out infinite;

}


/* Heading */

.hero-content h1{

    font-size:70px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

    text-shadow:0 10px 25px rgba(0,0,0,.35);

}


/* Paragraph */

.hero-content p{

    font-size:22px;

    margin-bottom:35px;

    line-height:1.8;

    opacity:.95;

}


/* Buttons */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


.hero-btn{

    background:#0b5d45;

    color:#fff;

    text-decoration:none;

    padding:16px 38px;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 15px 35px rgba(11,93,69,.4);

}

.hero-btn:hover{

    transform:translateY(-6px);

    background:#084735;

}


.call-btn{

    background:#fff;

    color:#0b5d45;

    text-decoration:none;

    padding:16px 38px;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.call-btn:hover{

    transform:translateY(-6px);

    background:#f3f3f3;

}


/* ============================
      Background Floating
============================ */

@keyframes bgFloat{

    0%{

        transform:scale(1) translateY(0px);

    }

    50%{

        transform:scale(1.08) translateY(-18px);

    }

    100%{

        transform:scale(1.15) translateY(18px);

    }

}


/* ============================
        Text Floating
============================ */

@keyframes textFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}


/* ============================
        Responsive
============================ */

@media(max-width:768px){

.hero-content h1{

    font-size:42px;

}

.hero-content p{

    font-size:18px;

}

.hero-btn,
.call-btn{

    width:220px;

    text-align:center;

}

}




/* =========================
 ABOUT
========================= */


.about{

    padding:90px 8%;

}



.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}



.about-text h2{

    font-size:42px;

    margin-bottom:20px;

}



.about-text h2 span{

    color:#15803d;

}



.about-text p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:15px;

}



.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);

}



.dark-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 35px;

    background:#064e3b;

    color:white;

    border-radius:30px;

}




/*=================================
        PREMIUM SERVICES
==================================*/

.services{

padding:100px 8%;

background:#f7faf8;

text-align:center;

}

.services h2{

font-size:46px;

color:#064e3b;

margin-bottom:15px;

}

.section-text{

max-width:700px;

margin:auto;

color:#64748b;

font-size:17px;

line-height:1.8;

margin-bottom:60px;

}

.cards{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

display:flex;

flex-direction:column;

}

.card:hover{

transform:translateY(-12px);

box-shadow:0 25px 55px rgba(6,78,59,.18);

}

.card-image{

height:240px;

overflow:hidden;

}

.card-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.card:hover img{

transform:scale(1.08);

}

.card-content{

padding:28px;

text-align:left;

}

.card-content h3{

color:#064e3b;

font-size:24px;

margin-bottom:15px;

}

.card-content p{

color:#64748b;

line-height:1.8;

margin-bottom:22px;

}

.card-content a{

display:inline-block;

color:#0b5d45;

font-weight:600;

transition:.3s;

}

.card-content a:hover{

color:#16a34a;

padding-left:6px;

}




/* =========================
 WHY CHOOSE
========================= */


.choose{

    padding:90px 8%;

    text-align:center;

}



.choose-grid{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.choose-grid div{

    padding:30px;

    border-radius:20px;

    background:white;

    box-shadow:
    0 10px 35px rgba(0,0,0,.07);

}



.choose-grid h3{

    color:#15803d;

    margin-bottom:15px;

}



.choose-grid p{

    color:#64748b;

}



/* =========================
 PROCESS
========================= */


.process{

    padding:90px 8%;

    background:#064e3b;

    color:white;

    text-align:center;

}



.process-box{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.process-box div{

    background:white;

    color:#1c2b22;

    padding:35px;

    border-radius:20px;

}



.process-box span{

    font-size:35px;

    font-weight:800;

    color:#16a34a;

}




/* =========================
 LOCATIONS
========================= */


/*=========================================
        PREMIUM LOCATIONS SECTION
=========================================*/

.locations{

    padding:100px 8%;

    background:linear-gradient(180deg,#f8fffb,#eefaf3);

}

.location-heading{

    text-align:center;

    max-width:850px;

    margin:auto;

}

.location-heading .subtitle{

    display:inline-block;

    padding:8px 20px;

    background:#dcfce7;

    color:#065f46;

    border-radius:30px;

    font-weight:600;

    margin-bottom:18px;

}

.location-heading h2{

    font-size:48px;

    margin-bottom:18px;

    color:#064e3b;

}

.location-heading h2 span{

    color:#16a34a;

}

.location-heading p{

    color:#64748b;

    font-size:18px;

    line-height:1.8;

}

.location-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

}

.location-card{

    background:white;

    border-radius:18px;

    padding:22px;

    text-align:center;

    font-weight:600;

    color:#064e3b;

    border:1px solid rgba(22,163,74,.15);

    box-shadow:

    0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.location-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#16a34a;

    transition:.35s;

}

.location-card:hover{

    transform:translateY(-8px);

    background:#064e3b;

    color:white;

    box-shadow:

    0 20px 45px rgba(6,78,59,.25);

}

.location-card:hover::before{

    width:100%;

    opacity:.12;

}
@media(max-width:992px){

.location-grid{

grid-template-columns:repeat(3,1fr);

}

.location-heading h2{

font-size:38px;

}

}
@media(max-width:768px){

.locations{

padding:70px 20px;

}

.location-heading h2{

font-size:30px;

}

.location-heading p{

font-size:15px;

}

.location-grid{

grid-template-columns:repeat(2,1fr);

gap:15px;

}

/* Hide extra cities */

.location-card:nth-child(n+7):not(:last-child){

display:none;

}

.location-card{

padding:18px;

font-size:15px;

}

/* Highlight India card */

.location-card:last-child{

grid-column:span 2;

background:#064e3b;

color:#fff;

font-size:17px;

font-weight:700;

}

}





/* =========================
 CTA
========================= */


.cta{

    padding:70px 8%;

    text-align:center;

    background:#f0fdf4;

}



.cta h2{

    font-size:40px;

    color:#064e3b;

}



.cta p{

    margin:20px;

    color:#64748b;

}



.cta a{

    display:inline-block;

    background:#064e3b;

    color:white;

    padding:15px 40px;

    border-radius:40px;

}





/* =========================
 FOOTER
========================= */

/*==============================
        PREMIUM FOOTER
===============================*/

.premium-footer{

background:linear-gradient(135deg,#071712,#0d2c21,#04110d);

color:#fff;

margin-top:80px;

}

.footer-top{

max-width:1400px;

margin:auto;

padding:70px 7%;

display:grid;

grid-template-columns:2fr 1fr 1fr 1.4fr;

gap:50px;

}

.footer-logo{

width:320px;

margin-bottom:20px;

}

.company h2{

font-size:28px;

margin-bottom:15px;

}

.company p{

color:#cbd5d1;

line-height:1.9;

margin-bottom:30px;

}

/* Titles */

.footer-box h3{

font-size:22px;

margin-bottom:25px;

position:relative;

}

.footer-box h3::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:55px;

height:3px;

background:#22c55e;

border-radius:30px;

}

/* Lists */

.footer-box ul{

list-style:none;

}

.footer-box li{

margin-bottom:16px;

}

.footer-box a{

text-decoration:none;

color:#d1d5db;

transition:.35s;

}

.footer-box ul a:hover{

color:#22c55e;

padding-left:8px;

}

/* Contact */

.contact-item{

display:flex;

align-items:center;

gap:15px;

margin-bottom:20px;

}

.contact-item i{

width:45px;

height:45px;

border-radius:50%;

background:#104030;

display:flex;

justify-content:center;

align-items:center;

color:#22c55e;

transition:.35s;

}

.contact-item:hover i{

background:#22c55e;

color:#fff;

transform:rotate(360deg);

}

/* Social */

.footer-social{

display:flex;

gap:15px;

margin-top:20px;

}

.footer-social a{

width:48px;

height:48px;

border-radius:50%;

background:#104030;

display:flex;

justify-content:center;

align-items:center;

font-size:18px;

transition:.35s;

}

.footer-social a:hover{

background:#22c55e;

transform:translateY(-8px);

}

/* Bottom */

.footer-bottom{

text-align:center;

padding:25px;

border-top:1px solid rgba(255,255,255,.08);

color:#9ca3af;

font-size:15px;

}

/*==============================
        Tablet
===============================*/

@media(max-width:992px){

.footer-top{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

}

/*==============================
        Mobile
===============================*/

@media(max-width:768px){

.footer-top{

grid-template-columns:1fr;

text-align:center;

padding:50px 25px;

}

.footer-logo{

width:280px;

margin:auto;

margin-bottom:20px;

}

.footer-box h3::after{

left:50%;

transform:translateX(-50%);

}

.footer-social{

justify-content:center;

}

.contact-item{

justify-content:center;

text-align:left;

}

.footer-box ul{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:12px;

margin-top:20px;

}

.footer-box ul li{

margin:0;

}

.footer-box ul a{

display:block;

padding:10px;

border-radius:10px;

background:rgba(255,255,255,.05);

}

.footer-box ul a:hover{

background:#22c55e;

color:#fff;

padding-left:10px;

}

.company p{

max-width:350px;

margin:auto auto 25px;

}

.footer-bottom{

font-size:14px;

padding:20px;

}

}


/* =========================
 RESPONSIVE
========================= */


@media(max-width:1000px){


nav{

    display:none;

}


.hero-content h1{

    font-size:42px;

}


.about-container{

    grid-template-columns:1fr;

}


.cards{

    grid-template-columns:1fr 1fr;

}


.choose-grid{

    grid-template-columns:1fr 1fr;

}


.process-box{

    grid-template-columns:1fr 1fr;

}


}



@media(max-width:600px){


.hero{

    height:80vh;

}


.hero-content h1{

    font-size:34px;

}


.hero-buttons{

    flex-direction:column;

}


.cards,
.choose-grid,
.process-box{

    grid-template-columns:1fr;

}



.services h2,
.choose h2,
.process h2,
.locations h2{

    font-size:32px;

}


}

/* Scroll Animation */

.hidden{

opacity:0;

transform:translateY(60px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}



/* Floating Buttons */

.float-btn{

position:fixed;

right:25px;

width:60px;

height:60px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:25px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:999;

transition:.3s;

}

.float-btn:hover{

transform:scale(1.1);

}

.whatsapp{

bottom:100px;

background:#25D366;

}

.call{

bottom:30px;

background:#0b5d3f;

}

#topBtn{

position:fixed;

left:25px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#0b5d3f;

color:#fff;

font-size:22px;

display:none;

cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,.2);

z-index:999;

}

/*Floating icons css*/
/* ===============================
   FLOATING BUTTONS
================================= */

.floating-btn{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    font-size:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:9999;

}


/* WhatsApp */

.whatsapp{

    bottom:100px;

    background:#25D366;

}

.whatsapp:hover{

    background:#1ebc59;

    transform:scale(1.1);

}


/* Call */

.call{

    bottom:25px;

    background:#3d90ee;

}

.call:hover{

    background:#12845c;

    transform:scale(1.1);

}


/* Floating Quote Bar */

/*====================================
        QUICK QUOTE SECTION
=====================================*/

.quote-section{

    width:100%;

    padding:0 7%;

    margin-top:-90px;

    position:relative;

    z-index:100;

}

.quote-card{

    width:100%;

    max-width:1400px;

    margin:auto;

    background:rgba(255,255,255,.98);

    border-radius:28px;

    padding:40px;

    box-shadow:

    0 20px 60px rgba(0,0,0,.12),

    0 10px 25px rgba(0,0,0,.08);

    backdrop-filter:blur(12px);

}

.quote-heading{

    text-align:center;

    margin-bottom:35px;

}

.quote-badge{

    display:inline-block;

    padding:8px 22px;

    background:#e9f9ef;

    color:#0b6d46;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:18px;

}

.quote-heading h2{

    font-size:42px;

    color:#083f2d;

    margin-bottom:10px;

}

.quote-heading p{

    color:#666;

    font-size:16px;

}

/*====================================
            FORM
=====================================*/

.quote-form{

    display:grid;

    grid-template-columns:

    repeat(5,1fr);

    gap:18px;

    align-items:center;

}

.input-box{

    height:62px;

    display:flex;

    align-items:center;

    background:#fff;

    border:1px solid #e7e7e7;

    border-radius:14px;

    overflow:hidden;

    transition:.35s;

}

.input-box:hover{

    border-color:#0c8c57;

}

.input-box:focus-within{

    border-color:#0c8c57;

    box-shadow:

    0 0 0 5px rgba(12,140,87,.12);

}

.input-box i{

    width:60px;

    text-align:center;

    color:#0b6d46;

    font-size:18px;

}

.input-box input{

    flex:1;

    border:none;

    outline:none;

    height:100%;

    padding-right:18px;

    font-size:15px;

    background:none;

}

.quote-form button{

    height:62px;

    border:none;

    cursor:pointer;

    border-radius:14px;

    background:linear-gradient(

    135deg,

    #0b6d46,

    #16a34a

    );

    color:white;

    font-size:17px;

    font-weight:600;

    transition:.35s;

    box-shadow:

    0 15px 35px rgba(22,163,74,.35);

}

.quote-form button:hover{

    transform:translateY(-4px);

    box-shadow:

    0 20px 45px rgba(22,163,74,.45);

}

.quote-form button i{

    margin-right:8px;

}

/*====================================
        LARGE LAPTOP
=====================================*/

@media(max-width:1300px){

.quote-form{

grid-template-columns:

repeat(2,1fr);

}

.quote-form button{

grid-column:span 2;

}

}

/*====================================
            TABLET
=====================================*/

@media(max-width:991px){

.quote-section{

margin-top:-60px;

padding:0 5%;

}

.quote-card{

padding:30px;

border-radius:22px;

}

.quote-heading h2{

font-size:34px;

}

}

/*====================================
            MOBILE
=====================================*/

@media(max-width:768px){

.quote-section{

margin-top:30px;

padding:0 20px;

}

.quote-card{

padding:25px;

border-radius:20px;

}

.quote-heading{

margin-bottom:25px;

}

.quote-heading h2{

font-size:28px;

line-height:1.3;

}

.quote-heading p{

font-size:15px;

}

.quote-form{

display:flex;

flex-direction:column;

gap:16px;

}

.input-box{

width:100%;

height:56px;

}

.quote-form button{

width:100%;

height:58px;

font-size:16px;

}

}

/*====================================
       SMALL PHONES
=====================================*/

@media(max-width:480px){

.quote-section{

padding:0 15px;

}

.quote-card{

padding:22px 18px;

}

.quote-heading h2{

font-size:24px;

}

.quote-heading p{

font-size:14px;

}

.input-box{

height:54px;

}

.input-box i{

width:52px;

font-size:17px;

}

.quote-form button{

height:54px;

font-size:15px;

}

}

/*====================================
      20:9 TALL DEVICES
=====================================*/

@media screen and (max-width:430px) and (min-height:850px){

.quote-section{

margin-top:35px;

}

.quote-card{

padding:24px 18px;

}

}

/* ===========================
   ABOUT IMAGE
=========================== */

.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

/* ===========================
   SLIDESHOW CONTAINER
=========================== */

.slideshow{

    position:relative;

    width:100%;
    max-width:560px;

    height:420px;

    overflow:hidden;

    border-radius:25px;

    background:#fff;

    border:4px solid #0f7b4d;

    box-shadow:
    0 10px 25px rgba(0,0,0,.15),
    0 20px 60px rgba(15,123,77,.25);

    transition:.4s ease;

}

/* Hover Effect */

.slideshow:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.20),
    0 25px 80px rgba(15,123,77,.35);

}

/* Green Glow Border */

.slideshow::before{

    content:"";

    position:absolute;

    inset:-3px;

    border-radius:28px;

    background:linear-gradient(
        135deg,
        #0f7b4d,
        #3cb371,
        #0f7b4d
    );

    z-index:-1;

    filter:blur(12px);

    opacity:.55;

}

/* ===========================
   IMAGES
=========================== */

.slide{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:
    opacity 1.2s ease,
    transform 6s ease;

    transform:scale(1);

}

/* Active Image */

.slide.active{

    opacity:1;

    transform:scale(1.08);

}

/* ===========================
   OPTIONAL DARK OVERLAY
=========================== */

.slideshow::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.18)
    );

    pointer-events:none;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:992px){

.slideshow{

    max-width:100%;

    height:360px;

}

}

@media(max-width:768px){

.slideshow{

    height:300px;

    border-radius:18px;

}

}

@media(max-width:480px){

.slideshow{

    height:240px;

    border-width:3px;

}

}

/* mobile submenu Hide submenu by default */
.mobile-submenu{
    display:none;
    list-style:none;
    padding-left:18px;
    margin-top:8px;
}

.mobile-submenu li{
    margin:8px 0;
}

.mobile-submenu li a{
    display:block;
    font-size:15px;
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.mobile-submenu li a:hover{
    color:#0b7d45;
}

.dropdown-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.dropdown-toggle i{
    transition:.3s;
}

/* Show only on mobile */
@media(min-width:992px){

    .mobile-submenu{
        display:none !important;
    }

    .dropdown-toggle i{
        display:none;
    }

}
.mobile-submenu.active{
    display:block;
}

.dropdown-toggle i.rotate{
    transform:rotate(180deg);
}

/* ===========================
           CUSTOMER REVIEWS SLIDER STYLES
        ============================ */
        .reviews-section {
            padding: 80px 20px;
            background-color: #f8fafc;
            text-align: center;
        }

        .reviews-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .reviews-section h2 {
            font-size: 2.2rem;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .reviews-section .section-text {
            color: #64748b;
            margin-bottom: 40px;
            font-size: 1rem;
        }

        .review-slider {
            position: relative;
            background: #ffffff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            min-height: 240px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #e2e8f0;
        }

        .review-slide-item {
            display: none;
            animation: fadeInReview 0.8s ease-in-out;
        }

        .review-slide-item.active {
            display: block;
        }

        @keyframes fadeInReview {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .review-stars {
            color: #f59e0b;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .review-message {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #334155;
            font-style: italic;
            margin-bottom: 25px;
        }

        .customer-details h4 {
            color: #0f172a;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .customer-details span {
            font-size: 0.85rem;
            color: #2563eb;
            background: #eff6ff;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 500;
        }

        /* Slider Indicators / Dots */
        .review-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
        }

        .r-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #cbd5e1;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .r-dot.active {
            background-color: #2563eb;
            transform: scale(1.15);
        }