*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Times New Roman", serif;
}

body{
  background:#000;
  overflow-x:hidden;
}

/* HEADER */
header{
  width:100%;
  position:absolute;
  top:40px;
  left:0;
  z-index:1000;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:#fff;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo{
  width:65px;
}

.logo-area h1{
  font-size:26px;
  letter-spacing:8px;
  font-weight:300;
}

/* NAVBAR */
.navbar{
  list-style:none;
  display:flex;
  gap:50px;
  margin-top:25px;
}

.navbar li a {
  position: relative;
  text-decoration: none;
  color: #ddd;
  font-size: 18px;
  transition: color 0.3s ease;
}

/* Hover font light */
.navbar li a:hover {
  color: #fff; /* thoda bright ho jayega */
}

/* Underline effect */
.navbar li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;       /* text ke just niche line */
  width: 0%;
  height: 2px;
  background: #fff;   /* underline color */
  transition: width .35s ease;
}

/* On hover, line expands */
.navbar li a:hover::after {
  width: 100%;
}

.insta{
  width:18px;
}

/* ===========================
   DROPDOWN DESKTOP FIXED
=========================== */

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Menu will open exactly below item */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 170px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  border-radius: 12px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.2s ease-in-out;
}

/* FIXED — dropdown will NOT disappear */
.dropdown:hover > a,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  list-style-type: none;
 
}




/* Dropdown items */
.dropdown-menu li a{
  display:block;
  padding:12px 22px;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  list-style-type: none;
  letter-spacing:1px;
  transition:0.2s;
}

.dropdown-menu li a:hover{
  background:rgba(255,255,255,0.15);
  padding-left:30px;
   list-style-type: none;
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  overflow: hidden; /* video overflow prevent */
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* video full cover */
  z-index: -1;       /* arrow aur content ke peeche */
}

/* Optional Heading */
.hero h2 {
  color: white;
  font-size: 42px;
  font-weight: 300;
  z-index: 2; /* video ke upar */
  text-align: center;
  margin: 0;
  padding: 0 15px;
}

/* DOWN ARROW */
.down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  animation: bounce 1.5s infinite;
  z-index: 2; /* video ke upar */
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 36px;
  }

  .down-arrow {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }

  .down-arrow {
    font-size: 32px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 22px;
  }

  .down-arrow {
    font-size: 28px;
    bottom: 15px;
  }
}

/* HAMBURGER */
.menu-icon{
  display:none;
  font-size:34px;
  cursor:pointer;
  position:absolute;
  right:20px;
  top:20px;
  z-index:2000;
}


/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:768px){

  .menu-icon{
    display:block;
  }

 .navbar{
  position:fixed;
  top:-3%;
  right:-100%;
  height:100vh;
  width:75%;
  flex-direction:column;
  padding-top:120px;
  gap:25px;
  text-align:center;

  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.65)
    ),
    url("../images/food5.jpg");

  background-size:cover;
  background-position:center;

  /* Image ko dark karne ke liye */
  filter:brightness(0.85) contrast(1.05);

  transition:right .4s ease;
  box-shadow:-22px 0 45px rgba(0,0,0,.6);
}

  .navbar.show{
    right:0;
  }
  /* Mobile dropdown clean reset */
  .dropdown {
    width: 100%;
  }
 }  

  /* .dropdown-menu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    background: #111;
    border: 1px solid #222;
    margin-top: 10px;
    display: none;
  } */

  /* Toggle open */
  /* .dropdown.open .dropdown-menu {
    display: block;
  }






/* second section */

.wrap{
    width:100%;
    padding:100px 0;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    background-color: #fff;
  }

  /* CENTER CONTENT */
  .center{
    width:55%;
    text-align:center;
    font-family:serif;
  }

  .center h1{
    font-size:40px;
    font-weight:300;
    line-height:1.4;
    margin-bottom:35px;
    color:#383838;
  }

  .center p{
    font-size:18px;
    line-height:1.85;
    margin:0 0 22px;
    color:#555;
  }


  .add {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 122, 24, 0.35);
}

/* Hover Effect */
.add:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #ffb347, #ff7a18);
  box-shadow: 0 15px 35px rgba(255, 122, 24, 0.5);
}

/* Glow Effect */
.add::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.add:hover::before {
  left: 100%;
}



  /* RIGHT FLOWER */
  .right-branch{
    position:absolute;
    right:-120px;
    top:40px; /* slightly down for balance */
    width:520px;
    opacity:1;
    transition:0.6s ease; /* smooth transition */
  }

  /* LEFT FLOWER (NEW COLOR) */
  .left-branch{
    position:absolute;
    left:-160px;
    /* bottom:120px; moved up */
    width:520px;
    opacity:1;
    transform:scaleX(-1);
    filter:hue-rotate(60deg);
    transition:0.6s ease; /* smooth transition */
  }

  /* INTERACTIVE */
  

  

  @media(max-width:900px){
    .center{width:85%;}
    .right-branch{width:260px;}
    .left-branch{width:260px;}
  }
  /* INITIAL HIDDEN STATE */
  .reveal{opacity:0; transform:translateY(60px); transition:1s ease;}  
  .reveal.show{opacity:1; transform:translateY(0);} 

  /* FLOWERS DELAY */
  .left-branch{transition:1.2s ease;} 
  .right-branch{transition:1.2s ease;} 

  /* TEXT DELAY */
  .center{transition:1.4s ease;} 

  /* PAGE SLIDER EFFECT */
  .wrap{animation:pageSlide 1.2s ease forwards;} 
  @keyframes pageSlide{
    0%{opacity:0; transform:translateY(80px) scale(0.96);} 
    100%{opacity:1; transform:translateY(0) scale(1);} 
  }



/* third section */

.image-box {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Desktop image */
.img-desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Mobile image hidden by default */
.img-mobile {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Page load effect */
.image-box.show img {
  opacity: 1;
  transform: scale(1);
}

/* ----------- MOBILE SWITCH ----------- */
@media (max-width: 768px) {
  .img-desktop {
    display: none;
  }
  .img-mobile {
    display: block;
  }
}


/* ================= AWARD SECTION ================= */

.award-sec {
  width: 100%;
  background: #fff;
  padding: 70px 0;
  text-align: center;
  font-family: system-ui, sans-serif;
}

/* Container */
.award-slider-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  overflow: hidden;
}

/* Slider */
.award-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Slide Layout */
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop */
  gap: 32px;
  padding: 20px 0;
}

/* Award Box */
.award-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-box img {
  width: 100%;
  height: auto;
  max-width: 280px;
  border-radius: 28px;
  object-fit: cover;
  transition: 0.3s ease;
}

.award-box img:hover {
  transform: scale(1.05);
}

.award-box p {
  font-size: 15px;
  color: #333;
  margin-top: 12px;
  max-width: 280px;
}

/* Dots */
.award-dots {
  margin-top: 25px;
}

.award-dot {
  height: 10px;
  width: 10px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.award-dot.active {
  background: #111;
  transform: scale(1.3);
}

/* HR */
.award-hr {
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  height: 1px;
  background: #ccc;
  border: none;
}

/* Address Section */
.award-address {
  width: 100%;
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: left;
  color: #333;
}

.address-left h3,
.address-right h3 {
  margin-bottom: 10px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
}

.address-left p,
.address-right p {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
}

/* ================= BREAKPOINTS ================= */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
  .slide {
    grid-template-columns: repeat(4, 1fr); /* 4 images on big screens */
  }
}

/* Large Laptop (1200px) */
@media (max-width: 1200px) {
  .slide {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Laptop / Tablet (992px) */
@media (max-width: 992px) {
  .slide {
    grid-template-columns: repeat(2, 1fr);
  }

  .award-address {
    gap: 30px;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  .slide {
    grid-template-columns: 1fr;
  }

  .award-address {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Mobile (576px) */
@media (max-width: 576px) {
  .award-sec {
    padding: 50px 0;
  }

  .award-box img {
    max-width: 260px;
  }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
  .award-box img {
    max-width: 220px;
  }
}



/* pop up k liye css gift card ki  */

/* ===============================
   POPUP OVERLAY
================================ */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  animation: fadeOverlay 0.3s ease;
}

/* ===============================
   POPUP BOX
================================ */
.popup-content {
  background: linear-gradient(145deg, #0f0f0f, #1b1b1b);
  width: 100%;
  max-width: 500px;
  padding: 55px 45px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  color: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  animation: popupScale 0.35s ease;
}

/* GOLD TOP LINE EFFECT */
.popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f5d97a, #d4af37);
  border-radius: 22px 22px 0 0;
}

/* ===============================
   TEXT STYLE
================================ */
.popup-content p {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.8;
  color: #f5d97a;
  margin: 0;
}

/* ===============================
   CLOSE BUTTON
================================ */
.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #f5d97a;
  transform: rotate(90deg) scale(1.1);
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes popupScale {
  from {
    transform: scale(0.75);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===============================
   📱 TABLET
================================ */
@media (max-width: 768px) {

  .popup-content {
    padding: 40px 25px;
    border-radius: 18px;
  }

  .popup-content p {
    font-size: 20px;
    line-height: 1.6;
  }

  .close-btn {
    font-size: 24px;
    right: 15px;
    top: 12px;
  }
}

/* ===============================
   📱 MOBILE
================================ */
@media (max-width: 480px) {

  .popup-content {
    padding: 35px 20px;
  }

  .popup-content p {
    font-size: 18px;
  }

  .close-btn {
    font-size: 22px;
  }
}




/* last section */

 footer{
      position:relative;
      width:100%;
      background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
        url('../images/wallppr.jpg');
      background-size:cover;
      background-position:center;
      color:#fff;
      padding:40px 20px 20px;
    }

    .footer-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      max-width:1200px;
      margin:auto;
      gap:30px;
    }

    .footer-left h3{
      margin-bottom:10px;
      font-size:20px;
    }

    .footer-left p{
      margin-bottom:8px;
      font-size:21px;
      opacity:0.9;
    }

    .footer-left i{
      margin-right:8px;
      color:#B18E3B;
    }

    .footer-right h3{
      margin-bottom:10px;
      font-size:20px;
      text-align:right;
    }

    .social-icons{
      display:flex;
      gap:15px;
      justify-content:flex-end;
    }

    .social-icons a{
      width:40px;
      height:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:rgba(255,255,255,0.1);
      color:#fff;
      font-size:18px;
      transition:0.3s ease;
    }

    .social-icons a:hover{
      background:#B18E3B;
      color:#000;
      transform:translateY(-3px);
    }

    .footer-bottom{
      margin-top:30px;
      padding-top:15px;
      border-top:1px solid rgba(255,255,255,0.2);
      text-align:center;
      font-size:14px;
      opacity:0.85;
    }

   /* =======================
   RESPONSIVE FOOTER
======================= */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left p {
    font-size: 18px;
  }

  .footer-right h3 {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  footer {
    padding: 30px 15px 15px;
  }

  .footer-left h3,
  .footer-right h3 {
    font-size: 18px;
  }

  .footer-left p {
    font-size: 16px;
    line-height: 1.6;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
  .footer-left p {
    font-size: 15px;
  }

  .social-icons {
    gap: 10px;
  }
}



