:root{
    --navy:#1A1035;
    --navy-2:#241548;
    --purple:#7C3AED;
    --gold:#C9A227;
    --gold-light:#E7C873;
    --cream:#FBF8F2;
    --lavender:#F1EBFB;
    --ink:#2B2440;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Poppins',sans-serif;
    color:var(--ink);
    background:var(--cream);
    overflow-x:hidden;
  }
  h1,h2,h3{font-family:'Playfair Display',serif;}
  .display{font-family:'Cormorant Garamond',serif;}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  img{display:block;max-width:100%;}
  .container{max-width:1200px;margin:0 auto;padding:0 40px;}

  /* ---------- HERO ---------- */
  .hero{
       margin-top: 0;
    padding-top: 40px;
    position:relative;
    min-height:100vh;
    background:
      linear-gradient(120deg, rgba(26,16,53,.94) 0%, rgba(76,42,110,.75) 38%, rgba(214,122,110,.55) 68%, rgba(247,180,120,.45) 100%),
      url('../images/suchirindiaimg2.png');
    background-size:cover;
    background-position:center;
    color:#fff;
    padding-bottom:140px;
  }
  .navbar .logo, .navbar .nav-links {
    max-width: 1200px;
}
  .navbar{
      position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px; /* Adjusted padding for a sleeker sticky look */
    width: 100%;
    /* This background matches your dark navy theme with slight transparency */
    background: linear-gradient(120deg, rgb(46 30 79) 0%, rgb(104 64 113) 38%, rgb(86 71 119) 68%, rgb(116 98 120) 100%);
    /* box-shadow: 0 2px 15px rgba(0,0,0,0.2); */
    transition: all 0.3s ease;
  }
  .logo img{
    width:85px;
    height:auto;
    display:block;
}
/* Hide pages by default */
.gallery-page {
    display: none;
    animation: fadeIn 0.5s ease; /* Smooth transition */
}

/* Show the active page */
.gallery-page.active {
    display: block;
}

.dots span {
    cursor: pointer;
    transition: background 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
  .logo{
    font-family:'Playfair Display',serif;
    letter-spacing:2px;
  }
  .logo .title{font-size:20px;font-weight:600;}
  .logo .sub{font-size:9px;letter-spacing:3px;color:var(--gold-light);font-family:'Poppins',sans-serif;}
  .nav-links{display:flex;gap:34px;font-size:12.5px;letter-spacing:1.5px; margin-right: 100px;}
  .nav-links li a{position:relative;padding-bottom:8px; color: white;}
  .nav-links li:first-child a::after{
    content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--gold);
  }
  .nav-links li a:hover::after{
    content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--gold-light);
  }

  .hero-body{
    max-width:1200px;
    margin:0 auto;
    padding:5px 40px 0;
  }
  .eyebrow-serif{font-family:'Cormorant Garamond',serif;font-size:26px;letter-spacing:8px;color:#f2e9d8;font-weight:400;}
  .hero-title{
    font-family:'Playfair Display',serif;
    font-size:110px;
    line-height:1;
    font-weight:600;
    margin:6px 0 18px;
    color:#fff;
    max-width:640px;
  }
  .by-line{
    display:flex;align-items:center;gap:14px;
    font-size:13px;letter-spacing:4px;color:var(--gold-light);
    margin-bottom:22px;
  }
  .by-line::before,.by-line::after{content:'';width:60px;height:1px;background:var(--gold-light);opacity:.6;}
  .tagline{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-size:22px;
    max-width:420px;
    line-height:1.4;
    color:#f5f1e8;
    margin-bottom:34px;
  }
  .feature-row{
    display:flex;gap:35px;margin-bottom:36px;flex-wrap:wrap;
  }
  .feature-row div{max-width:100px;}
  .feature-row .icon{font-size:26px;color:var(--gold-light);margin-bottom:10px;display:block;}
  .feature-row span{font-size:10px;letter-spacing:1px;line-height:1.5;color:#e9e2f0;}
  .cta-btn{
    display:inline-block;
    background:linear-gradient(135deg,var(--gold-light),var(--gold));
    color:#231536;
    padding:16px 34px;
    font-size:12px;
    letter-spacing:2px;
    font-weight:600;
    border-radius:2px;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .cta-btn:hover{transform:translateY(-3px);box-shadow:0 12px 24px rgba(201,162,39,.35);}

  .wave-divider{
    position:absolute;bottom:-2px;left:0;width:100%;
    line-height:0;
  }
  .wave-divider svg{width:100%;height:110px;display:block;}

  /* ---------- OVERVIEW ---------- */
  .overview{
    background:var(--cream);
    padding:90px 0 100px;
  }
  .overview-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
  }
  .overview-img{
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 30px 60px -20px rgba(26,16,53,.25);
  }
  .overview-img img{width:100%;height:420px;object-fit:cover;}
  .section-label{
    font-family:'Cormorant Garamond',serif;
    font-size:14px;letter-spacing:6px;color:var(--gold);
    display:flex;align-items:center;gap:14px;margin-bottom:8px;
  }
  .section-label::before,.section-label::after{content:'—';color:var(--gold);}
  .overview h2{font-size:38px;color:var(--navy);margin-bottom:22px;letter-spacing:1px;}
  .overview p{font-size:15px;line-height:1.9;color:#5a5270;margin-bottom:34px;max-width:460px;}
  .stat-row{display:flex;gap:38px;}
  .stat{padding-right:30px;border-right:1px solid #ddd4ea;}
  .stat:last-child{border-right:none;}
  .stat .icon{color:var(--purple);font-size:22px;margin-bottom:8px;display:block;}
  .stat b{display:block;font-family:'Playfair Display',serif;font-size:22px;color:var(--navy);}
  .stat span{font-size:10px;letter-spacing:1px;color:#8a7fa0;}

  /* ---------- GALLERY ---------- */
  .gallery{
    background:linear-gradient(180deg,#eef1fb,#e4e8f7);
    padding:90px 0 80px;
    text-align:center;
  }
  .heading-row{
    display:flex;align-items:center;justify-content:center;gap:18px;margin-bottom:50px;
  }
  .heading-row h2{font-size:34px;color:var(--navy);letter-spacing:2px;}
  .heading-row .arrow{color:var(--gold);font-size:18px;}
  .gallery-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:22px;
    max-width:1200px;margin:0 auto;padding:0 40px;
  }
  .gallery-grid img{
    width:100%;height:230px;object-fit:cover;border-radius:8px;
    box-shadow:0 20px 40px -15px rgba(26,16,53,.25);
    transition:transform .35s ease;
  }
  .gallery-grid img:hover{transform:translateY(-8px);}
  .dots{display:flex;justify-content:center;gap:8px;margin-top:34px;}
  .dots span{width:7px;height:7px;border-radius:50%;background:#c4bfd8;}
  .dots span.active{background:var(--gold);}

  /* ---------- AMENITIES ---------- */
  @media(max-width:992px){
    .amenities-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .amenities-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .amenities-grid{
        grid-template-columns:1fr;
    }
}
  .amenities-grid{
    max-width:1200px;
    margin:50px auto 0;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:35px 20px;
    padding:0 20px;
}

.amenity{
    text-align:center;
    transition:.3s;
}

.amenity .icon{
    font-size:42px;
    color:#E7C873;
    margin-bottom:18px;
    transition:.3s;
}

.amenity span{
    display:block;
    font-size:15px;
    line-height:1.6;
    color:#fff;
}

.amenity:hover{
    transform:translateY(-8px);
}

.amenity:hover .icon{
    transform:scale(1.15);
    color:#FFD86B;
}
  .amenities{
    background:linear-gradient(120deg,var(--navy) 0%, #3d2266 60%, var(--purple) 100%);
    color:#fff;
    padding:80px 0;
  }
  .amenities .heading-row h2{color:#fff;}
  .amenities-row{
    display:flex;justify-content:center;flex-wrap:wrap;
    max-width:1200px;margin:0 auto;padding:0 20px;
  }
  .amenity{
    flex:1;min-width:130px;
    text-align:center;
    padding:0 22px;
    border-right:1px solid rgba(255,255,255,.18);
  }
  .amenity:last-child{border-right:none;}
 
  .amenity span{font-size:11px;letter-spacing:1px;line-height:1.6;}

  /* ---------- FLOOR PLANS ---------- */
  .floorplans{
    background:linear-gradient(180deg,#eceef8,#dfe3f5);
    padding:90px 0 60px;
    text-align:center;
  }
  .plan-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
    max-width:1150px;margin:0 auto 12px;padding:0 40px;
  }
  .plan-card{
    background:#fff;border-radius:10px;overflow:hidden;
    text-align:left;
    box-shadow:0 20px 45px -20px rgba(26,16,53,.25);
    display:flex;
  }
.plan-card .plan-img {
    width: 45%;
    background: #fff; /* Changed to white to blend with architectural drawings */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-right: 1px solid #eee;
}
.plan-info .floor-desc {
    font-size: 12px;
    color: var(--purple);
    font-weight: 500;
    margin-bottom: 10px;
}

/* New Table Layout for Specs */
.plan-specs {
    margin: 15px 0;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.spec-header, .spec-body {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.spec-header span {
    font-size: 10px;
    font-weight: 600;
    color: #8a7fa0;
    text-transform: uppercase;
    flex: 1;
}

.spec-body span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    flex: 1;
    padding-top: 4px;
}

/* Ensure the card looks good on mobile */
@media (max-width: 600px) {
    .plan-card {
        flex-direction: column;
    }
    .plan-card .plan-img {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}
.plan-card .plan-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
  .plan-info{padding:22px 20px;flex:1;}
  .plan-info h3{font-size:16px;color:var(--navy);letter-spacing:.5px;}
  .plan-info .tag{font-size:10px;color:var(--purple);letter-spacing:2px;margin-bottom:10px;display:block;}
  .plan-info .sba{font-size:11px;color:#8a7fa0;margin-bottom:14px;}
  .plan-info .price-label{font-size:9px;letter-spacing:1px;color:#8a7fa0;}
  .plan-info .price{font-family:'Playfair Display',serif;font-size:18px;color:var(--navy);margin-bottom:14px;}
  .view-btn{
    display:inline-block;background:var(--navy);color:#fff;font-size:10px;letter-spacing:1.5px;
    padding:9px 18px;border-radius:3px;
  }
  .tnc{font-size:10px;color:#8a7fa0;margin-top:14px;}

  /* ---------- LOCATION ---------- */
  .location{
    background:linear-gradient(180deg,#dfe3f5,#cfd6ef);
    padding:70px 0 90px;
  }
  .location-card{
    max-width:1150px;margin:0 auto;background:#fff;border-radius:14px;
    display:grid;grid-template-columns:1fr 1fr;overflow:hidden;
    box-shadow:0 25px 55px -25px rgba(26,16,53,.3);
  }
  .location-text{padding:50px 46px;}
  .location-text h2{font-size:28px;color:var(--navy);margin-bottom:16px;letter-spacing:1px;}
  .location-text p{font-size:14px;line-height:1.8;color:#5a5270;margin-bottom:30px;}
  .loc-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
  .loc-item{display:flex;align-items:center;gap:10px;font-size:11.5px;color:var(--navy);}
  .loc-item .icon{color:#e2b557;font-size:18px;}
 .location-map{
    position:relative;
    overflow:hidden;
    min-height:450px;
    border-radius:12px;
}

.location-map iframe{
    width:100%;
    height:100%;
    min-height:450px;
    border:0;
}
  .pin{
    position:absolute;top:42%;left:52%;
    background:var(--navy);color:#fff;
    padding:10px 16px 26px;border-radius:6px 6px 6px 0;
    font-size:9px;letter-spacing:1px;text-align:center;
    transform:translate(-50%,-50%) rotate(-3deg);
    box-shadow:0 10px 20px rgba(0,0,0,.25);
  }
  .pin b{display:block;font-family:'Playfair Display',serif;font-size:12px;color:var(--gold-light);}

  /* ---------- CONTACT ---------- */
  .contact{
    background:linear-gradient(135deg,var(--navy) 0%,#3a2166 55%,#8a4a72 100%);
    color:#fff;
    padding:80px 0 30px;
    position:relative;
  }
  .contact-grid{
    display:grid;grid-template-columns:0.9fr 1.4fr;gap:60px;
    max-width:1150px;margin:0 auto;padding:0 40px 50px;
  }
  .contact h2{font-size:30px;margin-bottom:22px;letter-spacing:1px;}
  .contact-info li{display:flex;align-items:flex-start;gap:12px;font-size:13px;margin-bottom:16px;line-height:1.6;color:#e9e2f0;}
  .contact-info .icon{color:var(--gold-light);margin-top:2px;}
  .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
  .form-grid input, .form-grid select, .form-grid textarea{
    width:100%;background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.25);
    border-radius:4px;padding:13px 14px;color:#fff;font-size:13px;font-family:'Poppins',sans-serif;
  }
  .form-grid input::placeholder,.form-grid textarea::placeholder{color:rgba(255,255,255,.55);}
  .form-grid textarea{grid-column:1/-1;resize:none;height:70px;}
  .send-btn{
    grid-column:1/-1;justify-self:start;
    background:linear-gradient(135deg,var(--gold-light),var(--gold));
    color:#231536;font-size:12px;letter-spacing:2px;font-weight:600;
    padding:14px 32px;border:none;border-radius:3px;cursor:pointer;margin-top:6px;
  }
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    max-width:1150px;margin:0 auto;padding:20px 40px 0;
    display:flex;justify-content:space-between;align-items:center;
    font-size:11px;color:#c9c1da;
  }
  .socials{display:flex;gap:10px;}
  .socials a{
    width:28px;height:28px;border-radius:50%;border:1px solid rgba(255,255,255,.3);
    display:flex;align-items:center;justify-content:center;font-size:11px;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:900px){
    .nav-links{display:none;}
    .hero-title{font-size:64px;}
    .overview-grid,.contact-grid,.location-card{grid-template-columns:1fr;}
    .gallery-grid{grid-template-columns:repeat(2,1fr);}
    .plan-grid{grid-template-columns:1fr;}
    .amenities-row{gap:20px;}
    .amenity{border-right:none;min-width:100px;}
    .form-grid{grid-template-columns:1fr;}
  }