
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  overflow-x:hidden;
}

h1,h2,h3,h4,h6{
  font-family:'Playfair Display', serif;
}
.desc{
  font-size: 14px;
}
/* ================= NAVBAR ================= */

#nav{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar{
  padding: 20px 0;
  background: transparent;
  transition: all 0.4s ease;
}

/* Navbar on scroll */
.navbar.scrolled{
  background: #67366a;
  backdrop-filter: blur(12px);
  padding: 12px 0;
}

.navbar-brand{
  font-size: 20px;
  font-weight: 500;
  color: #000;
  transition: 0.3s;
}

.navbar.scrolled .navbar-brand{
  color: #fff;
}

/* Links */
.nav-link{
  position: relative;
  margin-left: 25px;
   color: #fff !important;
  transition: 0.3s;
}

.navbar.scrolled .nav-link{
  color: #fff !important;
}

/* Premium underline */
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background:#d4af37;
  transform:scaleX(0);
  transform-origin:right;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1);
}

.nav-link:hover::after{
  transform:scaleX(1);
  transform-origin:left;
}

/* Active link */
.nav-link.active{
  color:#d4af37 !important;
}

.nav-link.active::after{
  transform:scaleX(1);
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
}

/* Remove focus shadow */
.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}
.navbar-toggler-icon{
     background-image:url(../images/menu.png);
}

/* HERO */

.hero{
  background-image:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url(../images/banner.png);
  height:100vh;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  color:#fff;
}

.hero h1{
  font-size:40px;
  line-height:1.1;
}

.hero p{
  margin-top:20px;
  max-width:500px;
  color:#ddd;
}
.captcha-wrapper{
    display:flex;
    gap:10px;
    align-items:center;
}

.captcha-box{
    background:#18171756;
    padding:10px 15px;
    font-size:16px;
    font-weight:bold;
    letter-spacing:3px;
    text-align:center;
    user-select:none;
    border-radius:5px;
    min-width:120px;
}

.captcha-input{
    flex:1;
}

/* Button */
.btn-custom{
  margin-top:30px;
  padding:14px 40px;
  border-radius:40px;
  background:#d4af37;
  color:#000;
  font-weight:500;
  border:none;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

/* ===== Compact Luxury Heading ===== */

.luxury-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:25px;
  margin:0px auto 50px;
  max-width:900px;  
}

.luxury-heading h2{
  font-family:'Playfair Display', serif;
  font-size:2.6rem;
  font-weight:600;
  color:#111;
  white-space:nowrap;
  position:relative;
}

/* Decorative small diamond */
.luxury-heading h2::before{
  content:"◆";
  position:absolute;
  top:-20px;
  left:50%;
  transform:translateX(-50%);
  font-size:12px;
  color:#d4af37;
}

/* Short elegant lines */
.luxury-heading .line{
  width:80px;   /* Fixed small width */
  height:2px;
  background:linear-gradient(
    to right,
    transparent,
    #d4af37,
    transparent
  );
}
.product-story-mob{
  background-image:
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 70%,
    rgba(0,0,0,0) 100%
  ),
  url(../images/yellow-back.webp);

  /* background-position:center; */
  /* background-attachment: fixed; */
  background-size: cover;
  width: 100%;
  /* height: 100vh; */
  padding: 60px 0px;
}

/* Responsive */
@media(max-width:768px){
   
  .luxury-heading{
    gap:15px;
  }
  .luxury-heading h2{
    font-size:1.8rem;
    white-space:normal;
    text-align:center;
  }
  .luxury-heading .line{
    width:40px;
  }
  .card-title{
font-size: 20px;
}
}
.card-title{
font-size: 20px;
}
/* ===== Icon Floating Animation ===== */

.feature-icon{
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: floatIcon 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatIcon {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Hover effect */
.box:hover .feature-icon{
  transform: scale(1.1);
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.15));
}
.rotate-icon{
  animation: swingRotate 4s ease-in-out infinite;
}

@keyframes swingRotate{
  0%   { transform: rotate(-8deg); }
  50%  { transform: rotate(8deg); }
  100% { transform: rotate(-8deg); }
}
/* Wrapper */
.icon-wrapper{
  position: relative;
  display: inline-block;
}

/* Steam SVG Position */
.steam-svg{
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Animate Steam */
.steam-path{
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  opacity: 0;
  animation: steamFlow 3s ease-in-out infinite;
}

.steam2{
  animation-delay: 1.5s;
}

@keyframes steamFlow{
  0%{
    stroke-dashoffset: 50;
    opacity: 0;
  }
  30%{
    opacity: 0.7;
  }
  100%{
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
.box p{
    font-size: 14px;
}
/* ==========================gallery============== */
.upcoming{
  padding: 100px 0px 0px 0px;
}
.card-wrapper-new .owl-nav{
position:absolute;
top:40%;
width:100%;
display:flex;
justify-content:space-between;
}

.card-wrapper-new .owl-nav button{
background:#e97b30 !important;
color:#fff !important;
border-radius:50%;
width:40px;
height:40px;
font-size:22px;
display:flex;
align-items:center;
justify-content:center;
}

.card-wrapper-new .owl-nav button:hover{
background:#c55d16 !important;
}
.project-item{
position:relative;
overflow:hidden;
border-radius:12px;
cursor:pointer;
}

.project-item img{
width:100%;
transition:transform .6s ease;
}

/* overlay */

.gallery-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:15px;

background:linear-gradient(
transparent,
rgba(0,0,0,0.7)
);

color:#fff;
opacity:0;
transform:translateY(20px);
transition:all .4s ease;
}

/* text */

.gallery-overlay h6{
margin:0;
font-size:16px;
letter-spacing:1px;
}

/* hover effects */

.project-item:hover img{
transform:scale(1.08);
}

.project-item:hover .gallery-overlay{
opacity:1;
transform:translateY(0);
}
/* ================= HORIZONTAL SECTION ================= */
.gallery-mob {
  padding: 80px 0px;
}
.product-story{
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.product-story::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;

background-image:
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 70%,
    rgba(0,0,0,0) 100%
  ),
  url(../images/yellow-back.webp);

  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  z-index: 0;
}

/* 50% Pink */
.product-story::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  /* background: #f7c6d9; */
  z-index: 0;
}

/* Top Content */
.top-content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  margin-top: 80px;
}

.top-content h2{
  font-size: 42px;
  margin-bottom: 15px;
}

.top-content p{
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

/* Cards */
.card-wrapper{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.product-card{
  background: #fff;
  width: 200px;
  height: 240px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  position: relative;
}
.product-card::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
      border-radius: 20px;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.product-card:hover{
  transform: translateY(-12px);
}

.product-text{
    position: absolute;
    bottom: 10px;
    left:20%;
    color: #fff;
    z-index: 2;
}

/* Button */
.bottom-btn{
  position: relative;
  z-index: 2;
  margin-bottom: 50px 60px;
}

.view-btn{
  padding: 14px 40px;
  background: #1F5E3B;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s ease;
}

.view-btn:hover{
  background: #15492c;
  transform: translateY(-4px);
}
footer {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.9),  
            rgba(0, 0, 0, 0.8)
        ),
        url("../images/footer.webp");
 width: 100%;
   padding: 70px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
/* .contact-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
              url("../images/footer.webp");
  background-size: cover;
  background-position: center;
} */

.contact-link {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.contact-link:hover {
  color: #fff;
  padding-left: 5px;
}

.contact-form-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
}

.custom-input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.custom-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.custom-input:focus {
  background: transparent;
  box-shadow: none;
  border-color: #fff;
  color: #fff;
}

.submit-btn {
  background: #fff;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}
.social-icons {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
}

 /* .gallery {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url("../images/yellow-back.webp") center/cover no-repeat;

  background-attachment: fixed; 
  padding: 80px 0;
} */
 .gallery {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.8)
    ),
    url("../images/yellow-back.webp") center/cover no-repeat;

  background-attachment: fixed;
  padding: 80px 0;
}
                /* .divone,
        .div0,
        .div3,.div4 {
            width: 100%;
            height: 50vh;
            border: 1px solid gray;

        } */
/* .divone {
    background: url("../images/fusion.webp") center/cover no-repeat;
}

.div0 {
    background: url("../images/biryani.webp") center/cover no-repeat;
}

.div3 {
    background: url("../images/paratha2.webp") center/cover no-repeat;
}

.div4 {
    background: url("../images/paratha2.webp") center/cover no-repeat;
} */

.well-connected-div{
  width: 100%;
  height: 100vh;
  background-image: url(../images/well-connected-section-MOB.webp);
  background-color:#fff;
  background-size: cover;
  padding-top: 60px;
}
.para-div{
  /* width: 20%; */
  /* max-width: 500px; */
        border-left: 5px solid rgb(204, 133, 76);
      
        margin-left: 18.5%;
}
.cover{
  width: 300px;
}
.well-connect-cards{
  /* background-color: #5E463A; */
     background-color: #fff;
  width: 100%;
  overflow-x: auto; /* if screen smaller, allow scroll */
}

.location-wrapper,
.timeline-wrapper {
  display: flex;

    /* background-color: #fff; */
  width: 100%;
}

/* Remove gaps */
.location-wrapper {
  gap: 0;
}

.timeline-wrapper {
  gap: 0;
}

/* EXACT 8 EQUAL PARTS */
.location-card,
.timeline-box {
  width: 25%;
  flex: 0 0 25%;
}

/* Image Card */
.location-card {
  background-color: transparent;
  border: 4px solid transparent;
  box-sizing: border-box;
  position: relative;
}
.mobile-timeline{
  background-color: #fff;;
}
.location-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* Timeline container under each image */
.timeline-box {
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding-top: 8px;
}

/* Arrow Shape */
.timeline-shape {
  background: #e2d79d;
  padding: 12px 0;
  font-weight: 700;
  color: #352d2d;
  clip-path: polygon(88% 0, 100% 50%, 88% 100%, 0% 100%, 0 50%, 0% 0%);
}

/* Middle arrows */
.timeline-box:not(:first-child):not(:last-child) .timeline-shape {
  clip-path: polygon(88% 0, 100% 50%, 88% 100%, 0% 100%, 8% 50%, 0% 0%);
}

/* Last arrow */
.timeline-box:last-child .timeline-shape {
  background-color:#e2d79d;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 8% 50%, 0% 0%);
}

/* Active highlight */
.timeline-box.active .timeline-shape {
  background: #f4b400;
}
.it{
  margin-top: 10px;
  color: #a0877a;
}
/* Smooth transition */
.location-card img
{
 border-radius: 10px;
}

/* Image Zoom Effect */
.location-card.active img {
  /* transform: scale(1.08); */
  border-radius: 10px;
}

/* Active Arrow */
.timeline-box.active .timeline-shape {
  background: #f4b400;
  color: #000;
}

/* Active Text */
.timeline-box.active .it {
  color: #fff;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(94, 70, 58, 0.55); /* brown overlay */
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

/* Remove overlay when active */
.location-card.active::after {
  opacity: 0;
}















.bg-card {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 40px;
    /* margin: 20px; */
}

.overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(255, 255, 255, 0.5); dark overlay */
}

.content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.bg-card h4 {
    font-size: 28px;
    margin-bottom: 10px;
}

.combo-title {
    font-size: 16px;
}
.bg-card {
    transition: transform 0.6s ease;
}

.bg-card:hover {
    transform: scale(1.03);
}

.bg-card:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
}
        .right {
            max-height: 100vh;
            height: 100%;
            display: flex;
            justify-content: center ;
            align-items: center ;
        }
        .about-us{
          padding-top: 50px;
          padding-bottom: 50px;
        }
        .top-content h2 {
          font-size: 30px;
        }
  

.quality-card{
    height:100%;
    width:300px;
   
}
@media(min-width:992px){
  .upcoming{
  padding: 100px 0px;
}
.hero h1{
  font-size:80px;
  line-height:1.1;
}

.quality-card{
    height:100%;
    width:400px;
   
}
  .new-div{
  padding: 100px 0px 100px 0px;
}
.quality{
    background-image: url(../images/quality.webp);
    width: 100%;
    min-height: 100vh; 
    background-size: cover;
    background-position: center;
    /* margin: 60px 0px; */
    display: flex;   
    align-items: center;  
}
  .about-us{
     padding-top: 0px;
          padding-bottom: 100px;
        }
}

@media (max-width: 1200px){
  .card-wrapper{
    overflow-x: auto;
    padding: 20px;
  }
}