* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
h1,h2,h3,h4{
  margin-top: 0;
}
/* THIS IS FOR ANIMATION FOR ALL THE SECTIONS */
section{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .9s ease, transform .9s ease;
}

section.show{
  opacity:1;
  transform:none;
}
.hero{
  opacity:1 !important;
  transform:none !important;
}

/* Base Header */
.lux-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 70px;
  display: flex;
  justify-content: center;
  transition: all 0.35s ease;
  z-index: 999;
  background: transparent;
}

/* When Scrolled */
.lux-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 70px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

/* Container */
.header-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header {
  height: 80px;              /* fixed – will NOT grow */
  padding: 0 40px;           /* unchanged */
  display: flex;
  align-items: center;
}

/* Logo */
/* .logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
} */
.logo img {
  height: 150px;              /* increase logo here */
  width: auto;
  max-height: 100%;
  object-fit: contain;
}

/* Desktop Navigation */
.navbar {
  display: flex;
  align-items: center;
  transition: 0.4s ease;
}

.navbar a {
  margin-left: 35px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
  letter-spacing: 0.5px;
}

/* When Scrolled → switch menu color */
.lux-header.scrolled .navbar a {
  color: #1a1a1a;
}

/* Hover Gold Effect */
.navbar a:hover {
  color: #c7a45f;
}

/* Contact Button */
.contact-btn {
  border: 1px solid #c7a45f;
  padding: 6px 18px;
  border-radius: 4px;
}

.contact-btn:hover {
  background: #c7a45f;
  color: white !important;
}

/* -------------------------
    MOBILE MENU
-------------------------- */
.menu-icon {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.menu-icon span {
  height: 3px;
  width: 100%;
  background: #0a0a0a;
  transition: 0.3s ease;
}

/* When Scrolled → hamburger turns dark */
.lux-header.scrolled .menu-icon span {
  background: #000;
}

/* Mobile-specific nav */
@media (max-width: 900px) {

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100vw;
    background: gray;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }

  .navbar a {
    margin: 15px 0;
    color: #000 !important;
    font-size: 18px;
      font-family:'Cinzel', serif;

  }

  /* Show hamburger */
  .menu-icon {
    display: flex;
  }

  /* Mobile menu open */
  .navbar.active {
    right: 0;
  }

  /* Hamburger Animation */
  .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* HERO SECTION */
.hero-slider {
    position: relative;
    width: 100vw;
    height: 1000px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%); /*  dim-dark effect */
}

/* Optional zoom-in effect */
.hero-slide.active img {
    animation: zoom 5s linear forwards;
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); } /* Slight zoom like DLF */
}
  .hero-overlay {
      position: absolute;
      
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }
/* Centered content */
.hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 20px;
  color:#ffffff;
  animation: fadeUp 1.2s ease;

}
    .hero-title {
      font-size: 50px;
      font-weight: 700;
      letter-spacing: 3px;
      margin-bottom: 10px;
      font-family: 'cinzel',serif;
    }

    .hero-subtitle {
      font-size: 18px;
      opacity: 0.9;
      max-width: 750px;
      margin: 0 auto;
      color: darkgrey;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
.premium-section {
  padding: 40px 0;
  background: #fff;
  line-height: 1.5;
}

.premium-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.premium-section h2 {
  font-size: 44px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #111;
  margin-bottom: 20px;
}

.premium-section .subtitle {
  max-width: 780px;
  margin: 0 auto 70px;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  font-weight: 300;
}

.premium-services {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.service-box {
  flex: 1;
  min-width: 300px;
  background: #fafafa;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  transition: 0.4s ease;
  border: 1px solid #eee;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  border-color: #c7a45f;
}

.service-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #c7a45f;
  margin-bottom: 12px;
}

.service-box p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}
.service-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Luxurious Showcase Section */
.luxury-showcase {
  background-color: #f9f9f9;
  padding: 0px ;
  font-family: 'Cinzel', serif;
  color: #0a1d37;
}

.luxury-showcase .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.luxury-header {
  text-align: center;
  margin-bottom: 60px;
}

.luxury-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a1d37;
}

.luxury-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #4b4b4b;
}

.luxury-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.luxury-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease;
}

.luxury-item:hover {
  transform: translateY(-10px);
}

.luxury-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.luxury-item h3 {
  font-size: 24px;
  margin: 20px 0 10px;
  color: #0a1d37;
}

.luxury-item p {
  font-size: 16px;
  padding: 0 15px 20px;
  color: #666;
}

@media (max-width: 992px) {
  .luxury-grid {
grid-template-columns: repeat(2,1fr);    
  }
}

.signature{
  background:#fff;
  padding:70px 4%;
}

.signature-wrap{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:120px;
  max-width:1300px;
  margin:auto;
  padding: 0 20px;
}

/* LEFT */
.signature-left{
  position:relative;
  padding-left:40px;
}

.signature-line{
  position:absolute;
  left:0;
  top:6px;
  height:90%;
  width:2px;
  background:var(--gold);
}

.signature-eyebrow{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
}

.signature-left h2{
  margin:24px 0;
  font-family:'Cinzel',serif;
  font-size:44px;
  color:var(--navy);
  line-height:1.25;
}

.signature-left p{
  font-size:15px;
  color:#555;
  max-width:520px;
  margin-bottom:18px;
}

/* RIGHT */
.signature-right{
  display:flex;
  flex-direction:column;
  gap:50px;
}

.experience{
  display:flex;
  gap:28px;
  align-items:flex-start;
}

.exp-no{
  font-family:'Cinzel',serif;
  font-size:34px;
  color:var(--gold);
  line-height:1;
}

.experience h4{
  font-size:18px;
  color:var(--navy);
  margin-bottom:6px;
}

.experience p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}


/* RESPONSIVE */
@media(max-width:992px){
  .signature-wrap{
    grid-template-columns:1fr;
    gap:70px;
  }

  .signature-left h2{
    font-size:36px;
  }
}

/* <!-- HTML – Luxury Enquiry Section  --> */
.luxury-enquiry {
  background: #fafafa;
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
  font-family: "Playfair Display", serif;
}

.luxury-enquiry-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid #111;
  padding: 0 20px;
}

.luxury-enquiry-item {
  padding: 60px 55px;
  border-right: 1px solid #e6e6e6;
  position: relative;
}

.luxury-enquiry-item:last-child {
  border-right: none;
}

.enquiry-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 14px;
}

.luxury-enquiry-item h3 {
  font-size: 26px;
  font-weight: 500;
  color: #111;
  margin-bottom: 18px;
}

.luxury-enquiry-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 420px;
}

.luxury-enquiry-item a {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #111;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.luxury-enquiry-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 1px;
  background: #111;
  transition: width 0.4s ease;
}

.luxury-enquiry-item a:hover::after {
  width: 100%;
}

/* Subtle hover lift */
.luxury-enquiry-item:hover {
  background: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .luxury-enquiry-container {
    grid-template-columns: 1fr;
  }

  .luxury-enquiry-item {
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    padding: 50px 35px;
  }

  .luxury-enquiry-item:last-child {
    border-bottom: none;
  }
}
/* CALL FLOAT */
.call-float{
  position:fixed;
  bottom:94px; /* stacked above WhatsApp */
  right:28px;
  width:54px;
  height:54px;
  background:#0f172a; /* deep navy */
  color:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  transition:transform .3s ease, box-shadow .3s ease;
}

.call-float:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(0,0,0,.25);
}
/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  bottom:28px;
  right:28px; /* bottom-right  */
  width:54px;
  height:54px;
  background:#25d366;
  color:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  transition:transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(0,0,0,.25);
}

/* Footer Styles */
.site-footer {
  background-color: #101010;
  color: #ccc;
  font-family: Arial, sans-serif;
  padding: 40px 0 20px;
  margin-top: 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  padding: 0 20px;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer-col h3 {
  margin-bottom: 15px;
  color: #fff;
}
.footer-col p,
.footer-col ul {
  font-size: 0.95em;
  line-height: 1.6;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-col  p a{
  text-decoration: none;
  color: gray;
}
.social-icons a {
  margin-right: 15px;
  color: #ccc;
  font-size: 1.2em;
  text-decoration: none;
}
.social-icons a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
}
.footer-bottom p {
  font-size: 0.9em;
  color: #777;
  margin: 0;
}
.footer-bottom  a {
text-decoration: none;
color:gray;
position: relative;
}
.footer-bottom a::after{
   content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:1px;
  background:#B89A5A;
  transition:.3s;
}
.footer-bottom a:hover::after{
  width: 100%;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 30px;
  }
}
/* =====================================================
   GLOBAL RESPONSIVE SAFETY
===================================================== */
img, video {
  max-width: 100%;
  height: auto;
}

section {
  overflow-x: hidden;
}

/* =====================================================
   LARGE DESKTOPS (≥1600px)
===================================================== */
@media (min-width: 1600px) {

  .header-container,
  .premium-section .container,
  .luxury-showcase .container,
  .luxury-enquiry-container,
  .footer-container {
    max-width: 1400px;
  }

  .signature-wrap {
    max-width: 1400px;
  }
}

/* =====================================================
   LAPTOPS & SMALL DESKTOPS (≤1200px)
===================================================== */
@media (max-width: 1200px) {
  .hero-slider{
    height: 900px;
  }
  .lux-header {
    padding: 16px 40px;
  }
  .lux-header.scrolled {
    padding: 10px 40px;
  }
 .hero-title {
    font-size: 44px;
  }

  .premium-section {
    padding: 40px 0;
  }

  .signature {
    padding: 70px 4%;
  }
  .luxury-enquiry{
    padding: 40px 0;
  }
}
/* =====================================================
   TABLETS LANDSCAPE (≤992px)
===================================================== */
@media (max-width: 992px) {
  .hero-slider {
    height: 85vh;
  }
 .hero-title {
    font-size: 38px;
    letter-spacing: 2px;
  }
  .premium-section h2,
  .luxury-header h2 {
    font-size: 36px;
  }

  .premium-services {
    flex-direction: column;
    gap: 30px;
  }

  .signature-wrap {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .signature-left {
    padding-left: 0;
  }

  .signature-line {
    display: none;
  }

}

/* =====================================================
   TABLETS & LARGE MOBILES (≤768px)
===================================================== */
@media (max-width: 768px) {
  .lux-header {
    padding: 14px 24px;
  }

  .logo img {
    height: 120px;
  }

  .hero-slider {
    height: 75vh;
  }
.hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
  .premium-section {
    padding: 30px 0;
  }

  .premium-section h2 {
    font-size: 32px;
  }

  .premium-section .subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }
.luxury-showcase{
  padding: 5px 10%;
}

  .luxury-item {
    max-width: 100%;
  }

  .luxury-item img {
    height: 200px;
  }

  .signature-left h2 {
    font-size: 32px;
  }

  .luxury-enquiry {
    padding: 0px 0;
  }

  .luxury-enquiry-item {
    padding: 25px 30px;
  }

  .call-float,
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
}

/* =====================================================
   SMALL MOBILES (≤480px)
===================================================== */
@media (max-width: 480px) {
  .logo img{
    height: 100px;
  }
  .hero-slider {
    height: 68vh;
  }
 .hero-title {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
  .premium-section{
    padding: 20px 0;
  }
  .premium-section h2,
  .luxury-header h2 {
    font-size: 28px;
  }

  .premium-section .subtitle {
    font-size: 15px;
  }
  .service-box {
    padding: 20px 20%;
  }

  .signature-left h2 {
    font-size: 28px;
  }

  .experience {
    gap: 18px;
  }

  .exp-no {
    font-size: 28px;
  }
.luxury-showcase{
  padding: 20px 10%;
}
  .luxury-item h3 {
    font-size: 20px;
  }

  .luxury-item p {
    font-size: 15px;
  }
.signature{
  padding: 20px 4%;
}
  .footer-container {
    padding: 0 15px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col p,
  .footer-col ul {
    font-size: 14px;
  }
}

/* =====================================================
   EXTRA SMALL DEVICES (≤360px)
===================================================== */
@media (max-width: 360px) {
  .logo img {
    height: 100px;
  }

  .premium-section h2,
  .signature-left h2 {
    font-size: 26px;
  }
  .luxury-enquiry-item a{
    font-size: 10px;
  }
  .call-float,
  .whatsapp-float {
    width: 46px;
    height: 46px;
    right: 18px;
  }

  .call-float {
    bottom: 82px;
  }

  .whatsapp-float {
    bottom: 20px;
  }
}
