html{scroll-behavior:smooth}
body {
  overflow-x: hidden;
}


/* Default styling (desktop first) */
.about-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('images/kullu.jpg') no-repeat center center/cover;
  position: relative;
  padding: 80px 20px;
  color: white;
  justify-content: center;
  align-items: center;

  /* 🔑 Add this */
  min-height: 60vh;  /* desktop pe full screen */
  display: flex;
  flex-direction: column;
  z-index: 2;
}

@media (max-width: 768px) {
  .about-section {
    min-height: 100vh;   /* mobile pe thoda bada */
    padding-bottom: 100px; /* neeche safe gap for form */
    border-bottom-left-radius: 20px;  /* left corner round */
    border-bottom-right-radius: 20px; /* right corner round */
    overflow: hidden; /* zaroori h taki background bahar na nikle */
  }
}


.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}


/* Offer Section */
.offer-section {
  padding: 40px 20px;
}

.offer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #d9eaff;
  box-shadow: 0 0 8px rgba(27,120,199,0.2);
  padding: 15px 25px;
  max-width: 1100px;
  margin: auto;
  transition: all 0.3s ease;
}

.offer-box:hover {
  box-shadow: 0 0 20px rgba(27,120,199,0.4);
  transform: translateY(-2px);
}

.offer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.offer-left img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.offer-text h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.offer-text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #444;
}

.offer-btn {
  background: #1b78c7;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.offer-btn:hover {
  background: black;
}

/* Responsive Adjustment */
@media (max-width: 768px) {
  .offer-box {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .offer-left {
    flex-direction: column;
    width: 100%;
  }
  .offer-left img {
    width: 100%;         /* Full width */
    height: 100px;       /* Taller than width proportion for rectangle */
    border-radius: 10px; /* Keeps rounded corners */
    object-fit: cover;   /* Ensures the image fills rectangle */
  }
}

.callback:hover {
  background: #000;
  color: #fff;
}

/* Custom Packages Section */
.custom-packages {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.custom-packages .small-heading {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.custom-packages .main-heading {
  font-family: 'Merriweather', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.custom-packages .description {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #000;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.custom-packages .callback-btn {
  display: inline-block;
  width: auto; /* keeps button tight to text */
  padding: 12px 25px;
  background: #1b78c7;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.custom-packages .callback-btn:hover {
  background: #000;
}

/* 📱 Mobile Responsive Styles */
@media (max-width: 768px) {
  .custom-packages {
    padding: 40px 15px;
  }

  .custom-packages .small-heading {
    font-size: 22px;
    font-weight: bold;
  }

  .custom-packages .main-heading {
    font-size: 32px;
    font-weight: bold;
  }

  .custom-packages .description {
    font-size: 15px;
    padding: 0 10px;
  }

  .custom-packages .callback-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .custom-packages .main-heading {
    font-size: 26px;
  }

  .custom-packages .description {
    font-size: 14px;
  }

  .custom-packages .callback-btn {
    padding: 9px 18px;
    font-size: 14px;
  }
}



/* Modal background */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-box {
  background: white;
  border-radius: 8px;
  padding: 20px;
  width: 350px;
  max-width: 90%;
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* Inputs */
.modal-box input, .modal-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.two-inputs {
  display: flex;
  gap: 10px;
}

textarea {
  resize: none;
}

.callback-btn {
  background: #1b78c7;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.callback-btn:hover {
  background: #003f80;
}

.form-select {
  padding: 6px;
  transition: all 0.3s ease;
}
