

/*  Laptop screens (between 901px and 1200px) */
@media (min-width: 901px) and (max-width: 1200px) {
  .logo-text {
    font-size: 24px;
  }

  nav.nav-links > a {
    font-size: 13px;
    padding: 8px 10px;
  }

  header {
    padding: 12px 20px;
  }
}

/*  Tablets and below */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }

  nav.nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  nav.nav-links > a {
    padding: 8px 0;
    font-size: 14px;
  }
}

/* header section end */

   

/* banner */

  /* Global Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
  }

  /* Banner Section */
  .banner {
    position: relative;
    background-image: url('https://assets.milestoneinternet.com/cdn-cgi/image/width=1380,height=625,f=auto/destination-weddings-travel-group/homepage-hero-2.jpg?cropW=7836&cropH=3549');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 60vh;
    /* Adjusted height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    border-radius: 20px;
    margin-left: 1%;
    margin-right: 1%;
    padding-RIGHT: 300PX;

  }

   /* Banner Section */
  .bannerf {
    position: relative;
    background-image: url('https://assets.milestoneinternet.com/cdn-cgi/image/f=auto/destination-weddings-travel-group/iberostar-promo-1-3.jpg?cropY=263&cropW=1920&cropH=654&width=1380&height=470');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 60vh;
    /* Adjusted height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    border-radius: 20px;
    margin-left: 1%;
    margin-right: 1%;
    padding-RIGHT: 300PX;

  }

  .container {
    max-width: 700px;
    /* Reduced max-width for more compact form
    width: 100%;
    padding: 15px; */
  }


  .banner h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-align: left;
    color: #050505;
    line-height: 1.2;
    margin: 0;
  }

  /* Form Styling */
  .banner-form {
    display: flex;
    flex-direction: row;
    gap: 10PX;
    padding: 10px;
    background-color: transparent;
    border-radius: 10px;
    width: 30%;
    border: 1px solid #ccc;
    margin-top: 10%;
    box-shadow: NONE;

  }

  .form-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px;
    font-size: 0.9em;    
    border-radius: 5px;
    background-color: white;    
    border: none;   
  }

  .form-item label {
    font-size: 0.9em;
    color: #333;
    margin-right: 10px;
    /* Space between label and input */
    width: 30%;
    /* Adjust label width */
    text-align: left;
  }

  .form-item input {
    width: 65%;
    /* Adjust input width */
    padding: 6px;
    font-size: 0.9em;
    border-radius: 5px;
    border: none;
    /* Remove border from input */
    background-color: white;
    color: #333;
  }

  .form-item i {
    font-size: 1.2em;
    color: #9b1c2f;
  }

  .container {
    max-width: 700px;
    width: 100%;
    padding: 15px;
    margin-top: 100px;
    /* Push the form 100px down */
  }



  .btn-get-started {
    width: 65%;
    padding: 6px;
    background-color: #d41b78;
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    border: NONE;
    text-align: center;
    margin-top: 10px;
    border: none;
    
  }



  /* Tablets and small desktops */
  @media (max-width: 900px) {
    .banner {
      height: 50vh;
      /* Slightly smaller banner */
      border-radius: 15px;
      padding: 0 15px;
    }

    .container {
      max-width: 90%;
      margin-top: 60px;
    }

    .banner h1 {
      font-size: 2.8rem;
      text-align: center;
      /* Center text on smaller screens */
    }

    .banner-form {
      flex-direction: column;
      /* Stack inputs vertically */
      margin-top: 8%;
      border: none;
      /* Remove border for cleaner look */
      padding: 0;
      gap: 15px;
      background-color: transparent;
    }

    .form-item {
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      background-color: transparent;
      width: 100%;
    }

    .form-item label {
      width: 100%;
      margin-bottom: 5px;
    }

    .form-item input {
      width: 100%;
    }

    .btn-get-started {
      width: 100%;
      margin-top: 0;
      padding: 10px 0;
    }
  }

  /* Mobile phones */
  @media (max-width: 480px) {
    .banner {
      height: 60vh;
      border-radius: 10px;
      padding: 0 10px;
    }


    .container {
      max-width: 95%;
      margin-top: 40px;
      padding: 10px;
    }

    .banner h1 {
      font-size: 1.5rem;
      line-height: 1.1;
      text-align: center;
    }



    .banner-form {
      flex-direction: column;
      /* Stack inputs vertically */
      margin-top: 8%;
      width: 100%;
      border: none;
      /* Remove border for cleaner look */
      padding: 0;
      gap: 15px;
      background-color: transparent;
    }

    .form-item {
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      background-color: transparent;
      width: 100%;
    }


    .form-item label {
      width: 100%;
      margin-bottom: 5px;
    }

    .form-item input {
      width: 100%;
    }

    .btn-get-started {
      width: 100%;
      margin-top: 0;
      padding: 10px 0;
    }

    .btn-get-started {
      font-size: 1rem;
      padding: 12px 0;
    }
  }

  /* Laptops and medium desktops: width between 901px and 1200px */
  @media (min-width: 920px) and (max-width: 1600px) {
    .banner {
      height: 69vh;
      border-radius: 20px;
      padding: 0 30px;
    }

    .container {
      max-width: 85%;
      margin-top: 80px;
      padding: 10px;
    }

    .banner-form {
      display: flex;
      flex-direction: row;
      gap: 10PX;
      /* No gap between the input fields */
      padding: 10px;
      background-color: transparent;
      /* No background color */
      border-radius: 10px;
      width: 100%;
      border: 1px solid #ccc;
      /* Outer border for the entire form */
      margin-top: 10%;
      box-shadow: NONE;
    }

    .form-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 6px;
      font-size: 0.9em;
      border-radius: 5px;
      background-color: white;
      border: none;
    }

    .form-item label {
      font-size: 0.9em;
      color: #333;
      margin-right: 10px;
      width: 100%;
    }

    .form-item input {
      width: 100%;
      /* Adjust input width */
      padding: 6px;
      font-size: 0.9em;
      border-radius: 5px;
      border: none;
      /* Remove border from input */
      background-color: white;
      color: #333;
    }


    .container {
      max-width: 900px;
      width: 100%;
      padding: 15px;
      margin-top: 100px;
      /* Push the form 100px down */
    }

    .banner h1 {
      font-size: 3.2rem;
      line-height: 1.2;
      text-align: center;
    }

    .banner-form {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px;
      margin-top: 5%;
    }

    .form-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      height: 44px;
    }

    .form-item label {
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .form-item input {
      width: 103%;
      margin-left: -4px;
      /* padding: 10px 24px; */
      font-size: 1rem;
    }

    .btn-get-started {
      font-size: 1rem;
      width: 220px;
      padding: 18px 8px;
      border-radius: 5px;
      /* width: fit-content; */
    }
  }


  


/* service details */
.service-details {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
  color: #222;
}

.service-details .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.text-left {
  flex: 1 1 500px;
  min-width: 280px;
}

.text-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.text-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.text-right {
  flex: 1 1 350px;
  min-width: 280px;
  border: 2px solid #7d552f;
  border-radius: 15px;
  padding-right: 40px;
  text-align: left;
  padding: 25px 30px;
  box-shadow: 5px 5px 0 #642f7d;
  background-color: #fff;
}

.text-right h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #222;
  text-align: left;
  letter-spacing: 0.05em;
}

.text-right ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.text-right ul li {
  margin-bottom: 15px;
  font-size: 1rem;
  position: relative;
  padding-left: 15px;
  color: #222;
}

.text-right ul li::before {
  content: '•';
  color: #a51252;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  top: 0;
}


/* Responsive: Tablets and smaller laptops */
@media (max-width: 900px) {
  .service-details .container {
    flex-direction: column;
    gap: 30px;
  }

  .text-left,
  .text-right {
    min-width: 100%;
    flex: none;
    box-shadow: none;
    padding: 15px;
  }

  .text-right {
    margin-top: 0; 
  }
}

/* Responsive: Mobile phones (small screens) */
@media (max-width: 480px) {
  .service-details .container {
    padding: 0 10px;
  }

  .text-left,
  .text-right {
    padding: 10px;
    font-size: 0.9rem;  
  }
}
/* service details end */



/* card section */
.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}


.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-content {
  padding: 16px 20px 24px;
}




.card-content h3 {
  font-size: 18px;
  margin: 16px 0 10px;
  color: #222;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

 .card-content a {
  background:  #a51252;
  border: #642f7d;
  font-weight: bold;
  font-size: 14px;
  color: white;
  padding: 12px;
  margin-top: 32px;
  border-radius: 10%;
  text-decoration: none;
  text-align: center;
}
/* card section end */

/* <!-- cards kai neechjai ka section  --> */
/* Global Styles */
body {
  font-family: 'work sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  
}

/* Banner Section */
.top-banner {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
  z-index: 2;
  padding: 0 20px;
 
}


.text-overlay h2 {
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffdddd; 
 }

.text-overlay h1 {
  font-size: 32px;
  font-weight: bold;
  margin-top: 10px;
  

}
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5); 
  z-index: 999;
}



.offers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.offer {
  flex: 1 1 300px;
  max-width: 320px;
  margin: 20px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.offer h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.offer p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.learn-more-btn {
  background-color: #B3275a;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #c1249a;
}


@media (max-width: 768px) {
  .text-overlay {
    top: 15%;
  }
  
  .text-overlay h1 {
    font-size: 24px;
  }

  .text-overlay h2 {
    font-size: 14px;
  }

  .offers {
    gap: 15px;
    padding: 30px 15px;
  }

  .offer {
    max-width: 100%;
    flex-basis: 100%;
  }

  .learn-more-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .text-overlay {
    top: 10%;
  }

  .text-overlay h1 {
    font-size: 20px;
  }

  .offers {
    padding: 20px 10px;
    gap: 10px;
  }

  .offer {
    padding: 15px;
  }

  .learn-more-btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .banner-image {
    max-height: none; 
    height: auto;    
  }

  .top-banner {
    max-height: none;
    height: auto;
  }
}
/* cards kai neechai ka section end */



/* testimonial section */
 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: work sans-serif, sans-serif;
      background: #f5f5f5;
    }

    .testimonial-section {
      background-color: #746228;
      padding: 60px 20px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .testimonial-heading {
      font-size: 36px;
      text-align: center;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .carousel-container {
      position: relative;
      max-width: 600px;
      margin: 0 auto;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial {
      min-width: 100%;
      box-sizing: border-box;
      background: white;
      color: #333;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .testimonial-logo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-bottom: 15px;
    }

    .testimonial-text {
      font-size: 16px;
      margin-bottom: 15px;
    }

    .testimonial-author {
      font-weight: bold;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .read-more {
      background-color: #ff5a5f;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 14px;
      border-radius: 5px;
      cursor: pointer;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: none;
      color: white;
      font-size: 24px;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
    }

    .prev {
      left: 10px;
    }

    .next {
      right: 10px;
    }

    @media (max-width: 768px) {
      .testimonial {
        padding: 20px;
      }
    }

    @media (max-width: 480px) {
      .testimonial-heading {
        font-size: 28px;
      }

      .arrow {
        font-size: 20px;
        padding: 8px;
      }
    }

 
/* testimonial end


/* footer */
/* body {
  margin: 0;
  font-family:work sans-serif, sans-serif;
}
.footer {
  background-color: #851d43;
  color: white;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin-top: 30px;
}
.footer::before {
  content: "";
  background: url('https://i.imgur.com/z4d4kWk.png') no-repeat;
  background-size: contain;
  opacity: 0.15;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 150px;
  height: 150px;
  z-index: 0;
}
.footer .signup {
  max-width: 300px;
  z-index: 1;
}
.footer .signup h2 {
  font-weight: normal;
  margin-bottom: 15px;
  font-size: 18px;
}
.footer .signup input[type="text"],
.footer .signup input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 3px;
}
.footer .signup button {
  background-color: #3b1927;
  color: white;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
}
.footer {
  background-color: #222;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.contact-us h4 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

.contact-us p {
  font-size: 18px;
  margin: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.icon {
  font-size: 22px;
  color: #c2185b;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 30px 20px;
  }
  .footer .signup,
  .footer .links,
  .footer .social {
    margin-bottom: 25px;
  }
}


 */



