@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Kaushan+Script&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}   

/* Navbar Styling */


/* Scroll Animation JS Trigger */


section.about {
  padding: 60px 10%;
  text-align: center;
  overflow: hidden; /* animation ke liye zaroori */
}

section.about h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: "Kaushan Script", cursive;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s ease forwards;
}

section.about .divider {
  width: 2px;
  height: 40px;
  background: #555;
  margin: 0 auto 40px auto;
  opacity: 0;
  transform: scaleY(0);
  animation: growDivider 1s ease 0.5s forwards;
}

.about-container {
  display: flex;
  align-items: center;
  margin: 20px;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Side: Images */
.about-left {
  flex: 1;
  position: relative;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideLeft 1s ease 0.7s forwards;
}

.about-left img.main-img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-left img.main-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-left img.small-img {
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 300px;
  background-position: center;

  height: 300px;
  object-fit: cover;
  background-position: center;
  border-radius: 8px;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.about-left img.small-img:hover {
  transform: rotate(5deg) scale(1.1);
}

/* Right Side: Text */
.about-right {
  flex: 1;
  min-width: 300px;
  text-align: left;
  opacity: 0;
  transform: translateX(50px);
  animation: slideRight 1s ease 1s forwards;
}

.about-right h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: "Great Vibes", cursive;
}

.about-right p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.about-right a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #ff0066;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-right a:hover {
  background: #cc0052;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 768px) {
  section.about {
    padding: 40px 5%;
  }
  .about-left img.small-img {
    width: 150px;
    height: 200px;
    bottom: -20px;
    right: -20px;
  }
  .about-right h3 {
    font-size: 1.5rem;
  }
}

/* 🔥 Animations */
@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes growDivider {
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes slideLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

/* Video Section */
.video {
  position: relative;
  width: 90%;
  margin: auto;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.video video {
  width: 100%;
  height: 100%;
  margin-top: 40px;
  object-fit: cover; /* cover the entire container */
  filter: brightness(0.6); /* optional: darken video for text readability */
}

/* Text overlay */
.video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 1rem;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

/* Text styles */
.video-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.video-text p {
  font-size: 1.25rem;
  font-weight: 400;
}

/* Responsive text */
@media (max-width: 1200px) {
  .video-text h2 {
    font-size: 2.5rem;
  }
  .video-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .video-text h2 {
    font-size: 2rem;
  }
  .video-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-text h2 {
    font-size: 1.5rem;
  }
  .video-text p {
    font-size: 0.9rem;
  }
}

/* Simple fade-in animation for text */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.lead a{
text-decoration: none;
color: white;
}
.lead a:hover{
    color: rgb(255, 65, 141);
}

/* Basic styling */
.about-us {
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  /* background-color: #f4f4f4; */
  border-radius: 8px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 1s forwards;
}

/* Slide-in animation */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-us {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 10px;
  }
}

.video-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.video-slide {
  display: none;
}

.video-slide video {
  width: 100%;
  height: auto;
}

.video-slide.active {
  display: block;
}

.social-icons1 {
  width: 100%; 
  /* background-color: ;  */
  padding: 20px 15px;
  display: flex; 
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.social-icons1 a {
  margin: 5px; font-size: 22px; text-decoration: none; color: #fff; transition: 0.3s;
}
.social-icons1 a:hover { color: #e63946; }

.social-icons {
  position: fixed;
  top: 40%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-icons a {
  background: #ff3c78;
  color: #fff;
  padding: 12px 15px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e73268;
  padding-left: 20px;
}


#lst_head { 
  margin-top: 10px; 
  color: #aaa; 
  font-size: 20px; 
  text-align: center; 
  width: 100%;
}
#lst_head a { 
  text-decoration: none; 
  color: #e63946; 
  font-weight: bold; 
  font-size: 18px;
}


@media (max-width: 576px) {
  .social-icons1 {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .social-icons1 a {
    font-size: 18px;
  }

  .social-icons {
    top: auto;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 8px;
  }

  .social-icons a {
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
  }
}

/* Tablets (portrait & landscape) */
@media (min-width: 577px) and (max-width: 768px) {
  .social-icons1 {
    gap: 12px;
  }

  .social-icons1 a {
    font-size: 20px;
  }

  .social-icons {
    top: 60%;
  }

  .social-icons a {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* Laptops & Desktops */
@media (min-width: 769px) {
  .social-icons1 {
    justify-content: center;
  }

  .social-icons {
    top: 40%;
    left: 0;
    flex-direction: column;
  }

  .social-icons a {
    font-size: 14px;
  }
}

 @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }

  /* Apply animation only when slide is active */
  .carousel-item.active .slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
  }

  /* Stagger effect (delay per card) */
  .carousel-item.active .col-12:nth-child(1) .slide-in-left { animation-delay: 0.1s; }
  .carousel-item.active .col-12:nth-child(2) .slide-in-left { animation-delay: 0.3s; }
  .carousel-item.active .col-12:nth-child(3) .slide-in-left { animation-delay: 0.5s; }

/* ===== Base Navbar Styling ===== */
.navbar {
  transition: all 0.3s ease-in-out;
}

.navbar-brand img {
  height: 110px;
  transition: 0.3s;
}

.navbar-brand h2 {
  font-size: 1.5rem;
  font-weight: bold;
  transition: 0.3s;
}

.nav-link {
  font-size: 1.9em;
  padding: 8px 12px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #e63946; /* Hover effect */
}

/* ===== Extra Small Devices (phones <576px) ===== */
@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 55px;
  }
  .navbar-brand h2 {
    font-size: 1rem;
  }
  .nav-link {
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
  }
}

/* ===== Small Devices (≥576px and <768px) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
  .navbar-brand img {
    height: 70px;
  }
  .navbar-brand h2 {
    font-size: 1.2rem;
  }
  .nav-link {
    font-size: 15px;
  }
}

/* ===== Medium Devices (≥768px and <992px) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand img {
    height: 85px;
  }
  .navbar-brand h2 {
    font-size: 1.3rem;
  }
  .nav-link {
    font-size: 16px;
  }
}

/* ===== Large Devices (≥992px and <1200px) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-brand img {
    height: 100px;
  }
  .navbar-brand h2 {
    font-size: 1.4rem;
  }
  .nav-link {
    font-size: 16px;
    margin: 0 6px;
  }
}

/* ===== Extra Large Devices (≥1200px) ===== */
@media (min-width: 1200px) {
  .navbar-brand img {
    height: 110px;
  }
  .navbar-brand h2 {
    font-size: 1.5rem;
  }
  .nav-link {
    font-size: 17px;
    margin: 0 10px;
  }
}

    .single-video {
  width: 100%;
  overflow: hidden;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.4); */
  margin-top: 10px;   /* extra gap हटाने के लिए */
  padding: 0;  /* extra space हटाने के लिए */
}

.single-video video {
  width: 90%;
  margin: auto;
  border-radius: 30px;
  height: 600px;
  object-fit: cover;
  display: block;  /* नीचे default white gap remove करेगा */
}

.services{
  text-align: center;
  padding: 10px; letter-spacing: 1px;
}


.service-details{
  font-size: 18px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  width: 60%;
  text-align: center;
  letter-spacing: 1px;
  line-height: 35px;
  margin: auto;

}

.detail1 {
  padding-left: 30px;
  padding-top: 20px;
  width: 80%;
  margin: auto;
  line-height: 35px;
font-size: 18px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.services {
  text-align: center;
  padding: 10px; 
  letter-spacing: 1px;
}

.service-details {
  font-size: 18px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  width: 60%;
  text-align: center;
  letter-spacing: 1px;
  line-height: 35px;
  margin: auto;
}

.detail1 {
  padding-left: 30px;
  padding-top: 20px;
  width: 80%;
  margin: auto;
  text-align: justify;
  line-height: 35px;
  font-size: 18px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* --- Media Queries --- */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .service-details {
    width: 50%;
    font-size: 20px;
    line-height: 34px;
  }

  .detail1 {
    width: 70%;
    font-size: 20px;
    line-height: 38px;
    padding-left: 40px;
  }
}

/* Medium devices (tablets, 768px to 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .service-details {
    width: 70%;
    font-size: 18px;
    line-height: 36px;
  }

  .detail1 {
    width: 80%;
    font-size: 18px;
    line-height: 36px;
    padding-left: 20px;
  }
}

/* Small devices (phones, 480px to 767px) */
@media (max-width: 767px) and (min-width: 480px) {
  .service-details {
    width: 85%;
    font-size: 16px;
    line-height: 32px;
  }

  .detail1 {
    width: 90%;
    font-size: 16px;
    line-height: 32px;
    padding-left: 15px;
    padding-top: 15px;
  }
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 479px) {
  .service-details {
    width: 95%;
    font-size: 14px;
    line-height: 28px;
  }

  .detail1 {
    width: 95%;
    font-size: 14px;
    line-height: 28px;
    padding-left: 10px;
    padding-top: 10px;
  }
}

/* Section */
.offers {
  text-align: center; 
  width: 80%;
  height: auto;
  margin:20px auto;
  padding: 70px 30px;
  /* background: #faf9f7; */
}

.offers-title {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 32px;
color:#747171;
  margin-bottom: 10px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.offers-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #b2903c, #d4af37);
  margin: 12px auto 0;
  border-radius: 3px;
}

.offers-sub {
  font-size: 17px;
  color: #666;
  margin-bottom: 50px;
  font-style: italic;
}

/* Container */
.offers-container {
  display: grid;
  cursor: pointer;
  padding-top: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

/* Card */
.offer-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-info {
  padding: 20px;
  text-align: left;
  border-top: 3px solid transparent;
  transition: border-color 0.4s ease;
}

.offer-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2b2b;
  font-family: "Playfair Display", serif;
}

.offer-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-family: "Lora", serif;
}

.offer-info a {
  font-size: 14px;
  text-decoration: none;
  color: #b2903c;
  font-weight: bold;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.offer-info a:hover {
  color: #222;
  letter-spacing: 1px;
}

/* Hover Effects */
.offer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.offer-card:hover img {
  transform: scale(1.05);
}

.offer-card:hover .offer-info {
  border-top-color: #d4af37;
}
.Gallery
 {
  text-align: center;
  padding: 10px; 
  letter-spacing: 1px;
}




.map {
  width: 80%;
  background-color: white;
  display: flex;
  justify-content: space-around;
  margin: auto;
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;

  /* Animation apply */
  animation: slideInRight 1s ease-out forwards;
  opacity: 0; /* initially hidden */
}

.map img {
  width: auto;
  height: 120px;
}
.map p {
  font-size: 18px;
}

#kanta-con {
  font-size: 25px;
  font-family: "great-vibes";
  font-weight: 600;
}
#con-logo {
  margin-left: -40px;
}

/* Animation Keyframes */
@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Medium Devices (Tablets, 768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .map {
    width: 90%;
    justify-content: center;
  }
  .map img {
    height: 100px;
  }
  .map p {
    font-size: 16px;
  }
  #kanta-con {
    font-size: 22px;
  }
  #con-logo {
    margin-left: -20px;
  }
}

/* Small Devices (Mobiles, ≤767px) */
@media (max-width: 767px) {
  .map {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .map img {
    height: 80px;
  }
  .map p {
    font-size: 14px;
  }
  #kanta-con {
    font-size: 18px;
  }
  #con-logo {
    margin-left: 0;
  }
}

.Contact{
  text-align: center;
  padding: 20px; 
  letter-spacing: 1px;
}


/* Medium Devices (Tablets, 768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .Contact {
    padding: 30px;
    font-size: 18px;
    letter-spacing: 1.2px;
  }
}

/* Small Devices (Mobiles, ≤767px) */
@media (max-width: 767px) {
  .Contact {
    padding: 15px;
    font-size: 16px;
    letter-spacing: 1px;
  }
}

 .contact-section {
      max-width: 750px;
      margin: 60px auto;
      background: #fff;
      padding: 40px 35px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      animation: fadeIn 1s ease-in-out;
    }
    .contact-section h2 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 30px;
      font-weight: bold;
      background: linear-gradient(45deg,rgb(116 113 113));
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .form-group {
      margin-bottom: 18px;
      position: relative;
    }
    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: #444;
    }
    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #eee;
      border-radius: 12px;
      font-size: 16px;
      outline: none;
      transition: all 0.3s ease;
      background: #fafafa;
    }
    .form-group input:focus, 
    .form-group textarea:focus {
      border-color: #ff3c78;
      background: #fff;
      box-shadow: 0 0 8px rgba(255,60,120,0.3);
    }
    .form-group textarea {
      resize: none;
      height: 130px;
    }
    .error {
      color: #e13366;
      font-size: 14px;
      margin-top: 5px;
    }

    .btn-submit {
      display: inline-block;
      width: 100%;
      background: linear-gradient(45deg, #ff8c42, #ff8c42);
      color: #fff;
      padding: 14px;
      border: none;
      border-radius: 12px;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.3s;
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255,60,120,0.4);
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

 .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 2000;
    }
    .modal.active {
      visibility: visible;
      opacity: 1;
    }
    .modal-content {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      max-width: 400px;
      animation: scaleUp 0.4s ease;
    }
    .modal-content h3 {
      color: #ff3c78;
      margin-bottom: 10px;
    }
    .modal-content p {
      font-size: 16px;
      margin-bottom: 20px;
    }
    .modal-content button {
      background: linear-gradient(45deg, #ff3c78, #ff8c42);
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }
    .modal-content button:hover {
      opacity: 0.9;
    }

    @keyframes scaleUp {
      from {transform: scale(0.8); opacity: 0;}
      to {transform: scale(1); opacity: 1;}
    }


    @media (min-width: 1200px) {
  .contact-section {
    max-width: 900px;
    padding: 50px 40px;
  }
  .contact-section h2 {
    font-size: 34px;
  }
  .form-group input, .form-group textarea {
    font-size: 18px;
  }
}

/* Medium Devices (Tablets, 768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .contact-section {
    max-width: 650px;
    margin: 40px auto;
    padding: 30px 25px;
  }
  .contact-section h2 {
    font-size: 26px;
  }
  .btn-submit {
    font-size: 17px;
    padding: 12px;
  }
}

/* Small Devices (Mobiles, ≤767px) */
@media (max-width: 767px) {
  .contact-section {
    max-width: 95%;
    margin: 20px auto;
    padding: 20px 15px;
    border-radius: 15px;
  }
  .contact-section h2 {
    font-size: 22px;
  }
  .form-group input, .form-group textarea {
    font-size: 15px;
    padding: 12px;
  }
  .btn-submit {
    font-size: 16px;
    padding: 12px;
  }
  .modal-content {
    width: 90%;
    max-width: 320px;
    padding: 20px;
  }
  .modal-content p {
    font-size: 14px;
  }
}

.social-icons1 {
  width: 100%;
  padding: 20px 15px;
  text-align: center;
  background: linear-gradient(135deg, #000b1b, #457b9d); /* 👈 gradient background */
  color: #fff;
  
  /* 👇 Animation */
  animation: fadeInUp 2s ease-in-out forwards;
  opacity: 0;
}

.social-icons1 h2 {
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0;
  color: #f1faee;
}

#lst_head span {
  color: #e63946; /* already highlighted */
}

/* 👇 Keyframes for smooth animation (from bottom to up) */
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.social-icons {
  position: fixed;
  bottom: 10px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-icons a {
  background: #CC4A25;
  color: #fff;
  padding: 12px 15px;
  border-radius: 0 8px 8px 0;
  font-size: 19px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #CC4A25;
  padding-left: 20px;
}


