* {

  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* h1,h2{
  font-family:  "Cormorant", serif;
  font-weight: 700;
} */
:root {
  --primary-color: #4CAF50;
  --secondart-color: #8B5E3C;
  --backgroud-color: #F5F5DC;
  --text-color: #333333;
  --accent-color: #5DADE2;
  --footer-backgroud: #2E7D32;
  --nav-background: : #5DADE2;

}

/* common class */

.section-heading {
  font-family:  "Cormorant", serif;
  font-weight: 700;
  font-size: 2.5rem;
}

#navbar {
  display: flex;
  width: 100%;
  height: 90px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: white;
  transition: background-color 0.3s;
  z-index: 20;

}


#navbar .logo {
  background-size: cover;
  border: none;
  height: 80px;
  width: 20%;
  overflow: hidden;
}

.logo img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  padding-left: 10px;
  /* mix-blend-mode: color-burn; */
}

.nav-links {

  /* width: 70%; */
  text-decoration: none;

  display: flex;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;


}

.nav-links li {
  list-style: none;
  /* margin-right: 20px; */




}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.2rem;
}
.nav-links li a:hover{
  border-bottom: 2px solid var(--primary-color);
}

.call-button {

  padding: 10px 10px;
  font-family: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 1.5em;
  cursor: pointer;
  border: none;
  background: var(--primary-color);
  color: ghostwhite;
  overflow: hidden;
}


/* hamburger */
.hamburger {
  display: none;
  border: none;
  background-color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 20px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: black;
}

.hamburger:hover .bar {
  background-color: green;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Hide links by default */
    flex-direction: column;
    background-color: white;
    width: 100%;
    position: absolute;
    top: 90px;
    /* Adjust based on your navbar height */
    left: 0;
  }



  .nav-links.show {
    display: flex;
    /* Show links when toggled */
    padding-bottom: 15px;
  }

  .hamburger {
    display: block;
  }
}

.discount-strip {
  top: 90px;
  width: 100%;
  /* background-color: blue; */
  /* background: linear-gradient(90deg, #FE693E, #FEB63E, #FE3E6B);
   */
  background: linear-gradient(90deg, #FE693E, #007BFF);


  position: fixed;
  z-index: 10;
  padding: 10px 0;
  color: white;
  overflow: hidden;
}
.discount-strip span {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  animation: scroll-text 12s linear infinite;
}

@keyframes scroll-text {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}



main {
  padding: 20px;
  background-color: var(--backgroud-color);
  color: var(--text-color);
}


main h1 {
  text-align: center;
  margin-bottom: 20px;
}

.container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  height: fit-content;
  width: 100%;
  justify-content: space-between;
}

.card {
  flex: 1 1 calc(50% - 15px);
  /* margin: 10px; */
  padding: 10px;
  display: flex;
  border: 1px solid var(--accent-color);
  border-radius: 5px;
}

.ser-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 60%;
  margin: 10px;
  padding: 10px;

}
.ser-text h2{
  font-family: "Gilda Display", serif;
  font-size: 1.2rem;
}

.card img {
  width: 40%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .card {
    display: flex;
    flex-direction: column;
  }
  .card img{
    width: 100%;
    height: 200px;
  }
  .ser-text {
    display:flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
  }
}



.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
}

.btn:hover {
  background-color: #0056b3;
}



.header1 {
  background-color: transparent;
  margin-top: 134px;
  text-align: center;
  z-index: 10px;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-content {
  display: flex;
  width: 400%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 25%;
  aspect-ratio: 3/1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  color: white;
  /* padding: 4px; */
}

.slide-text {
  text-align: center;
  margin-bottom: 20px;
}

.slide img {
  width: 100%;
  height: 100%;
  /* border-radius: 8px; */
  object-fit: cover;
}

.dots {
  width: 100%;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

.active {
  background-color: #717171;
}

.prev,
.next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: #EEF3F9;
  color: #2B2929;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #EEF3F9;
  cursor: pointer;
  font-size: 18px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* media query  for the slider*/ 

@media only screen and (max-width: 600px) {
 
  .slide-text {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    /* border-radius: 8px; */
    object-fit: cover;
  }
  
  .dots {
    width: 100%;
    text-align: center;
  }
  
  .dot {
    height: 10px;
    width: 10px;
    background-color: transparent;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
  }
  
  
  
  .prev,
  .next {
    position: absolute;
    top: 22%;
    transform: translateY(-50%);
    background-color: #EEF3F9;
    color: #2B2929;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #EEF3F9;
    cursor: pointer;
    font-size: 18px;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }




}




.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  flex-direction: column;
  ;
}

.container2>div {
  display: flex;
  gap: 20px;
  width: 100%;

}

.card1 {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* margin: 10px; */
  text-align: center;
  flex: 1 1 calc(25% - 20px);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px auto;
}

.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .container2>div {
    flex-wrap: wrap;
  }

  .card1 {
    flex: 1 1 calc(50% - 20px);

  }

}



.seamless {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.budget h1 {
  font-size: 3em;
  text-align: left;
  margin-bottom: 20px;
}

.budget {
  display: block;
  width: 65%;
}

.offerss {
  display: block;
  
}

.budget p {
  line-height: 1.6;
  text-align: start;
  margin-bottom: 20px;
}

.coupon {
  background-color: var(--backgroud-color);
  color: var(--text-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.coupon-text {
  font-size: 1.2em;
  margin-right: 20px;
}

.coupon-arrow {
  background-color: #212529;
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.5em;
}

.image-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  min-height: 300px;
}

.image-container img {
  max-width: 45%;


}

.support-container {
  background-color: var(--backgroud-color);
  color: var(--text-color);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  /* height: 200px; */
  overflow: hidden;
}

.support-text {
  font-size: 2em;
  font-weight: 600;
}

.support-icon {
  font-size: 2em;
  text-align: start;
  font-weight: 600;
}

@media (max-width: 768px) {
  .support-icon {
    font-size: 1rem;
  }

  .support-container {
    flex-direction: column-reverse;
    padding: 0;
  }
  .image-container{
    flex-direction: column;
  }
  .budget{
    width: 100%;
  }
  .seamless{
    width: 100%;
  }
  .support-text{
    font-size: 1.5rem;
  }
  .offerss{
    
    padding: 10px ;
  }
}

/* container 3 */

.container3 {
  display: block;
  justify-content: center;
  align-items: center;
  /* min-height: 80vh; */

  padding: 60px 0;

}


.content {
  display: flex;
  gap: 30px;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  margin: 10px;
  border-radius: 10px;

}

.benefit-card {
  display: block;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 25%;
  border-radius: 10px;
  border: 1px solid var(--accent-color);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* background: linear-gradient(135deg, #A5D6A7, #BC8F72, #AED6F1); */
}

.contti {
  padding: 10px 30px;
  text-align: center;
}

.contti h1 {
  color: #195DC8;
}

.benefit-card img {
  width: 80px;
  height: 80px;
  margin: 20px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: "Gilda Display", serif;
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: black;
  text-align: justify;
  margin: 10px;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

/* .content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
} */

@media (max-width: 1024px) {
  .content {
    flex-wrap: wrap;
  }

  .benefit-card {
    flex: 1 1 50%;
  }

}

.book-cab {
  background-color: var(--backgroud-color);
  color: var(--text-color);
  padding: 60px 20px 60px 20px;
}

.book-cab h1 {
  text-align: center;
  margin-top: 10px;

}

.container4 {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 20px;
  padding-top: 40px;
}

.card4 {
  flex: 0 0 calc(25% - 15px);
  border: 1px solid var(--accent-color);
  /* height: 100px; */
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

.card4 img {
  width: 25%;
  /* height: 100%; */
  margin: 10px;
  border-radius: 3px;
  object-fit: cover;
}

.card4 .content {
  padding: 0;
}

.card4 h2 {
  margin: 5px;
  margin-top: 10px;
  text-align: justify;
  font-family: "Gilda Display", serif;
}

.card4 p {
  margin: 5px;
  font-size: 13px;
  text-align: justify;
}

@media (max-width: 768px) {
  .card4 {
    flex: 1 1 calc(50% - 20px);
    flex-wrap: wrap;
    /* text-align: center; */
    justify-content: center;
  }

  .card4 img {
    width: 100%;
    height: 100px;

  }


}

/* form-section */

#form-section {
  display: flex;
  justify-content: center;
  background: url(images/alkis-ischnopoulos-W8I4NWZT_lA-unsplash-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;


  background-color: rgba(0, 0, 0, 0.6);
  /* Semi-transparent background */

}

.form-container {
  width: 90%;
  padding: 60px 0;
  display: flex;
  gap: 20px;


}

.form-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 calc(70% - 10px);

}

.form-text-wrapper h2 {
  font-size: 2rem;
  font-family: "Gilda Display", serif;
}

.form-wrapper {
  flex: 0 0 calc(30% - 10px);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: #777;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  /* color: #ffffff; */
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.checkbox-wrapper label {
  font-size: 15px;
  line-height: 1.4;
}

.checkbox-wrapper a {
  /* color: #4bb3fd;  */

  color: blue;
  text-decoration: none;
}

.checkbox-wrapper a:hover {
  text-decoration: underline;
}

.form-button{
  /* width: 100%; */
  padding: 10px 20px;
  background-color: #e30512;
  /* Red background for submit button */
  color: #ffffff;
  border: none;
  /* border-radius: 5px; */
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 1.5em;
}

nav a.active-link {
  color: white; 
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 5px;

}
@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .form-text-wrapper {
    flex: none;
  }

  .form-wrapper {
    flex: none;
  }

}

/* footer*/

footer {
  background: linear-gradient(135deg, #d1dbd1, #292a2b);
  
   background-color: grey;
  display: flex;
  color: #fff;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
}
.footer-bottom{
  text-align: center;
  width: 90%;
  padding-bottom: 60px;
}

.footer-container {
  width: 90%;
  display: flex;
  gap: 20px;
  padding: 60px 0;
}


.footer-col {
  flex: 1 1 calc(25% - 20px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

h3 {
  font-size: 1.5rem;
  /* font-weight: bold; */
  margin-bottom: 20px;
}

.footer-col img {
  /* background-size: cover; */
  /* border: none; */
  height: 100%;
  width: 100%;
  overflow: hidden;
  mix-blend-mode: color-burn;


}



.footer-col a {
  text-decoration: none;
  color: white;
}

.footer-col i {
  /* background-color: #333; Background color of the circle */
  color: white;
  /* Color of the icon */
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  width: 36px;
  height: 36px;
  text-align: center;
  transition: background-color 0.3s ease;
  

}
.footer-col .fa-facebook-f{
  background-color:#0861F2;
}
.footer-col .fa-instagram{
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer-col div {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
.floating-button{
  position: fixed;
  transform: rotate(-90deg);
  right: -30px;
  top: 30%;
  background-color: rgb(200, 200, 27);
  color: black;
  text-decoration: none;
  padding: 10px;
  z-index: 10;

}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-button i {
  color: white;
  vertical-align: middle;
}
.float-icon-container{
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
  border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.float-icon-container a{
  padding: 10px;
}
.fb-icon{
  background-color: blue;
  padding: 12px;
  color: white;

}
.ig-icon{
  padding: 12px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
@media (max-width: 1024px) {

  

  .footer-container {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 0 0 100%;
  }

  .footer-img-wrapper {
    display: none;
  }
 
}




/* hero section */

#hero {
  display: flex;
  justify-content: center;
  background-color: white;
}

.hero-container {
  display: flex;
  align-items: flex-start;
  width: 90%;
  padding: 60px 0;
  color: var(--text-color);
  gap: 20px;
}

.hero-container p {
  font-size: 1rem;
  line-height: 1.5rem;

}

.hero-container>div {
  flex: 1 1 50%;
}

.text-3 {
  font-size: 3rem;
}
.text-2-5{
  font-size: 2.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.hero-cards {
  display: flex;
  gap: 20px;
}

.hero-cards>div {
  flex: 1 1 calc(50% - 20px);
  background-color: white;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  justify-content: space-between;
}

.domestic-card {
  position: relative;
  /* top: 40px; */
  /* background: linear-gradient(135deg, #4CAF50, #8B5E3C, #5DADE2); */
  background: linear-gradient(135deg, #A5D6A7, #BC8F72, #AED6F1);
  color: white;

}
.domestic-card h2{
  font-family: "Gilda Display", serif;
}.international-card h2{
  font-family: "Gilda Display", serif;
}
.international-card {
  position: relative;
  top: 40px;
  /* background: linear-gradient(135deg, #4CAF50, #5DADE2); */
  /* background: linear-gradient(135deg, #81C784, #A9CCE3); */
  background: linear-gradient(135deg, #B2DFDB, #64B5F6, #42A5F5);

  color: white;

}

.to-package {
  margin-top: 20px;
  text-decoration: none;
  color: white;
  display: inline-block;
  background-color: var(--primary-color);
  padding: 8px 20px;
  margin: 0 auto;
  border-radius: 5px;
  cursor: pointer;

}



.hero-text h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-family: "Gilda Display", serif;
 
}
.hero-text h2{
  font-family: "Gilda Display", serif;
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    padding: 0px;
  }
  .hero-cards {
    display: flex;
flex-direction: column;
    /* gap: 15px; */
}
.international-card {
  position: relative;
  /* top: 40px; */
  /* background: linear-gradient(135deg, #4CAF50, #5DADE2); */
  /* background: linear-gradient(135deg, #81C784, #A9CCE3); */
  background: linear-gradient(135deg, #B2DFDB, #64B5F6, #42A5F5);

  color: white;

}

.hero-cards>div{
  text-align: center;
}
#about{
  margin-top: 70px;
}
.call-button{
  /* width: 100%; */
  /* THis is for if they want any chaneges in the hero section button */
}




}




/* about */

#about {
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;


}

.about-container {
  width: 80%;
  display: flex;
  gap: 60px;
  padding: 50px 0;
  /* background-color: whitesmoke; */



}

.about-cards {
  flex: 1 1 calc(25% - 45px);
}

.about-cards h2 {
  color: white;
}

@media (max-width: 768px) {
  .about-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .about-cards {
    flex: 1 1 calc(50% - 10px);
  }

}

/* testimonials */

#testimonial {
  display: flex;
  justify-content: center;
}

.testimonial-container {
  padding: 60px 0;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;


}

.testimonial-container>p {
  font-size: 1.5rem;
}

.testimonial-flex-container {
  display: flex;
  gap: 30px;

}

.testi-cards {
  flex: 1 1 calc(33.33% - 20px);
  padding: 20px;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  color: white;

}

.stars-wrapper i {
  color: rgb(218, 218, 76);
}

@media (max-width: 768px) {
  .testimonial-flex-container {
    flex-direction: column;
  }

  .testi-cards {
    flex: 1 1 100%;
  }

}