/*==========================================================
  GODREJ LEISURE PARK
  PREMIUM RESPONSIVE CSS
  PART 1
==========================================================*/

/*=========================
RESET
=========================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#222;
    line-height:1.6;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
}

img{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
}

picture{
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    background:none;
}

input,
textarea{
    outline:none;
}

ul{
    list-style:none;
}

section{
    position:relative;
}

:focus-visible{
    outline:3px solid #d4af37;
    outline-offset:3px;
}

/*=========================
VARIABLES
=========================*/

:root{

    --primary:#0E4A3A;
    --primary-dark:#06382b;

    --secondary:#D4AF37;

    --white:#ffffff;

    --black:#000000;

    --text:#222;

    --text-light:#666;

    --border:#e5e7eb;

    --bg:#f8f9fa;

    --radius:20px;

    --radius-small:12px;

    --transition:.35s ease;

    --shadow:
    0 12px 40px rgba(0,0,0,.08);

    --shadow-hover:
    0 18px 55px rgba(0,0,0,.15);

}

/*=========================
COMMON
=========================*/

.container{

    width:min(1200px,92%);
    margin:auto;

}

.section{

    padding:35px 0;

}

.bg-light{

    background:#fff;

}

.section-title{

    text-align:center;
    margin-bottom:55px;

}

.section-title h2{

    font-size:clamp(30px,4vw,48px);

    color:var(--primary);

    font-weight:700;

    position:relative;

}

.section-title h2::after{

    content:"";

    width:90px;

    height:4px;

    background:var(--secondary);

    border-radius:50px;

    display:block;

    margin:18px auto 0;

}

/*=========================
HEADER
=========================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    transition:.35s;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

.header.scrolled{

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

    min-height:78px;

}

.logo{

    font-size:1.45rem;

    font-weight:700;

    color:var(--primary);

    white-space:nowrap;

}

/*=========================
NAVBAR
=========================*/

.navbar{

    margin-left:auto;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:26px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    font-size:15px;

    font-weight:500;

    color:#222;

    transition:.3s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after{

    width:100%;

}

/*=========================
HEADER BUTTONS
=========================*/

.header-buttons{

    display:flex;

    align-items:center;

    gap:14px;

}

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:14px 26px;

    border-radius:999px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================
MENU ICON
=========================*/

.menu-toggle{

    display:none;

    width:48px;

    height:48px;

    border-radius:10px;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    font-size:30px;

    color:var(--primary);

}
/*==========================================================
  PART 2
  HERO SECTION
==========================================================*/

.hero{
    position:relative;
    padding:100px 0 30px;
    background:
    linear-gradient(135deg,
    rgba(14,74,58,.96),
    rgba(6,56,43,.94));
    color:#fff;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.08),
    transparent 40%);
    pointer-events:none;
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:60px;
    align-items:center;
}

.hero-content{
    width:100%;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    border-radius:999px;
    margin-bottom:15px;
    font-size:.9rem;
    font-weight:500;
}

.hero h1{
    font-size:clamp(40px,5vw,64px);
    line-height:1.15;
    font-weight:800;
    margin-bottom:24px;
}

.hero p{
    max-width:650px;
    font-size:17px;
    line-height:1.8;
    opacity:.95;
    margin-bottom:30px;
}

.hero-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.hero-highlights div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    padding:16px 18px;
    backdrop-filter:blur(10px);
    transition:.35s;
}

.hero-highlights div:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.15);
}



/* ==========================
   Mobile Hero Highlights
========================== */
@media (max-width: 768px) {

    .hero-highlights {
        gap: 12px;
    }

    .hero-highlights div {
        padding: 12px 14px;     /* Pehle 16px 18px tha */
        border-radius: 14px;
        font-size: 15px;        /* Font chhota */
        line-height: 1.4;
        font-weight: 500;
    }

    .hero-highlights div br{
        display:none;           /* Agar line break aa raha ho to remove */
    }

}

@media (max-width:480px){

    .hero-highlights{
        gap:10px;
    }

    .hero-highlights div{
        padding:5px 0px;
        font-size:12px;
        border-radius:12px;
    }

}



.project-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:35px;
}

.info-box{
    padding:24px 18px;
    border-radius:20px;
    text-align:center;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    transition:.35s;
    
    
    
     width: 230px;
    max-width: 100%;
    /*padding: 24px 18px;*/
    margin: 0 auto;
    
    
    
}

.info-box:hover{
    transform:translateY(-6px);
}

.info-box h4{
    font-size:15px;
    font-weight:500;
    margin-bottom:8px;
    opacity:.85;
}

.info-box p{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

/*=========================
HERO FORM
=========================*/

.hero-form{
    position:relative;
}

.glass-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    border-radius:24px;
    padding:27px;
    box-shadow:0 20px 50px rgba(0,0,0,.20);
    margin-right: -59px;
    margin-left: 180px;
}

.hero-form h3{
    text-align:center;
    font-size:28px;
    margin-bottom:25px;
    color:#fff;
}

.hero-form form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.hero-form input,
.hero-form textarea{
    width:100%;
    padding:16px 18px;
    border:none;
    border-radius:6px;
    background:#fff;
    color:#222;
    font-size:15px;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder{
    color:#888;
}

.hero-form textarea{
    resize:none;
    min-height:120px;
}

.hero-form button{
    width:100%;
    margin-top:8px;
}

/*=========================
HERO IMAGE SUPPORT
=========================*/

.hero-image{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/*=========================
HERO ANIMATION
=========================*/

.hero-content{
    animation:heroLeft .8s ease;
}

.hero-form{
    animation:heroRight .8s ease;
}

@keyframes heroLeft{

    from{
        opacity:0;
        transform:translateX(-50px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes heroRight{

    from{
        opacity:0;
        transform:translateX(50px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}
/*==========================================================
  PART 3
  HIGHLIGHTS • PRICING • AMENITIES • COMMON CARDS
==========================================================*/

/*=========================
COMMON GRID
=========================*/

.card-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:28px;

    align-items:stretch;

}

/*=========================
CARD DESIGN
=========================*/

.card,
.amenity-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:35px 28px;

    text-align:center;

    font-size:17px;

    font-weight:600;

    color:#222;

    overflow:hidden;

    transition:.35s;

    box-shadow:
    0 15px 45px rgba(0,0,0,.08);

}

.card::before,
.amenity-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

}

.card:hover,
.amenity-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.16);

}

.card:hover::before,
.amenity-card:hover::before{

    height:100%;

    opacity:.05;

}

/*=========================
AMENITIES
=========================*/

.amenity-card{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:160px;

    font-size:18px;

    gap:10px;

}

/*=========================
PRICING SECTION
=========================*/

.pricing-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.pricing-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    overflow:hidden;

    transition:.35s;

    border-top:6px solid var(--secondary);

    box-shadow:
    0 18px 45px rgba(0,0,0,.08);

}

.pricing-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 35px 70px rgba(0,0,0,.18);

}

.pricing-card h3{

    font-size:25px;

    color:var(--primary);

    margin-bottom:15px;

}

.pricing-card p{

    font-size:13px;

    color:#666;

    margin-bottom:8px;

}

.pricing-card h4{

    font-size:42px;

    color:var(--primary);

    margin-bottom:8px;

    font-weight:700;

}

.pricing-card .btn{

    width:100%;

}

/*=========================
FEATURED CARD
=========================*/

.pricing-card:nth-child(2){

    transform:scale(1.03);

    border-top:6px solid var(--primary);

}

.pricing-card:nth-child(2):hover{

    transform:scale(1.05);

}

/*=========================
SECTION BACKGROUND
=========================*/

.bg-light{

    background:#fff;

}

/*=========================
ICON CIRCLE
=========================*/

.card-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:rgba(14,74,58,.08);

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 22px;

    font-size:28px;

}

/*=========================
HOVER EFFECT
=========================*/

.card,
.amenity-card,
.pricing-card{

    will-change:transform;

}

/*=========================
SMOOTH ANIMATION
=========================*/

.card,
.amenity-card,
.pricing-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==========================================================
  PART 4
  LOCATION • FLOOR PLAN • MASTER PLAN • GALLERY • ABOUT
==========================================================*/

/*=========================
LOCATION
=========================*/

.location-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.map-box{

    width:100%;

    min-height:450px;

    background:#edf2f5;

    border-radius:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:22px;

    font-weight:700;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.location-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.location-list li{

    background:#fff;

    padding:22px 24px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

    font-size:17px;

    font-weight:500;

    border-left:5px solid var(--secondary);

}

.location-list li:hover{

    transform:translateX(8px);

}

/*=========================
FLOOR PLAN
=========================*/

.plan-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.plan-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.plan-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.plan-card .btn{

    width:calc(100% - 40px);

    margin:20px;

}

/*=========================
MASTER PLAN
=========================*/

.master-plan{

    text-align:center;

}

.master-plan img{

    width:100%;

    max-width:1100px;

    margin:auto;

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.master-plan img:hover{

    transform:scale(1.02);

}

.master-plan .btn{

    margin-top:30px;

}

/*=========================
GALLERY
=========================*/

.gallery-grid{

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: center;

}

.gallery-grid img{

    width:75%;

    height:200px;

    object-fit:cover;

    border-radius:20px;

    cursor:pointer;

    transition:.4s;

    box-shadow:var(--shadow);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/*=========================
ABOUT
=========================*/

.about-text{

    max-width:900px;

    margin:auto;

    text-align:center;

    font-size:18px;

    color:#666;

    line-height:1.9;

    margin-bottom:55px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.stat-card{

    background:#fff;

    padding:45px 25px;

    border-radius:24px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.stat-card h3{

    font-size:48px;

    color:var(--primary);

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

    font-size:17px;

}

/*=========================
COMMON IMAGE
=========================*/

.gallery-grid img,
.plan-card img,
.master-plan img{

    display:block;

    max-width:100%;

}

/*=========================
SECTION ANIMATION
=========================*/

.location-grid,
.gallery-grid,
.stats-grid{

    animation:fadeUp .8s ease;

}
/*==========================================================
PART 5
TESTIMONIAL • FAQ • CONTACT • FOOTER • POPUP • FLOATING CTA
==========================================================*/

/*=========================
TESTIMONIAL
=========================*/

.testimonial-slider{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.testimonial{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

    position:relative;

}

.testimonial::before{

    content:"★★★★★";

    display:block;

    color:#D4AF37;

    font-size:22px;

    margin-bottom:15px;

}

.testimonial:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

.testimonial p{

    color:#666;

    line-height:1.8;

}

/*=========================
FAQ
=========================*/

.faq-item{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:var(--shadow);

}

.faq-question{

    width:100%;

    padding:22px 28px;

    background:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.faq-question:hover{

    color:var(--primary);

}

.faq-question::after{

    content:"+";

    font-size:26px;

    transition:.35s;

}

.faq-item.active .faq-question::after{

    transform:rotate(45deg);

}

.faq-answer{

    display:none;

    padding:0 28px 24px;

    color:#666;

    line-height:1.8;

}

/*=========================
CONTACT
=========================*/

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:45px;

    align-items:center;

    margin-bottom:40px;

}

.contact-grid h3{

    color:var(--primary);

    margin-bottom:15px;

    font-size:30px;

}

.contact-grid p{

    color:#666;

    margin-bottom:10px;

    font-size:17px;

}

/*=========================
FOOTER
=========================*/

.footer{

    background:#081d16;

    color:#fff;

    padding:40px 0;

    text-align:center;

}

.footer p{

    opacity:.9;

    font-size:13px;
    text-align: justify;

}

/*=========================
POPUP
=========================*/

.popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;

    align-items:center;

    padding:20px;

    z-index:99999;

    backdrop-filter:blur(8px);

}

.popup-content{

    width:100%;

    max-width:520px;

    background:#fff;

    border-radius:24px;

    padding:40px;

    position:relative;

    animation:popupOpen .35s ease;

}

@keyframes popupOpen{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.close-popup{

    position:absolute;

    right:20px;

    top:15px;

    font-size:34px;

    cursor:pointer;

    color:#555;

}

.popup-content h3{

    text-align:center;

    margin-bottom:25px;

    color:var(--primary);

}

.popup form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.popup input,

.popup textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:14px;

    font-size:15px;

}

.popup textarea{

    resize:none;

    min-height:130px;

}

.popup .btn{

    width:100%;

}

/*=========================
FLOATING BUTTONS
=========================*/

.floating{

    position:fixed;

    right:20px;

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:15px;

    font-weight:600;

    z-index:999;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.35s;

}

.floating:hover{

    transform:scale(1.08);

}

.whatsapp{

    background:#25D366;

    bottom:95px;

}

.call{

    background:var(--primary);

    bottom:25px;

}

/*=========================
COMMON ANIMATION
=========================*/

.card,

.amenity-card,

.plan-card,

.pricing-card,

.stat-card,

.testimonial{

    transition:.35s;

}
/*==========================================================
PART 6
RESPONSIVE + MOBILE MENU
==========================================================*/

/*=========================
1400px
=========================*/

@media (max-width:1400px){

.container{
    width:min(1180px,94%);
}

.hero-grid{
    gap:50px;
}

.hero h1{
    font-size:56px;
}

}

/*=========================
1200px
=========================*/

@media (max-width:1200px){

.hero-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.hero-content{
    text-align:center;
}

.hero p{
    margin:auto;
    margin-bottom:0px;
}

.hero-highlights{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.project-info{
    max-width:700px;
    margin:auto;
    margin-bottom:5px;
}

.hero-buttons{
    justify-content:center;
}

.hero-form{
    max-width:650px;
    margin:auto;
}

.location-grid,
.contact-grid{
    grid-template-columns:1fr;
}

}

/*=========================
992px
=========================*/

@media (max-width:992px){

.header .container{

    min-height:74px;

}

.menu-toggle{

    display:flex;

}

.navbar{

    position:fixed;

    top:74px;

    right:-100%;

    width:320px;

    height:calc(100vh - 74px);

    background:#fff;

    transition:.40s;

    box-shadow:-10px 0 30px rgba(0,0,0,.10);

    padding:30px;

    overflow-y:auto;

    z-index:9999;

}

.navbar.active{

    right:0;

}

.nav-links{

    flex-direction:column;

    align-items:flex-start;

    gap:24px;

}

.nav-links a{

    font-size:17px;

}

.header-buttons{

    display:none;

}

.hero{

    padding:130px 0 70px;

}

.project-info{

    grid-template-columns:1fr;

}

.hero-highlights{

    grid-template-columns:1fr;

}

.location-grid{

    gap:40px;

}

.contact-grid{

    gap:40px;

}

}

/*=========================
768px
=========================*/

@media (max-width:768px){

.section{

    padding:10px 0px;

}

.hero{

    padding-top:120px;

}

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:16px;

}

.section-title h2{

    font-size:34px;

}

.pricing-grid{

    grid-template-columns:1fr;

}

.card-grid{

    grid-template-columns:1fr;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.stats-grid{

    grid-template-columns:1fr;

}

.testimonial-slider{

    grid-template-columns:1fr;

}

.btn{

    width:57%;

}

.hero-buttons{

    flex-direction:column;
    align-items: center;

}

.popup-content{

    padding:30px;

}

.card, .amenity-card {
    padding: 6px 28px;
    font-size: 13px;
}
.section-title {
        margin-bottom: 45px;
}

.amenity-card {
    min-height: 12px;
}

.location-list li {
    font-size: 13px;
    border-radius: 10px;
    padding: 9px 24px;
}

.location-list li{
    margin-bottom: 12px;
}

.location-list li:last-child{
    margin-bottom: 0;
}

.plan-card img {
    height: 100px;
}
.plan-overlay {
    bottom: 0px;
}
.plan-btn {
    font-size: 7px;
}
.contact-grid p {
    font-size: 13px;
    text-align: justify;
}
.pricing-card .btn {
    width: 65%;
}



}

/*=========================
576px
=========================*/

@media (max-width:576px){

.container{

    width:92%;

}

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:11px;

}

.badge{

    font-size:13px;
    margin-top: 7px;

}

.section-title h2{

    font-size:30px;

}

.plan-card img{

    height:240px;

}

.gallery-grid img{

    height:240px;

}

.map-box{

    min-height:260px;

}

.popup-content{

    padding:25px;

}

}

/*=========================
480px
=========================*/

@media (max-width:480px){

.hero{

    padding-top:110px;

}

.hero h1{

    font-size:30px;

}

.hero-form h3{

    font-size:20px;

}

.glass-card{

    padding:25px;

}

.info-box{

    padding:5px;
    font-size: 12px;

}

.pricing-card{

    padding:5px 40px;

}

.pricing-card h4{

    font-size:30px;

}

.floating{

    width:52px;

    height:52px;

    font-size:13px;

}


}

/*=========================
375px
=========================*/

@media (max-width:375px){

.hero h1{

    font-size:28px;

}

.section-title h2{

    font-size:20px;
    margin-top: 32px;

}

.logo{

    font-size:20px;

}

.navbar{

    width:100%;

}


}

/*=========================
320px
=========================*/

@media (max-width:320px){

.hero h1{

    font-size:19px;

}

.btn{

    padding:5px;

    font-size:14px;
    margin-bottom: 10px;

}
.hero-form button {
    margin-top: -15px;
}

.hero-form input{

    padding:5px;

}

.popup-content{

    padding:20px;

}


}

/*=========================
MENU OVERLAY
=========================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

body.menu-open{

    overflow:hidden;

}











/*==========================================
PROJECT OVERVIEW
==========================================*/

.project-overview{

    background:#fff;

}

.overview-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.overview-image{

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 55px rgba(0,0,0,.12);

}

.overview-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.overview-image:hover img{

    transform:scale(1.05);

}

.overview-content h3{

    font-size:38px;

    color:var(--primary);

    margin:15px 0 20px;

}

.overview-content p{

    color:#666;

    line-height:1.9;

    font-size:16px;

    margin-bottom:30px;

}

.overview-badge{

    display:inline-block;

    padding:8px 18px;

    background:#f3f8f6;

    color:var(--primary);

    border-left:4px solid var(--secondary);

    border-radius:8px;

    font-size:14px;

    font-weight:600;

}

.overview-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;

}

.feature-box{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    padding:16px;

    transition:.35s;

    font-weight:500;

}

.feature-box:hover{

    transform:translateY(-5px);

    border-color:var(--secondary);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.feature-box i{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef7f4;

    color:var(--primary);

    font-size:18px;

}

/*=========================
Responsive
=========================*/

@media(max-width:992px){

.overview-grid{

grid-template-columns:1fr;

gap:40px;

}

.overview-image{

order:1;

}

.overview-content{

order:2;

}

}

@media(max-width:768px){

.overview-content h3{

font-size:30px;

}

.overview-features{

grid-template-columns:1fr;

}

}

@media(max-width:480px){

.overview-content h3{

font-size:25px;

}

.overview-content p{

font-size:13px;
text-align: justify;

}

.feature-box{

padding:14px;

}

}















.plan-card{

    position:relative;

    overflow:hidden;

}

/* Image */

.plan-card img{

    width:100%;

    height:100px;

    object-fit:cover;

    transition:.5s;

    filter:blur(3px);

}

/* Blur remove */

.plan-card:hover img{

    filter:blur(5px);

    transform:scale(1.05);

}

/* Overlay */

.plan-overlay{

    position:absolute;

    left:0;

    bottom:80px;

    width:100%;

    height:0;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    transition:.45s ease;

}

/* Bottom to Top */

.plan-card:hover .plan-overlay{

    height:240px;

}

/* Button */

.plan-btn{

    padding:15px 45px;

    background:transparent;

    color:#fff;

    border:2px solid #fff;

    font-size:18px;

    letter-spacing:1px;

    cursor:pointer;

    opacity:0;

    transform:translateY(40px);

    transition:.35s;

}

.plan-card:hover .plan-btn{

    opacity:1;

    transform:translateY(0);

    transition-delay:.2s;

}

.plan-btn:hover{

    background:#fff;

    color:#0E4A3A;

}









.logo img{

    height:60px;

    width:auto;

    display:block;

}

@media (max-width:768px){

.logo img{

    height:45px;

}

}













/*=========================
TOP HERO IMAGE
=========================*/

.hero-top-image{
    margin:0;
    padding:0;
    line-height:0;
}

.hero-top-image img{
    width:100%;
    display:block;
    height:auto;
    margin-top: 75px;
}

@media (min-width:769px){

.hero-top-image{
    display:none;
}

}

@media (max-width:768px){

.hero{
    padding-top:0;
}

.hero-top-image{
    display:block;
}

}





/* Match Existing Form Design */

#heroForm textarea{

    width:100%;

    background:inherit;

    border:inherit;

    border-radius:inherit;

    padding:inherit;

    font:inherit;

    color:inherit;

    resize:none;

    min-height:90px;

    margin-bottom:18px;

}

#heroForm textarea::placeholder{

    color:inherit;

    opacity:.7;

}

.consent-text{

    font-size:10px;

    line-height:1.4;

    color:#f2f2f2;

    margin:0 0 18px;

}






/*=========================
MOBILE ACTION BAR
=========================*/

.mobile-action-bar{

    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:70px;

    display:none;

    grid-template-columns:repeat(3,1fr);

    z-index:99999;

    box-shadow:0 -8px 25px rgba(0,0,0,.18);

}

.mobile-action{

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:6px;

    text-decoration:none;

    border:none;

    cursor:pointer;

    color:#fff;

    font-weight:700;

    font-size:10px;

    text-transform:uppercase;

}

.mobile-action i{

    font-size:15px;

}

.mobile-action.call{

    background:#0f2744;

}

.mobile-action.whatsapp{

    background:#004d40;

    color:#25D366;

}

.mobile-action.enquire{

    background:#263238;

    color:#d4af37;

}

/* ONLY MOBILE */

@media(max-width:768px){

    .mobile-action-bar{

        display:grid;

    }

    body{

        padding-bottom:70px;

    }

}

/* HIDE DESKTOP */

@media(min-width:769px){

    .mobile-action-bar{

        display:none !important;

    }

}








/* ==========================
   DESKTOP HERO BACKGROUND
========================== */

@media (min-width: 992px) {

.hero{
    position: relative;
    background: url("image/banner-desktop.webp") center center / cover no-repeat;
    color: #fff;
}

/* Green overlay */
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 74, 58, 0.70); /* Overlay */
    z-index: 1;
}

.hero .container{
    position: relative;
    z-index: 2;
}

}



html{
    scroll-behavior:smooth;
    scroll-padding-top:75px;
}


