/* ===================================
   GLOBAL STYLES
=================================== */

:root{

    --primary:#021f3c;
    --secondary:#053074;
    --accent:#c9a96e;
    --light:#f8f9fa;
    --white:#ffffff;
    --dark:#111111;
    --border:#e8e8e8;

    --shadow:0 10px 30px rgba(0,0,0,0.08);

    --radius:20px;

}

/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#f8f7f6c9;
    overflow-x:hidden;
    line-height:1.7;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ===================================
   IMAGES
=================================== */

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ===================================
   LINKS
=================================== */

a{
    text-decoration:none;
    transition:0.3s;
}

/* ===================================
   SECTION SPACING
=================================== */

.section-space{
    padding:100px 0;
}

/* ===================================
   CONTAINER
=================================== */

.container{
    max-width:1200px;
}

/* ===================================
   SECTION HEADINGS
=================================== */

.section-heading h2{
    font-size:48px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.section-tag{
    display:inline-block;
    background:rgba(2,31,60,0.08);
    color:var(--primary);
    padding:10px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* ===================================
   BUTTONS
=================================== */

.btn{
    border:none;
    transition:0.3s;
}

.enquire-btn{
    background:var(--secondary);
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
}

.enquire-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ===================================
   HERO SECTION
=================================== */
/* ===================================
HERO BANNER
=================================== */

.hero-banner{
    position:relative;
    width:100%;
    height:100vh;
    min-height:800px;
    overflow:visible ;
}

.video-box{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    z-index:2;
}

/* ===================================
BANNER CARD
=================================== */

.project-card{

    position:absolute;

    left:80px;

    bottom:60px;

    width:700px;

    max-width:85%;

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(20px);

    border-radius:28px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,0.18);

    z-index:10;
}

.project-card h2{
    font-size:48px;
    font-weight:800;
    color:#05264d;
    margin-bottom:15px;
}

.location{
    font-size:18px;
    color:#666;
}

.card-divider{
    height:1px;
    background:#ddd;
    margin:25px 0;
}

.card-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.card-bottom h3{
    font-size:30px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.card-bottom span{
    color:#666;
}

/* ===================================
MOBILE
=================================== */

@media(max-width:768px){

.hero-banner{

    height:650px !important;

    min-height:650px;

    overflow:visible;
}

.video-box{

    width:100%;
    height:100%;
}

.video-box video{

    width:100%;
    height:100%;
    object-fit:cover;
}

.project-card{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:20px;

    width:92%;

    max-width:420px;

    padding:25px;

    border-radius:25px;
}

.project-card h2{

    font-size:32px;

    line-height:1.2;

    margin-bottom:12px;
}

.location{

    font-size:16px;
}

.card-bottom{

    flex-direction:column;

    align-items:flex-start;

    gap:18px;
}

.card-bottom h3{

    font-size:22px;
}

.card-bottom span{

    font-size:14px;
}

}

/* ===================================
SMALL MOBILE
=================================== */

@media(max-width:480px){

.hero-banner{

    height:600px !important;
}

.project-card{

    width:94%;

    padding:22px;
}

.project-card h2{

    font-size:28px;
}

.card-bottom h3{

    font-size:20px;
}

}
.btn-enquire{
    display: inline-block;
    margin-top: 25px;
    background: #eaa76c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
}
.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:visible ;
}

.hero-banner-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(243, 181, 148, 0.195);
}

.hero-content{
    position:relative;
    z-index:2;
}
.hero-section{
    position:relative;
    min-height:100vh;

    background:
    linear-gradient(
        rgba(2,31,60,.65),
        rgba(2,31,60,.65)
    ),
    url("./image/banner.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-content{
    max-width:700px;
    color:#fff;
}

.hero-tag{

    display:inline-block;

    padding:10px 20px;

    background:rgba(201,169,110,.15);

    border:1px solid rgba(201,169,110,.3);

    color:#c9a96e;

    border-radius:50px;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:20px;
}

.hero-title{

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:15px;
}

.hero-location{

    color:#c9a96e;

    font-size:22px;

    font-weight:600;

    margin-bottom:25px;
}

.hero-price{

    display:inline-block;

    background:#c9a96e;

    color:#eaa76c;

    font-size:24px;

    font-weight:700;

    padding:14px 28px;

    border-radius:50px;

    margin-bottom:25px;
}

.hero-description{

    font-size:18px;

    line-height:1.8;

    max-width:600px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.btn-primary-custom{

    background:#fbfbfb;

    color:#e0a06b;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-primary-custom:hover{

    background:#fff;

    color:#eaa76c;
}

.btn-outline-custom{

    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-outline-custom:hover{

    background:#fff;

    color:#f4b080;
}

/* MOBILE */

@media(max-width:991px){

    .hero-title{

        font-size:52px;
    }

}

@media(max-width:767px){

    .hero-section{

        min-height:85vh;
    }

    .hero-title{

        font-size:38px;
    }

    .hero-location{

        font-size:18px;
    }

    .hero-price{

        font-size:18px;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .btn-primary-custom,
    .btn-outline-custom{

        text-align:center;
    }

}
/* ===================================
   NAVBAR
=================================== */

.custom-navbar{
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
    padding:12px 0;
}
.navbar {
    height: 80px;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-size: 16px;
}
.main-logo{
height:80px !important;
width:auto;
}

.navbar-nav .nav-link{
    color:var(--primary);
    font-weight:500;
    margin-left:20px;
}

.navbar-nav .nav-link:hover{
    color:var(--secondary);
}

/* ===================================
   FORM FIELDS
=================================== */

.form-control{
    border-radius:12px;
    padding:14px;
    border:1px solid #ddd;
}

.form-control:focus{
    box-shadow:none;
    border-color:var(--secondary);
}

/* ===================================
   BACK TO TOP
=================================== */

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:25px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:none;
    z-index:999;
}

/* ===================================
   FOOTER LINKS
=================================== */

.footer-links a{
    color:#fff;
    margin:0 5px;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .section-space{
        padding:50px 0;
    }

    .section-heading h2{
        font-size:14px;
    }

    .main-logo{
        height:65px;
    }

}

@media(max-width:576px){

    .section-heading h2{
        font-size:28px;
    }

    .hero-btn-primary,
    .hero-btn-outline{
        width:100%;
        margin-bottom:10px;
        margin-left:0;
    }

}

/* ===================================
   HERO SECTION
=================================== */

.hero-section{
    position:relative;
    background:#f8f9fa;
    overflow:visible ;
}

.project-tag{
    display:inline-block;
    background:rgba(2,31,60,0.08);
    color:var(--primary);
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.hero-title{
    font-size:64px;
    font-weight:800;
    color:var(--primary);
    line-height:1.1;
    margin-bottom:15px;
}

.hero-location{
    color:var(--secondary);
    font-weight:600;
    margin-bottom:20px;
}

.hero-description{
    color:#666;
    font-size:18px;
    max-width:550px;
}

.price-box{
    margin-top:30px;
    margin-bottom:30px;
    display:inline-block;
    background:#fff;
    padding:18px 25px;
    border-radius:16px;
    box-shadow:var(--shadow);
    font-weight:600;
}

.price-box span{
    display:block;
    font-size:28px;
    color:var(--secondary);
    font-weight:800;
    margin-top:5px;
}

.hero-buttons{
    margin-top:20px;
}

/* ===================================
   HERO ANIMATION
=================================== */

.hero-title,
.hero-description,
.price-box,
.hero-buttons{
    animation:fadeUp 0.8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===================================
   MOBILE HERO
=================================== */

@media(max-width:991px){

    .hero-section{
        padding-top:80px;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-description{
        font-size:16px;
    }

    .hero-bento-grid{
        margin-top:40px;
    }

}

@media(max-width:767px){

    .hero-bento-grid{
        grid-template-columns:1fr;
    }

    .bento-large{
        grid-row:auto;
    }

    .bento-large img{
        min-height:300px;
    }

    .hero-title{
        font-size:34px;
    }

    .price-box{
        width:100%;
        text-align:center;
    }

}

/* ===================================
   OVERVIEW SECTION
=================================== */

.section-padding{
    padding:100px 0;
}

.overview-section{
    padding-top:180px !important;
}
.overview-section{
    background:#ffffff;
}

.section-title{
    margin-bottom:60px;
}

.section-title span{

    color:#c9a96e;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

.section-title h2{

    color:#f4b080;

    font-size:48px;

    font-weight:800;

    margin-top:15px;

    margin-bottom:15px;
}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;
}

.overview-image{

    overflow:hidden;

    border-radius:25px;
}

.overview-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:25px;

    transition:.4s;
}

.overview-image:hover img{

    transform:scale(1.05);
}

.overview-content h3{

    color:#f4b080;

    font-size:36px;

    font-weight:700;

    margin-bottom:20px;
}

.overview-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;
}

.project-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.info-box{

    background:#f8f8f8;

    padding:25px;

    border-radius:18px;

    border-left:4px solid #c9a96e;
}

.info-box h5{

    color:#f4b080;

    font-size:16px;

    font-weight:700;

    margin-bottom:8px;
}

.info-box p{

    margin:0;

    color:#666;
}

/* MOBILE */

@media(max-width:991px){

    .overview-image img{

        height:450px;
    }

}

@media(max-width:767px){

    .section-padding{

        padding:70px 0;
    }

    .section-title h2{

        font-size:34px;
    }

    .overview-content h3{

        font-size:28px;
    }

    .project-info{

        grid-template-columns:1fr;
    }

    .overview-image img{

        height:300px;
    }

}

/* ===================================
   OVERVIEW STYLING
=================================== */

.overview-section{
    background:#ffffff;
}

.overview-card:nth-child(odd){
    border-top:4px solid var(--secondary);
}

.overview-card:nth-child(even){
    border-top:4px solid var(--accent);
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .overview-image-card{
        margin-bottom:20px;
    }

    .large-card{
        min-height:auto;
    }

}

@media(max-width:767px){

    .overview-card{
        padding:20px;
    }

    .highlight-card{
        padding:25px 20px;
    }

    .highlight-number{
        width:55px;
        height:55px;
        font-size:18px;
    }

}

.amenities-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title span {
    color: #c89b3c;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    color: #f4b080;
    font-size: 42px;
    margin: 15px 0;
}

.section-title p {
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

.amenity-card {
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: all .3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-8px);
}

.amenity-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.amenity-card h5 {
    color: #f4b080;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 30px;
    }

    .amenity-card img {
        width: 60px;
        height: 60px;
    }

    .amenity-card h5 {
        font-size: 14px;
    }
}
/* MOBILE------------------------------- */

@media(max-width:767px){

    .amenity-card img{

        height:140px;
    }

    .amenity-card h5{

        font-size:14px;

        padding:12px;
    }

}
/* ===================================
   FEATURED IMAGE
=================================== */

.amenity-feature-image{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:var(--shadow);
    height:100%;
}

.amenity-feature-image img{
    width:100%;
    height:100%;
    min-height:550px;
    object-fit:cover;
    transition:0.5s;
}

.amenity-feature-image:hover img{
    transform:scale(1.05);
}

.image-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,0.75)
    );
    color:#fff;
}

.image-overlay h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.image-overlay p{
    margin:0;
}

/* ===================================
   AMENITY CARDS
=================================== */

.amenity-card{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:0.3s;
    height:100%;
    border:1px solid #f1f1f1;
}

.amenity-card:hover{
    transform:translateY(-8px);
}

.amenity-card i{
    font-size:36px;
    color:var(--secondary);
    margin-bottom:15px;
    display:block;
}

.amenity-card h5{
    color:var(--primary);
    font-weight:700;
    margin-bottom:0;
}

/* ===================================
   STAT CARDS
=================================== */

.stat-card{
    background:var(--secondary);
    color:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-6px);
}

.stat-card h3{
    font-size:38px;
    font-weight:800;
    margin-bottom:5px;
}

.stat-card p{
    margin-bottom:0;
    font-size:15px;
}

/* ===================================
   AMENITIES ANIMATION
=================================== */
  .amenities-section {
    padding: 80px 0;
    background: #f8f9fa;
}
        .amenities-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .amenity-card {
            background: #fff;
            padding: 30px 15px;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,.08);
        }

        /* Remaining CSS */
   


.amenity-card,
.stat-card{
    transition:all 0.3s ease;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .amenity-feature-image{
        margin-bottom:25px;
    }

    .amenity-feature-image img{
        min-height:350px;
    }

}

@media(max-width:767px){

    .image-overlay{
        padding:20px;
    }

    .image-overlay h4{
        font-size:22px;
    }

    .amenity-card{
        padding:25px 15px;
    }

    .amenity-card i{
        font-size:30px;
    }

    .stat-card{
        padding:20px;
    }

    .stat-card h3{
        font-size:28px;
    }

}

/* ===================================
   FLOOR PLANS SECTION
=================================== */

/* ===================================
   FLOOR PLANS
=================================== */

.floorplans-section{
    background:#ffffff;
}

.plan-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* IMAGE */
.plan-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DARK GLASS OVERLAY (IMPORTANT FIX HERE) */
.plan-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 20px;

    /* STRONGER DARK LAYER FOR READABILITY */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.1)
    );

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* CONTENT BOX */
.plan-content {
    width: 100%;
    text-align: center;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 14px;
    padding: 18px;

    /* IMPORTANT: ensures text always visible */
    backdrop-filter: blur(10px);
}

/* TEXT FIX */
.plan-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.plan-content p {
    margin: 4px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* BUTTON */
.plan-btn-primary {
    display: inline-block;
    margin-top: 14px;
    width: 100%;

    padding: 11px 18px;
    background: #f4b080;
    color: #000;

    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s ease;
}

.plan-btn-primary:hover {
    background: #ffffff;
    color: #000;
}
/* MOBILE */

@media(max-width:767px){

    .plan-card img{

        height:220px;
    }

    .plan-buttons{

        flex-direction:column;
    }

}
/* ===================================
   PLAN CARD
=================================== */

.plan-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;

    /* ✅ FIX: increased height so text fits properly */
    height: 460px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* IMAGE */
.plan-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.plan-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    /* ✅ FIX: more spacing so content doesn't touch edges */
    padding: 25px;
    box-sizing: border-box;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.15)
    );

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* CONTENT BOX */
.plan-content {
    width: 100%;
    text-align: center;

    color: #fff;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 14px;

    /* ✅ FIX: more padding so text is never cut */
    padding: 22px;

    box-sizing: border-box;
}

/* TEXT */
.plan-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.plan-content p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* BUTTON */
.plan-btn-primary {
    display: inline-block;
    margin-top: 16px;
    width: 100%;

    padding: 12px 18px;
    background: #f4b080;
    color: #000;

    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s ease;
}

.plan-btn-primary:hover {
    background: #fff;
    color: #000;
}
/* ===================================
   PLAN CONTENT
=================================== */

.plan-content{
    padding:25px;
}

.plan-content h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}

.plan-content p{
    color:#666;
    margin-bottom:20px;
}

/* ===================================
   PLAN BADGE
=================================== */

.plan-badge{
    display:inline-block;
    background:var(--accent);
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
    text-transform:uppercase;
}

/* ===================================
   PLAN BUTTONS
=================================== */

.plan-buttons{
    display:flex;
    gap:10px;
}

.plan-view-btn{
    flex:1;
    background:#eef2f7;
    color:var(--primary);
    padding:12px;
    border-radius:12px;
    font-weight:600;
}

.plan-view-btn:hover{
    background:var(--primary);
    color:#fff;
}

.plan-enquire-btn{
    flex:1;
    background:var(--secondary);
    color:#fff;
    padding:12px;
    border-radius:12px;
    font-weight:600;
}

.plan-enquire-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ===================================
   FLOOR PLAN CTA
=================================== */

.plans-cta{
    background:#fff;
    padding:50px 30px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.plans-cta h3{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.plans-cta p{
    color:#666;
    margin-bottom:25px;
}

.plans-main-btn{
    background:var(--secondary);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.plans-main-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:767px){

    .plan-image img{
        height:220px;
    }

    .plan-buttons{
        flex-direction:column;
    }

    .plan-view-btn,
    .plan-enquire-btn{
        width:100%;
    }

    .plans-cta{
        padding:35px 20px;
    }

}

/* ===================================
   PRICE SECTION
=================================== */

.price-section{
    background:#ffffff;
}

/* ===================================
   OFFER STRIP
=================================== */

.offer-strip{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.offer-strip h4{
    font-weight:700;
    margin-bottom:8px;
}

.offer-strip p{
    margin-bottom:0;
}

.offer-btn{
    background:#fff;
    color:var(--primary);
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.offer-btn:hover{
    background:var(--accent);
    color:#fff;
}

/* ===================================
   PRICE CARDS
=================================== */

.price-card{
    background:#fff;
    padding:35px 25px;
    border-radius:24px;
    box-shadow:var(--shadow);
    text-align:center;
    height:100%;
    transition:0.3s;
    border:1px solid #f1f1f1;
}

.price-card:hover{
    transform:translateY(-10px);
}

.price-label{
    display:inline-block;
    background:#eef2f7;
    color:var(--primary);
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:20px;
}

.price-card h3{
    color:var(--secondary);
    font-size:40px;
    font-weight:800;
    margin-bottom:10px;
}

.price-card p{
    color:#666;
    margin-bottom:20px;
}

/* ===================================
   FEATURED CARD
=================================== */

.featured-price{
    background:var(--secondary);
    color:#fff;
    transform:scale(1.04);
}

.featured-price .price-label{
    background:#fff;
    color:var(--secondary);
}

.featured-price h3{
    color:#fff;
}

.featured-price p{
    color:rgba(255,255,255,0.85);
}

.featured-price .price-features li{
    color:#fff;
}

.featured-price .price-btn{
    background:#fff;
    color:var(--secondary);
}

/* ===================================
   PRICE FEATURES
=================================== */

.price-features{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.price-features li{
    padding:8px 0;
    color:#555;
    border-bottom:1px solid #eee;
}

.price-features li:last-child{
    border-bottom:none;
}

/* ===================================
   PRICE BUTTON
=================================== */

.price-btn{
    background:var(--secondary);
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
}

.price-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ===================================
   INVENTORY CARDS
=================================== */

.inventory-card{
    background:#f8f9fa;
    padding:30px 20px;
    text-align:center;
    border-radius:20px;
    transition:0.3s;
}

.inventory-card:hover{
    transform:translateY(-5px);
}

.inventory-card h4{
    color:var(--secondary);
    font-size:34px;
    font-weight:800;
    margin-bottom:5px;
}

.inventory-card p{
    color:#666;
    margin-bottom:0;
}

/* ===================================
   COST SHEET BOX
=================================== */

.cost-sheet-box{
    background:linear-gradient(
        135deg,
        #f8f9fa,
        #ffffff
    );
    padding:60px 30px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.cost-sheet-box h3{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.cost-sheet-box p{
    color:#666;
    margin-bottom:25px;
}

.cost-sheet-btn{
    background:var(--secondary);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.cost-sheet-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .featured-price{
        transform:none;
    }

}

@media(max-width:767px){

    .offer-strip{
        padding:20px;
        text-align:center;
    }

    .price-card{
        padding:25px 20px;
    }

    .price-card h3{
        font-size:32px;
    }

    .cost-sheet-box{
        padding:40px 20px;
    }

}

/* ===================================
   GALLERY SECTION
=================================== */

/* GALLERY SECTION */
.gallery-section{
    background: transparent !important;
    background-color: transparent !important;
}

/* SLIDER CONTAINER */
#gallerySlider{
    max-width: 1000px;
    margin: auto;
}

/* IMAGE */
.gallery-slide-img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* REMOVE BOOTSTRAP ARROWS */
.carousel-control-prev,
.carousel-control-next{
    display: none !important;
}

/* REMOVE DOT INDICATORS */
.carousel-indicators{
    display: none !important;
}

/* OPTIONAL: smooth zoom effect */
.carousel-item img{
    transition: transform 0.6s ease;
}

.carousel-item.active img{
    transform: scale(1.02);
}

/* GRID (your existing layout kept) */
.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img{
    transform: scale(1.08);
}

/* LARGE IMAGE */
.gallery-large{
    grid-row: span 2;
    height: 620px;
}

/* NORMAL IMAGE */
.gallery-item:not(.gallery-large):not(.gallery-wide){
    height: 300px;
}

/* WIDE IMAGE */
.gallery-wide{
    grid-column: span 2;
    height: 300px;
}

/* OVERLAY EFFECT */
.gallery-item::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.25));
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover::after{
    opacity: 1;
}
/* MOBILE */

@media(max-width:991px){

    .gallery-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .gallery-large{

        height:450px;
    }

}

@media(max-width:767px){

    .gallery-grid{

        grid-template-columns:1fr;
    }

    .gallery-large,
    .gallery-wide,
    .gallery-item{

        grid-column:auto;

        grid-row:auto;

        height:250px;
    }

}
/* ===================================
   VIDEO TOUR CARD
=================================== */

.video-tour-card{
    height:100%;
    min-height:280px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    border-radius:24px;
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    box-shadow:var(--shadow);
}

.video-icon{
    margin-bottom:20px;
}

.video-icon i{
    font-size:60px;
}

.video-tour-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.video-tour-card p{
    margin-bottom:25px;
    opacity:0.9;
}

.gallery-btn{
    background:#fff;
    color:var(--primary);
    border-radius:50px;
    padding:12px 25px;
    font-weight:600;
    display:inline-block;
}

.gallery-btn:hover{
    background:var(--accent);
    color:#fff;
}

/* ===================================
   GALLERY CTA
=================================== */

.gallery-cta{
    background:#fff;
    padding:60px 30px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.gallery-cta h3{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.gallery-cta p{
    color:#666;
    margin-bottom:25px;
}

.gallery-main-btn{
    background:var(--secondary);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.gallery-main-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .gallery-large{
        height:450px;
    }

}

@media(max-width:767px){

    .gallery-large{
        height:300px;
    }

    .gallery-wide{
        height:180px;
    }

    .video-tour-card{
        min-height:220px;
        padding:25px;
    }

    .video-icon i{
        font-size:45px;
    }

    .gallery-cta{
        padding:40px 20px;
    }

}

/* ===================================
   LOCATION & CONNECTIVITY
=================================== */

.location-section{
    background:#ffffff;
}

/* ===================================
   MAP CARD
=================================== */

.location-map-card{
    overflow:hidden;
    border-radius:24px;
    box-shadow:var(--shadow);
    background:#fff;
    height:100%;
}

.location-map-card {
    height: 100%;
    min-height: 650px;
}

.location-map-card iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.floating-enquiry-btn{
    position:fixed;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
    background:#c8a45d;
    color:#fff;
    padding:15px 10px;
    border-radius:10px 0 0 10px;
    text-decoration:none;
    font-weight:600;
    writing-mode:vertical-rl;
    text-orientation:mixed;
}

.floating-enquiry-btn:hover{
    color:#fff;
}

/* ===================================
   CONNECTIVITY CARD
=================================== */

.connectivity-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:var(--shadow);
    transition:0.3s;
    height:100%;
    text-align:center;
}

.connectivity-card:hover{
    transform:translateY(-6px);
}

.connectivity-card i{
    font-size:32px;
    color:var(--secondary);
    margin-bottom:12px;
    display:block;
}

.connectivity-card h5{
    color:var(--primary);
    font-weight:700;
    margin-bottom:8px;
}

.connectivity-card p{
    color:#666;
    margin-bottom:0;
}

/* ===================================
   LANDMARK CARD
=================================== */

.landmark-card{
    background:#f8f9fa;
    padding:25px;
    text-align:center;
    border-radius:20px;
    transition:0.3s;
    height:100%;
}

.landmark-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.landmark-card h5{
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}

.landmark-card p{
    color:var(--secondary);
    font-weight:600;
    margin-bottom:0;
}

/* ===================================
   LOCATION SECTION HEADING FIX
=================================== */

.location-section .section-heading{
    margin-bottom:60px;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .location-map-card{
        margin-bottom:20px;
    }

    .location-map-card iframe{
        height:400px;
    }

}

@media(max-width:767px){

    .location-map-card iframe{
        height:300px;
    }

    .connectivity-card{
        padding:20px;
    }

    .connectivity-card i{
        font-size:28px;
    }

    .landmark-card{
        padding:20px;
    }

}

/* ===================================
   FAQ SECTION
=================================== */

.faq-section{
    background:#f8f9fa;
}

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:18px !important;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.accordion-button{
    background:#fff;
    color:var(--primary);
    font-weight:600;
    padding:20px 25px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:var(--secondary);
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
    border:none;
}

.accordion-body{
    padding:20px 25px;
    color:#666;
    background:#fff;
}

/* ===================================
   ENQUIRY SECTION
=================================== */

.enquiry-section{
    background:#ffffff;
}

/* ===================================
   ENQUIRY CONTENT
=================================== */

.enquiry-points{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.enquiry-points li{
    padding:10px 0;
    color:var(--primary);
    font-weight:500;
    position:relative;
    padding-left:30px;
}

.enquiry-points li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:10px;
    color:var(--secondary);
    font-weight:700;
}

/* ===================================
   ENQUIRY FORM CARD
=================================== */

.enquiry-form-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

/* ===================================
   FORM STYLING
=================================== */

.enquiry-form-card .form-control{
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:15px;
    min-height:55px;
}

.enquiry-form-card textarea.form-control{
    min-height:130px;
    resize:none;
}

.enquiry-form-card .form-control:focus{
    border-color:var(--secondary);
    box-shadow:none;
}

/* ===================================
   SUBMIT BUTTON
=================================== */

.submit-btn{
    background:var(--secondary);
    color:#fff;
    padding:15px;
    border-radius:14px;
    font-weight:600;
    font-size:16px;
    transition:0.3s;
}

.submit-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ===================================
   ENQUIRY SECTION TAG
=================================== */

.enquiry-section h2{
    color:var(--primary);
    font-weight:700;
    margin-top:15px;
    margin-bottom:15px;
}

.enquiry-section p{
    color:#666;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .enquiry-form-card{
        margin-top:20px;
    }

}

@media(max-width:767px){

    .accordion-button{
        padding:18px;
        font-size:15px;
    }

    .accordion-body{
        padding:18px;
    }

    .enquiry-form-card{
        padding:25px;
    }

    .submit-btn{
        width:100%;
    }

}

/* ===================================
   FOOTER SECTION
=================================== */

.footer-section{
    background:var(--primary);
    color:#ffffff;
    padding:80px 0 30px;
}

.footer-rera{
    margin-bottom:40px;
}

.footer-rera h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    color:#ffffff;
}

.footer-rera p{
    color:rgba(255,255,255,0.8);
    margin-bottom:0;
}

/* ===================================
   DISCLAIMER
=================================== */

.footer-disclaimer{
    max-width:1000px;
    margin:0 auto 40px;
    text-align:center;
}

.footer-disclaimer h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#ffffff;
}

.footer-disclaimer p{
    color:rgba(255,255,255,0.75);
    line-height:1.8;
    margin-bottom:0;
}

/* ===================================
   FOOTER DIVIDER
=================================== */

.footer-section hr{
    border-color:rgba(255,255,255,0.15);
    margin:35px 0;
}

/* ===================================
   FOOTER LINKS
=================================== */

.footer-links{
    margin-bottom:20px;
}

.footer-links a{
    color:#ffffff;
    font-weight:500;
    transition:0.3s;
}

.footer-links a:hover{
    color:var(--accent);
}

.footer-links span{
    color:rgba(255,255,255,0.4);
    margin:0 10px;
}

/* ===================================
   COPYRIGHT
=================================== */

.copyright{
    color:rgba(255,255,255,0.7);
    font-size:14px;
}

/* ===================================
   BACK TO TOP BUTTON
=================================== */

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--secondary);
    color:#ffffff;
    cursor:pointer;
    z-index:999;
    box-shadow:var(--shadow);
    transition:0.3s;
}

.back-to-top:hover{
    background:var(--accent);
    transform:translateY(-5px);
}

.back-to-top i{
    font-size:18px;
}

/* ===================================
   GLOBAL HOVER IMPROVEMENT
=================================== */

.plan-card,
.price-card,
.amenity-card,
.highlight-card,
.connectivity-card,
.landmark-card,
.inventory-card,
.gallery-card{
    transition:all 0.3s ease;
}

/* ===================================
   SCROLLBAR
=================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:var(--secondary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary);
}

/* ===================================
   MOBILE FOOTER
=================================== */

@media(max-width:767px){

    .footer-section{
        padding:60px 0 25px;
    }

    .footer-rera h5,
    .footer-disclaimer h5{
        font-size:20px;
    }

    .footer-links a{
        display:inline-block;
        margin:5px;
    }

    .back-to-top{
        width:45px;
        height:45px;
        right:15px;
        bottom:15px;
    }

}
.navbar-nav .nav-link.active{
    color: var(--secondary);
    font-weight: 700;
}
/* ===================================
   SCROLL ANIMATION
=================================== */

.overview-card,
.highlight-card,
.plan-card,
.price-card,
.gallery-card,
.connectivity-card,
.landmark-card,
.enquiry-form-card{

    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.show{

    opacity:1 !important;
    transform:translateY(0) !important;

}

/* ===================================
   PAGE LOADED
=================================== */

body{
    opacity:0;
    transition:opacity .4s ease;
}

body.page-loaded{
    opacity:1;
}

/* =========================
   AMENITIES FINAL FIX
========================= */

.amenities-section{
    padding:100px 0;
    background:#f8f9fa;
}

.amenity-card{
    background:#fff;
    border-radius:20px;
    padding:25px 15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:0.3s;
    height:100%;
    border:1px solid #eee;
}

.amenity-card:hover{
    transform:translateY(-8px);
}

.amenity-card img{
    width:70px !important;
    height:70px !important;
    object-fit:contain;
    margin:0 auto 15px;
    display:block;
}

.amenity-card p{
    color:#f4b080;
    font-size:15px;
    font-weight:600;
    margin:0;
    line-height:1.5;
}

@media(max-width:767px){

    .amenity-card{
        padding:20px 10px;
    }

    .amenity-card img{
        width:55px !important;
        height:55px !important;
    }

    .amenity-card p{
        font-size:13px;
    }
}
.amenity-card{
    opacity:1 !important;
    visibility:visible !important;
    display:block !important;
}
body{
    opacity:1 !important;
}

.amenity-card{
    opacity:1 !important;
    visibility:visible !important;
    display:block !important;
    border:2px solid rgb(246, 183, 94) !important;
}
body{
    opacity:1 !important;
}

.plan-card,
.amenity-card,
.price-card,
.gallery-card,
.connectivity-card,
.landmark-card,
.enquiry-form-card,
.overview-card,
.highlight-card{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}
/* Button Color */
.btn,
button,
input[type="submit"],
input[type="button"] {
    background-color: #f4b080 !important;
    border-color: #f4b080 !important;
    color: #fff !important;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #e89b67 !important;
    border-color: #e89b67 !important;
}
/* ===================================
FINAL RESPONSIVE FIXES
=================================== */

/* NAVBAR */

.navbar{
min-height:80px;
}

.main-logo{
height:80px !important;
width:auto;
}

/* HERO BANNER */

.hero-banner{
position:relative;
height:100vh;
overflow:visible ;
}

.video-box{
position:absolute;
inset:0;
}

.video-box video{
width:100%;
height:100%;
object-fit:cover;
}

.banner-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
}

/* BANNER CARD */
/* ===================================
HERO BANNER
=================================== */

.hero-banner{
    position:relative;
    width:100%;
    height:100vh;
    min-height:800px;
    overflow:visible ;
}

.video-box{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    z-index:2;
}

/* ===================================
BANNER CARD
=================================== */

.project-card{

    position:absolute;

    left:80px;

    bottom:60px;

    width:700px;

    max-width:85%;

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(20px);

    border-radius:28px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,0.18);

    z-index:10;
}

.project-card h2{
    font-size:48px;
    font-weight:800;
    color:#05264d;
    margin-bottom:15px;
}

.location{
    font-size:18px;
    color:#666;
}

.card-divider{
    height:1px;
    background:#ddd;
    margin:25px 0;
}

.card-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.card-bottom h3{
    font-size:30px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.card-bottom span{
    color:#666;
}

/* ===================================
MOBILE
=================================== */

@media(max-width:768px){

.hero-banner{

    height:650px !important;

    min-height:650px;

    overflow:visible ;
}

.video-box{

    width:100%;
    height:100%;
}

.video-box video{

    width:100%;
    height:100%;
    object-fit:cover;
}

.project-card{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:20px;

    width:92%;

    max-width:420px;

    padding:25px;

    border-radius:25px;
}

.project-card h2{

    font-size:32px;

    line-height:1.2;

    margin-bottom:12px;
}

.location{

    font-size:16px;
}

.card-bottom{

    flex-direction:column;

    align-items:flex-start;

    gap:18px;
}

.card-bottom h3{

    font-size:22px;
}

.card-bottom span{

    font-size:14px;
}

}

/* ===================================
SMALL MOBILE
=================================== */

@media(max-width:480px){

.hero-banner{

    height:600px !important;
}

.project-card{

    width:94%;

    padding:22px;
}

.project-card h2{

    font-size:28px;
}

.card-bottom h3{

    font-size:20px;
}

}
/* ==========================================
FINAL MOBILE HERO FIX
========================================== */

@media screen and (max-width:768px){

.hero-banner{

    position:relative;

    height:650px !important;

    min-height:650px !important;

    overflow:visible !important;
}

.video-box{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;
}

.video-box video{

    width:100%;

    height:100%;

    object-fit:cover;
}

.project-card{

    position:absolute !important;

    left:50% !important;

    transform:translateX(-50%) !important;

    bottom:-110px !important;

    width:92% !important;

    max-width:420px !important;

    padding:24px !important;

    border-radius:24px !important;

    background:#fff !important;

    box-shadow:
    0 25px 60px rgba(0,0,0,.18) !important;

    z-index:999 !important;
}

.project-card h2{

    font-size:30px !important;

    line-height:1.2;
}

.location{

    font-size:15px !important;
}

.card-bottom{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:15px;
}

.card-bottom h3{

    font-size:22px !important;
}

.overview-section{

    padding-top:220px !important;
}

.location-map-card{

    min-height:450px !important;
}

.location-map-card iframe{

    height:450px !important;
}

.gallery-slide-img{

    height:260px !important;
}

.main-logo{

    height:55px !important;
}

.navbar{

    min-height:75px !important;
}

}

/* ==========================================
ANIMATION EFFECT
========================================== */

.section-title,
.project-card,
.overview-image,
.overview-content,
.amenity-card,
.plan-card,
.price-card,
.gallery-item,
.location-map-card,
.connectivity-card,
.landmark-card,
.enquiry-form-card{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;
}

.section-visible{

    opacity:1;

    transform:translateY(0);
}
/* GALLERY */

.gallery-slide-img{
height:550px;
object-fit:cover;
}

/* LOCATION */

.location-map-card{
min-height:600px;
}

.location-map-card iframe{
width:100%;
height:600px;
}

/* CARD HOVER */

.amenity-card,
.plan-card,
.inventory-card,
.connectivity-card,
.landmark-card{
transition:.4s;
}

.amenity-card:hover,
.plan-card:hover,
.inventory-card:hover,
.connectivity-card:hover,
.landmark-card:hover{
transform:translateY(-10px);
}

/* ANIMATION */

.reveal{
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}

.reveal.show{
opacity:1;
transform:translateY(0);
}

/* MOBILE */

@media(max-width:991px){

.project-card{
width:420px;
}

.gallery-slide-img{
height:400px;
}

.location-map-card iframe{
height:400px;
}

}

@media(max-width:768px){

.main-logo{
height:65px !important;
}


.project-card h2{
font-size:26px;
}

.location{
font-size:15px;
}

.card-bottom{
flex-direction:column;
gap:12px;
}

.gallery-slide-img{
height:280px;
}

.location-map-card{
min-height:350px;
}

.location-map-card iframe{
height:350px;
}

.floating-enquiry-btn{
right:10px;
font-size:12px;
padding:10px 8px;
}

}
@media (max-width:768px){

.hero-banner{
    height:650px !important;
    min-height:650px;
    position:relative;
    overflow:visible ;
}

.video-box{
    position:absolute;
    inset:0;
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
}

}
 
@media(max-width:576px){

.section-title h2{
font-size:28px;
}

.project-card h2{
font-size:22px;
}

.project-card{
padding:18px;
}

}
.fade-up{

opacity:0;

transform:translateY(50px);

transition:
opacity .8s ease,
transform .8s ease;
}

.fade-up.show{

opacity:1;

transform:translateY(0);
}
.plan-card,
.amenity-card,
.inventory-card,
.connectivity-card,
.landmark-card{

transition:
transform .4s ease,
box-shadow .4s ease;
}

.plan-card:hover,
.amenity-card:hover,
.inventory-card:hover,
.connectivity-card:hover,
.landmark-card:hover{

transform:translateY(-12px);

box-shadow:
0 25px 50px rgba(0,0,0,.15);
}

.overview-image img,
.gallery-slide-img,
.plan-card img{

transition:1.2s ease;
}

.overview-image:hover img,
.plan-card:hover img{

transform:scale(1.08);
}
/* ==========================================
FINAL MOBILE HERO FIX
========================================== */

@media screen and (max-width:768px){

.hero-banner{

    position:relative;

    height:650px !important;

    min-height:650px !important;

    overflow:visible !important;
}
@media (max-width: 768px) {

    .overlay-card{
        padding: 25px;
        height: auto !important;
        min-height: unset !important;
    }

    .property-features{
        margin-top: 20px;
    }

    .property-features .feature{
        margin-bottom: 0;
    }

    .property-features .feature h3{
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .property-features .feature p{
        margin-bottom: 0;
        line-height: 1.2;
    }

}
.overlay-card{
    height: auto;
    min-height: auto;
}

.video-box{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;
}

.video-box video{

    width:100%;

    height:100%;

    object-fit:cover;
}

.project-card{

    position:absolute !important;

    left:50% !important;

    transform:translateX(-50%) !important;

    bottom:-110px !important;

    width:92% !important;

    max-width:420px !important;

    padding:24px !important;

    border-radius:24px !important;

    background:#fff !important;

    box-shadow:
    0 25px 60px rgba(0,0,0,.18) !important;

    z-index:999 !important;
}

.project-card h2{

    font-size:30px !important;

    line-height:1.2;
}

.location{

    font-size:15px !important;
}

.card-bottom{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:15px;
}

.card-bottom h3{

    font-size:22px !important;
}

.overview-section{

    padding-top:220px !important;
}

.location-map-card{

    min-height:450px !important;
}

.location-map-card iframe{

    height:450px !important;
}

.gallery-slide-img{

    height:260px !important;
}

.main-logo{

    height:65px !important;
}

.navbar{

    min-height:75px !important;
}

}

/* MOBILE CARD FIX */

/* ==========================================
ANIMATION EFFECT
========================================== */

.section-title,
.project-card,
.overview-image,
.overview-content,
.amenity-card,
.plan-card,
.price-card,
.gallery-item,
.location-map-card,
.connectivity-card,
.landmark-card,
.enquiry-form-card{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;
}

.section-visible{

    opacity:1;

    transform:translateY(0);
}
.hero-banner,
.video-box{
    overflow:visible ;
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
/* ==========================
   AUTO POPUP FORM
========================== */

.lead-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
}

.lead-popup.show{
    opacity:1;
    visibility:visible;
}

.lead-popup-content{
    width:90%;
    max-width:420px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    position:relative;
    text-align:center;
    animation:popupScale .4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

@keyframes popupScale{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.popup-close{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
    color:#333;
}

.lead-popup-content h3{
    margin-bottom:10px;
    color:#021f3c;
    font-weight:700;
}

.lead-popup-content p{
    margin-bottom:20px;
    color:#666;
}

.lead-popup-content input{
    width:100%;
    padding:14px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.popup-submit{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#f4b080;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.popup-submit:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

    .lead-popup-content{
        width:92%;
        padding:25px;
    }

}