html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 80px; /* jaise jitna gap chahiye */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #363636;
    color: #333;
  }
  
  header {
    width: 100%;
    background: #706f6f;
    padding: 15px 40px;
    box-shadow: 0 4px 12px rgba(160, 159, 159, 0.08);
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 26px;
    font-weight: 700;
    color: #ff4d00;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #f0eaea;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #ff4d00;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #f0ecec;
    margin: 5px 0;
    transition: 0.4s;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    color: #5c5858;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -3;
    filter: brightness(80%);
  }
  
  .hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .hero-content h1 span {
    color: #ff4d00;
  }
  
  .hero-content p {
    font-size: 18px;
    margin: 0 auto 25px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .btn {
    background: #ff4d00;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #e03c00;
  }
  
  /* Hamburger toggle animation */
  .hamburger.toggle .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .hamburger.toggle .bar2 {
    opacity: 0;
  }
  
  .hamburger.toggle .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 72px;
      left: -100%;
      flex-direction: column;
      background: #757474;
      width: 95%;
      text-align: center;
      transition: left 0.3s ease;
      padding: 20px 0;
      z-index: 999;
      margin-left: 2.5%;
      border-radius: 2%;
      
    }
  
    .nav-links.active {
      left: 0;
    }
  
    .hamburger {
      display: block;
    }
  
    .nav-links li a {
      padding: 5px 0;
      color: #ebe1e1;
    }
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  





 
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    position: relative;
    background-image: url('/assets/img/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1; /* Lower layer */
}

/* Container for image and content */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    width: 100%;
    background-color: #858282;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    z-index: 1; /* Above the background */
}

/* Image section */
.about-image {
    flex: 1;
    padding: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(194, 190, 190, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Content section */
.about-content {
    flex: 1;
    padding: 40px;
}

.about-content h1 {
    font-size: 36px;
    color: #dddada;
    margin-bottom: 20px;
    text-align: left;
    animation: slideIn 1s ease-out;
}

.about-content p {
    font-size: 18px;
    color: #e2dddd;
    line-height: 1.6;
    text-align: left;
    animation: slideIn 1.5s ease-out;
}

/* Keyframe animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        margin-top: 10px;
        
    }

    .about-image {
        padding: 10px;
    }

    .about-content {
        padding: 10px;
    }

    .about-content h1 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
    }
}






.gallery-section {
    padding: 20px 20px;
    text-align: center;
    gap: 20px;
    
  }

  .gallery-section h2 {
    font-size: 32px;
    color: #ddd4d4;
    margin-bottom: 30px;
  }

  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .gallery-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
    
  }

  .gallery-container img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  /* Popup Styles */
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    flex-direction: column;
    padding: 20px;
  }

  .popup img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    animation: zoomIn 0.5s ease;
  }

  @keyframes zoomIn {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

  .popup-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
  }

  .popup-controls span {
    font-size: 40px;
    color: white;
    cursor: pointer;
    
    transition: 0.3s;
  }

  .popup-controls span:hover {
    transform: scale(1.2);
  }

  .close-popup {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }

  /* SEE MORE BUTTON: only mobile view */
  #seeMoreBtn {
    display: none;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(to right, #ff6f91, #ff9671);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
  }

  /* Mobile view styles */
  @media screen and (max-width: 768px) {
    .gallery-container img:nth-child(n+4) {
      display: none;
    }

    .gallery-container.show-all img {
      display: block !important;
    }

    #seeMoreBtn {
      display: inline-block;
    }
  }




  
  .menu-section {
    width: 100%;
    max-width: 1330px;
    padding: 50px 30px;
    background: linear-gradient(90deg, #fcc27f, #fa71a3);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out forwards;
    margin-left: 6px;
  }

  .menu-title-main {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }

  .menu-title-main::after {
    content: '';
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    display: block;
    margin: 10px auto 0;
    border-radius: 50px;
  }

  .menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }

  .menu-item {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
  }

  .menu-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,138,0,0.3), rgba(229,46,113,0.3));
    transform: rotate(25deg);
    transition: opacity 0.4s;
    opacity: 0;
  }

  .menu-item:hover::before {
    opacity: 1;
  }

  .menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-bottom: 1px solid #ddd;
  }

  .menu-item:hover img {
    transform: scale(1.1);
  }

  .menu-item h3 {
    margin-top: 20px;
    font-size: 24px;
    color: #222;
    z-index: 2;
    position: relative;
  }

  .menu-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
    padding: 0 15px;
    z-index: 2;
    position: relative;
    margin-bottom: 20px;
  }

  .explore-button {
    display: block;
    margin: 60px auto 0;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    padding: 15px 50px;
    font-size: 22px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: popUp 1.5s ease-in-out forwards;
  }

  .explore-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }

  @keyframes fadeIn {
    0% {opacity: 0; transform: translateY(30px);}
    100% {opacity: 1; transform: translateY(0);}
  }

  @keyframes popUp {
    0% {opacity: 0; transform: scale(0.8);}
    100% {opacity: 1; transform: scale(1);}
  }

  @media (max-width: 768px) {

    .menu-section {
      margin-left: 2.5px;
    }
    .menu-title-main {
      font-size: 32px;
    }
    .menu-item h3 {
      font-size: 20px;
    }
    .menu-item p {
      font-size: 14px;
    }
    .explore-button {
      font-size: 18px;
      padding: 12px 40px;
    }
  }








  .reviews-section {
    width: 100%;
    max-width: 1330px;
    padding: 50px 30px;
    background: linear-gradient(90deg, #fcc27f, #fa71a3);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out forwards;
    margin-top: 10px;
    margin-left: 6px;
  }

  .reviews-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }

  .reviews-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    display: block;
    margin: 10px auto 0;
    border-radius: 50px;
  }

  .reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  .review-card {
    background: linear-gradient(135deg, #ffffff, #f3f9ff);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
  }

  .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .review-user {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .review-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #0072ff;
  }

  .review-user h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
  }

  .review-rating {
    margin: 10px 0;
    color: #ffcc00;
    font-size: 20px;
  }

  .review-text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-top: 10px;
  }

  @keyframes fadeIn {
    0% {opacity: 0; transform: translateY(30px);}
    100% {opacity: 1; transform: translateY(0);}
  }

  @media (max-width: 768px) {
    .reviews-section {
      margin-left: 1px;
    }
    .reviews-title {
      font-size: 32px;
    }
    .review-card {
      padding: 25px 20px;
    }
    .review-user h4 {
      font-size: 18px;
    }
    .review-text {
      font-size: 14px;
    }
  }




  .footer {
    background: linear-gradient(135deg, #000428, #004e92);
    color: #fff;
    margin-top: 10px;
  }
  
  .map-full {
    width: 99%;
    height: 300px;
    overflow: hidden;
    border-bottom: 5px solid #00c6ff;
    margin-left: 0.5%;
  }
  
  .map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 20px;
    font-size: 22px;
    position: relative;
  }
  
  .footer-section h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #00c6ff;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 50px;
  }
  
  /* ------- Footer Links Fixed ------- */
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-links a {
    margin: 4px 0;
    padding: 0;
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block; /* FIXED: sirf text area click hoga */
  }
  
  .footer-links a:hover {
    color: #00c6ff;
  }
  
  /* ------- Contact Info ------- */
  .contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #ccc;
  }
  
  /* ------- Contact Form ------- */
  .contact-form {
    width: 100%;
    background: #ffffff15;
    padding: 30px;
    border-radius: 2px;
    margin-top: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 1px;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #333;
  }
  
  .contact-form button {
    background: #00c6ff;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 1px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #0072ff;
  }
  
  /* ------- Social Icons ------- */
 .social-icons {
   display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    background: #00c6ff;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    background: #0072ff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #ccc;
    border-top: 1px solid #555;
    padding: 20px;
  }
  
  @media (max-width: 768px) {
    .footer-section h3 {
      font-size: 20px;
    }
    .footer-links a,
    .contact-info p {
      font-size: 14px;
    }
  }
  
  