*{
  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 */
.hero{
  width:100%;
  height:100vh;
  background:url('../images/about-img.jpg') no-repeat center/cover;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:40px;
  position:relative;
}

.hero h2{
  color:white;
  font-size:42px;
  font-weight:300;
}

/* DOWN ARROW FIX */
.down-arrow{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  font-size:42px;
  color:#fff;
  cursor:pointer;
  animation:bounce 1.5s infinite;
}

@keyframes bounce{
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-50%) translateY(12px); }
}

/* 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;
  }

  /* 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;
  }
}


/* fourth section */

.award-sec {
  width: 100%;
  background: #fff;
  padding: 70px 0;
  box-sizing: border-box;
  text-align: center;
  font-family: system-ui;
}

/* Slider Container */
.award-slider-container {
  width: 85%;
  margin: auto;
  overflow: hidden;
}

/* Slider */
.award-slider {
  display: flex;
  transition: transform 0.6s ease;
}

/* Each slide contains 3 images */
.slide {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

/* Award Box */
.award-box img {
  width: 300px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 50px;
}
.award-box p {
  font-size: 15px;
  color: #333;
}

/* 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.2);
}

/* HR */
.award-hr {
  width: 80%;
  margin: 50px auto;
  height: 1px;
  background: #ccc;
  border: none;
}

/* Address Section */
.award-address {
  width: 80%;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  color: #333;
  gap: 40px;
}

.address-left,
.address-right {
  width: 48%;
}

.address-left h3,
.address-right h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

/* Paragraph styling */
.address-left p,
.address-right p {
  font-size: 16px;
  line-height: 1.7;
}

/* ---------------------- */
/* RESPONSIVE DESIGN      */
/* ---------------------- */

/* Tablet (768px and below) */
@media (max-width: 1024px) {
  .award-address {
    width: 90%;
    gap: 25px;
  }

  .address-left,
  .address-right {
    width: 50%;
  }

  .address-left p,
  .address-right p {
    font-size: 15px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .award-address {
    width: 92%;
    flex-direction: column;
    text-align: left;
    gap: 35px;
  }

  .address-left,
  .address-right {
    width: 100%;
  }

  .address-left h3,
  .address-right h3 {
    font-size: 18px;
  }

  .address-left p,
  .address-right p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .award-address {
    width: 95%;
  }

  .address-left h3,
  .address-right h3 {
    font-size: 17px;
  }

  .address-left p,
  .address-right p {
    font-size: 14px;
  }
}


/* Responsive */
@media(max-width: 768px){
  .slide {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .award-address {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}



/* 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;
  }
}



