*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

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


.front{
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  background: linear-gradient(180deg, #FFFFFF 15%, #FFFFFF00 49%);
}

.front img{
  width: 12%;
  height: 120px;
  margin-top: -15px;
}

.navbar{
  display: flex;
  margin-top: 30px;
  margin-left: 80px;
}

.navbar li{
  list-style: none;
}

.navbar li a{
  text-decoration: none;
  color: black;
  margin-left: 50px;
}

.navbar li a::after {
  content: "• • • •"; /* Four dots */
  display: block;
  margin: -8px auto;
  text-align: center;
  font-size: 14px; /* Adjust size as needed */
  margin-left: 50px;
  color: black;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease-in-out;
}

/* Highlight the active link based on the current page */
.navbar li a.active::after {
  opacity: 1; /* Make the dots visible for the active page */
}

.contact-us{
  margin-top: 30px;
  margin-left: 0;
  margin-right: 120px;
}

.contact-us a{
  text-decoration: none;
  color: black;
  background-color: #008515;
  color: white;
  border-radius: 20px;
  padding: 5px 10px;
}

/* Video styling */
.video-container video {
  width: 100%;
  height: auto;
}

.gradient{
  background: linear-gradient(to bottom, #CDCDCD, #676767);
  margin-top: -10px;
}

.plan-trip{
  display: flex;
  justify-content: space-between;
}

.plan{
  margin-left: 50px;
  margin-top: 40px;
}

.plan-trip img{
  width: 25%;
  margin-right: -50px;
  margin-top: -60px;
  position: relative;
}

.plan-trip p{
  font-size: 1.5rem;
  color: rgb(0, 133, 21);
  font-family: "Kaushan Script", cursive;
}

.plan-trip h5{
  font-size: 2rem;
  color: white;
}

/* Container for the perfect holiday images */
.perfect-holiday {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: -100px;
}

/* Individual image item */
.image-item {
  position: relative;
  width: 250px;
  text-align: center;
  perspective: 1000px; /* Adds 3D space for the flip effect */
}

/* The main large image */
.main-image {
  position: relative;
  width: 100%;
  overflow: visible; /* Ensure the circle image is clipped to the boundaries */
  border-radius: 10px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

  /* When hovering over the container, the image will flip */
    .main-image:hover {
      transform: rotateY(180deg); /* Flip the image on the Y-axis */
  }

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the container */
}

/* Circle overlay image */
.circle-overlay {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; /* Adjust the size of the circle image */
  height: 60px; /* Adjust the size of the circle image */
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  transition: background-color 0.3s ease; /* For smooth background transition */
}

.overlay{
  top: 88%;
}

.change{
  margin-top: 35px;
}

img[alt="Large Image 2"], img[alt="Large Image 3"]{
  width: 90%;
}

.item{
  margin-top: 40px;
}

.circle-overlay:hover{
  background-color: rgb(219, 255, 212);
}

.circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the circle image is fully contained within the circle */
  padding: 13px;
  z-index: 1;
}

/* Heading text under the large image */
h4 {
  margin-top: 10px;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 40px;
}

.sonic-journey{
  display: flex;
}

.sonic-journey img{
  width: 50%;
}

.journey-content{
  margin-top: 80px;
}

.journey-content h4{
  font-size: 1.8rem;
  color: #008515;
  margin-bottom: 0px;
  margin-top: 40px;
}

.journey-content p{
  font-size: 1.2rem;
}

.numbers{
  display: flex;
  margin-top: 50px;
  margin-left: -40px;
}

.numbers h3{
  font-size: 2rem;
  margin: 0;
  transition: color 0.3s ease;
}

.numbers p{
  font-size: 0.8rem;
}

.our-exp, .certificate, .year-exp {
  border-radius: 20px;
  background-color: #D9D9D9;
  text-align: center;
  padding: 15px 50px;
  margin-left: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.our-exp:before, .certificate:before, .year-exp:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 177, 177, 0.7);
  transition: left 0.9s ease;
  z-index: -1;
}

.our-exp:hover:before, .certificate:hover:before, .year-exp:hover:before {
  left: 0;
}

.best-features{
  display: flex;
}

.what-features{
  display: flex;
}

.what-we-give{
  margin-left: 40px;
  margin-right: 50px;
}

.what-we-give h3{
  font-size: 2rem;
}

.what-we-give h5{
  font-size: 1.3rem;
}

.what-we-give p{
  font-size: 0.7rem;
}

/* Style the paragraph */
.with-arrow {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #008515;
  font-size: 1rem !important;
  font-weight: bold;
}

/* Add the arrow after the line */
.with-arrow::before {
  content: "→"; /* Unicode arrow character */
  font-size: 1.8em;
  margin-left: 10px; /* Adjust the space between the line and the arrow */
  position: absolute;
  right: -40px; /* Position the arrow to the right of the line */
  color: rgb(0, 133, 21);
  font-weight: bold;
}

.what-features{
  margin-top: 40px;
}

.square{
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: lightgreen;
  transition: transform 0.3s ease;  /* Smooth transition for the zoom effect */
}

.square:hover{
  transform: scale(1.2); /* Zoom in by 20% on hover */
}

.square img{
  padding: 5px;
}

.choices p, .guidance p, .booking p{
  font-size: 0.6rem;
}

.choices h3, .guidance h3, .booking h3{
  font-size: 1rem;
  margin-bottom: 5px;
}

.guidance{
  margin-left: 35px;
  margin-right: 35px;
}

.contact{
  text-align: center;
  color: white;
  padding-top: 30px;
}

.information{
  display: flex;
  margin-top: 40px;
}

.connect{
background-color: black;
padding-bottom: 5px;
}

.logo1{
  display: flex;
  justify-content: center;
  margin-top: 100px;
  background-color: #F7F7F7;
  box-shadow: 0 -10px 15px rgba(0, 0, 0, 0.2);
}

.logo1 img{
  width: 30%;
  height: 250px;
}

.icons{
  background-color: #3F4346;
  margin-left: 10px;
  display: flex;
}

.icons a{
  padding: 10px;
}

.icons img{
  width: 30px;
  height: 30px;
}

input::placeholder {
  color: white;
}

input[placeholder="Enter your email address"]{
  background-color: #3F4346;
  font-size: 0.8rem;
  width: 35%;
  margin-left: 5px;
  color: white;
  padding: 5px;
}

input[placeholder="Write your message"]{
  background-color: #1E2126;
  padding: 5px;
  font-size: 0.8rem;
  width: 45%;
  margin-left: 5px;
  color: white;
}

.send{
  border: 2px solid white;
  padding: 15px;
  font-size: 0.9rem;
  background-color: black;
  color: white;
  margin-left: 5px;
  cursor: pointer;
}

.connect h6{
  text-align: center;
  color: white;
  margin-top: 100px;
}

.power a{
  color: royalblue;
  text-decoration: none;
}

/* Basic styling for the button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #008515;
  color: white;
  border: none;
  border-radius: 0px;
  padding: 12px;
  width: 50px;
  height: 40px;
  padding-top: 2px;
  font-size: 20px;
  cursor: pointer;
  display: none; /* Initially hidden */
  transition: 0.3s;
  z-index: 9999;
}


@media only screen and (min-width: 320px) and (max-width: 400px) {
  
  .front{
    margin-top: 15px;
  }
  
  .front img{
    width: 16%;
    height: auto;
  }
  
  .navbar{
    margin-top: 0px;
    margin-left: 0px;
  }
  
  .navbar li{
    list-style: none;
  }
  
  .navbar li a{
    margin-left: 10px;
    font-size: 8px;
  }

  .navbar li a::after{
    margin: -8px auto;
    font-size: 7px;
    margin-left: 18px;
  }
  
  .contact-us{
    margin-top: 0px;
    margin-left: 0;
    margin-right: 10px;
  }
  
  .contact-us a{
    border-radius: 20px;
    padding: 2px 2px;
    font-size: 8px;
  }  

  img[alt="Large Image 2"], img[alt="Large Image 3"]{
    width: 90%;
  }
  
  .item{
    margin-top: 8px;
  }

  .overlay{
  top: 90%;
  }

  .change{
    margin-top: 12px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 480px) {
  
  .front{
    margin-top: 15px;
  }
  
  .front img{
    width: 16%;
    height: auto;
  }
  
  .navbar{
    margin-top: 0px;
    margin-left: 0px;
  }
  
  .navbar li{
    list-style: none;
  }
  
  .navbar li a{
    margin-left: 11px;
    font-size: 10px;
  }

  .navbar li a::after{
    margin: -8px auto;
    font-size: 7px;
    margin-left: 18px;
  }
  
  .contact-us{
    margin-top: 0px;
    margin-left: 0;
    margin-right: 10px;
  }
  
  .contact-us a{
    border-radius: 20px;
    padding: 2px 2px;
    font-size: 10px;
  }  

  img[alt="Large Image 2"], img[alt="Large Image 3"]{
    width: 90%;
  }
  
  .item{
    margin-top: 8px;
  }

  .overlay{
  top: 90%;
  }

  .change{
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {

  body{
    overflow-x: hidden;
  }

  main{
    overflow-x: hidden;
  }
  
    /* Make the plan-trip image smaller and align */
    .plan-trip img {
      width: 30%; /* Decrease width to fit on small screens */
      margin-right: -22px;
      margin-top: -30px;
      position: static;
    }

    .plan {
      margin-left: 10px;
      margin-top: 0px;
  }
  
    /* Adjust the text in .plan */
    .plan p {
      font-size: 1.2rem; /* Slightly smaller text */
      margin-top: 15px;
    }
  
    .plan h5 {
      font-size: 1rem; /* Slightly smaller text */
    }
  
    /* Adjust the perfect-holiday section */
    .perfect-holiday {
      margin-top: 0;
    }
  
    /* Individual image item adjustments */
    .image-item {
      width: 45%; /* Adjust width for small screens */
      margin-bottom: 20px;
    }

    .main-image {
      position: relative;
      width: 100%;
      height: auto;
      max-height: 120px; /* Set a max height instead of fixed height */
      overflow: visible;
    }
  
    /* Adjusting the images in .main-image */
    .main-image img {
      height: 12%;
      width: 90%;
      object-fit: cover;
    }
  
    .circle-overlay{
      height: 23px;
      width: 23px;
    }

    .circle-overlay img{
      width: 20px;
      height: 22px;
      padding: 2px;
    }
  
    h4 {
      font-size: 0.6rem;
      margin-top: 0px;
      margin-bottom: 0;
    }

    .sonic-journey{
      display: flex;
      flex-direction: column;
    }

    .sonic-journey img {
      width: 100%;
  }

  .journey-content {
    margin-top: 0;
    margin-left: 14px;
}

.journey-content h4 {
  font-size: 1rem;
  margin-bottom: 0px;
  margin-top: 0;
}

.journey-content p {
  font-size: 0.6rem;
}

.numbers {
  margin-top: 20px;
  margin-left: -10px;
  display: flex;
  justify-content: center;
}

.our-exp, .certificate, .year-exp {
  border-radius: 10px;
  padding: 5px 10px;
  margin-left: 15px;
}

.numbers h3 {
  font-size: 1rem;
}

.numbers p {
  font-size: 0.5rem;
}

.best-features{
  display: flex;
  flex-direction: column;
}

.what-we-give {
  margin-left: 12px;
  margin-right: 10px;
  margin-top: 20px;
}

.with-arrow{
  font-size: 0.6rem !important;
}

.with-arrow::before{
  right: -20px;
  top: -8px;
}

.what-we-give h3, .what-we-give h5{
  font-size: 0.8rem;
}

.what-we-give p {
  font-size: 0.5rem;
}

.what-features {
  margin-top: 20px;
  margin-left: 7px;
}

.square {
  width: 30px;
  height: 30px;
}

.choices h3, .guidance h3, .booking h3 {
  font-size: 0.5rem;
  margin-bottom: 0;
}


.choices p, .guidance p, .booking p {
  font-size: 0.4rem;
}

.guidance {
  margin-left: 10px;
  margin-right: 10px;
}

.square img {
    padding: 2px;
    height: 25px;
    width: 25px;
}

.logo1{
  margin-top: 50px;
}

.logo1 img {
  width: 30%;
  height: auto;
}

.contact{
padding: 10px;
}

.contact p{
font-size: 0.6rem;
}

.information{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.icons img {
width: 25px;
height: 25px;
}

input[placeholder="Enter your email address"] {
  font-size: 0.6rem;
  width: 78%;
  margin-left: 40px;
  padding: 10px;
  margin-bottom: 5px;
}

input[placeholder="Write your message"] {
  font-size: 0.6rem;
  width: 78%;
  margin-left: 40px;
  padding: 10px;
}

.send{
  padding: 5px;
  font-size: 0.8rem;
  margin-left: 40%; /* Adjust right margin for alignment */
  width: 20%; /* Make button width responsive */
  max-width: none; /* Remove max width for the button */
}

.icons{
background-color: black;
margin-left: 0;
display: flex;
justify-content: center;
}

.connect h6{
  margin-top: 50px;
  font-size: 0.4rem;
}

.scroll-to-top {
  padding: 8px;
  width: 35px;
  height: 30px;
  font-size: 15px;
  padding-top: 2px;
}

h4{
  margin-top: 10px;
}

}



@media only screen and (min-width: 481px) and (max-width: 600px) {
  
  .front{
    margin-top: 15px;
  }
  
  .front img{
    width: 13%;
    height: auto;
  }
  
  .navbar{
    margin-top: 0px;
    margin-left: 0px;
  }
  
  .navbar li{
    list-style: none;
  }
  
  .navbar li a{
    margin-left: 28px;
    font-size: 11px;
  }

  .navbar li a::after{
    margin: -9px auto;
    font-size: 11px;
    margin-left: 27px;
  }
  
  .contact-us{
    margin-top: 0px;
    margin-left: 0;
    margin-right: 10px;
  }
  
  .contact-us a{
    border-radius: 20px;
    padding: 2px 2px;
    font-size: 11px;
  }  

  .item{
    margin-top: 15px;
  }

  .change{
    margin-top: 18px;
  }

}

@media only screen and (min-width: 601px) and (max-width: 767px) {
  
  .front{
    margin-top: 15px;
  }
  
  .front img{
    width: 13%;
    height: auto;
  }
  
  .navbar{
    margin-top: 8px;
    margin-left: 0px;
  }
  
  .navbar li{
    list-style: none;
  }
  
  .navbar li a{
    margin-left: 30px;
    font-size: 13px;
  }

  .navbar li a::after {
    margin-left: 30px;
    font-size: 11px;
  }
  
  .contact-us{
    margin-top: 8px;
    margin-left: 0;
    margin-right: 10px;
  }
  
  .contact-us a{
    border-radius: 20px;
    padding: 2px 2px;
    font-size: 13px;
  }  

  .item{
    margin-top: 20px;
  }

  .change{
    margin-top: 20px;
  }

}

@media only screen and (min-width: 481px) and (max-width: 767px) {

  body{
    overflow-x: hidden;
  }

  main{
    overflow-x: hidden;
  }
  
    /* Make the plan-trip image smaller and align */
    .plan-trip img {
      width: 30%; /* Decrease width to fit on small screens */
      margin-right: -35px;
      margin-top: -65px;
      position: static;
    }

    .plan {
      margin-left: 15px;
      margin-top: 0px;
  }
  
    /* Adjust the text in .plan */
    .plan p {
      font-size: 1.5rem; /* Slightly smaller text */
      margin-top: 15px;
    }
  
    .plan h5 {
      font-size: 1.2rem; /* Slightly smaller text */
    }
  
    /* Adjust the perfect-holiday section */
    .perfect-holiday {
      margin-top: 0;
    }

    .circle-overlay{
      height: 32px;
      width: 32px;
    }

    .circle-overlay img{
      width: 30px;
      height: 30px;
      padding: 5px;
    }

    h4{
      font-size: 1rem;
    }

    .sonic-journey img {
      width: 30%;
  }

  .journey-content {
    margin-top: 50px;
    margin-left: 14px;
}

.journey-content h4 {
  font-size: 1rem;
  margin-bottom: 0px;
  margin-top: 0;
}

.journey-content p {
  font-size: 0.6rem;
}

.numbers {
  margin-top: 20px;
  margin-left: -10px;
  display: flex;
  justify-content: center;
}

.our-exp, .certificate, .year-exp {
  border-radius: 10px;
  padding: 5px 10px;
  margin-left: 15px;
}

.numbers h3 {
  font-size: 1.2rem;
}

.numbers p {
  font-size: 0.6rem;
}

.best-features{
  display: flex;
  flex-direction: row;
}

.what-we-give {
  margin-left: 12px;
  margin-right: 10px;
  margin-top: 20px;
}

.with-arrow{
  font-size: 0.6rem !important;
}

.with-arrow::before{
  right: -20px;
  top: -8px;
}

.what-we-give h3, .what-we-give h5{
  font-size: 0.8rem;
}

.what-we-give p {
  font-size: 0.5rem;
}

.what-features {
  margin-top: 60px;
  margin-left: 7px;
}

.square {
  width: 30px;
  height: 30px;
}

.choices h3, .guidance h3, .booking h3 {
  font-size: 0.5rem;
  margin-bottom: 0;
}


.choices p, .guidance p, .booking p {
  font-size: 0.4rem;
}

.guidance {
  margin-left: 10px;
  margin-right: 10px;
}

.square img {
    padding: 2px;
    height: 25px;
    width: 25px;
}


.logo1 img {
  width: 30%;
  height: auto;
}

.contact{
padding: 10px;
}

.contact p{
font-size: 0.8rem;
}

.icons {
  height: 42px;
  }
  
  .icons a{
      padding: 5px;
      padding-top: 8px;
  }
 
  .icons img {
  width: 20px;
  height: 20px;
  }
  
  input[placeholder="Enter your email address"], input[placeholder="Write your message"]{
  padding: 5px;
  font-size: 0.5rem;
  height: 42px;
  }
  
  .send{
  padding: 9px;
  font-size: 0.8rem;
  margin-right: 5px;
  }
  

.connect{
padding-bottom: 5px;
}

.connect h6{
  margin-top: 60px;
  font-size: 0.5rem;
}

.scroll-to-top {
  padding: 8px;
  width: 35px;
  height: 30px;
  font-size: 15px;
  padding-top: 2px;
}

}


@media only screen and (min-width: 768px) and (max-width: 930px) {
  
  .front{
    margin-top: 15px;
  }
  
  .front img{
    width: 15%;
    height: auto;
  }
  
  .navbar{
    margin-top: 15px;
    margin-left: 0px;
  }
  
  .navbar li{
    list-style: none;
  }
  
  .navbar li a{
    margin-left: 42px;
    font-size: 14px;
  }

  .navbar li a::after {
    margin-left: 40px;
    font-size: 12px;
  }
  
  .contact-us{
    margin-top: 15px;
    margin-left: 0;
    margin-right: 50px;
  }
  
  .contact-us a{
    border-radius: 20px;
    padding: 5px 5px;
    font-size: 14px;
  }  
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {
  
  body{
    overflow-x: hidden;
  }

  main{
    overflow-x: hidden;
  }
  
    /* Make the plan-trip image smaller and align */
    .plan-trip img {
      width: 30%; /* Decrease width to fit on small screens */
      margin-right: -48px;
      margin-top: -65px;
      position: static;
    }

    .plan {
      margin-left: 25px;
      margin-top: 0px;
  }
  
    /* Adjust the text in .plan */
    .plan p {
      font-size: 1.8rem; /* Slightly smaller text */
      margin-top: 25px;
    }
  
    .plan h5 {
      font-size: 1.5rem; /* Slightly smaller text */
    }
  
    /* Adjust the perfect-holiday section */
    .perfect-holiday {
      margin-top: 0;
      gap: 0;
    }

    .main-image img {
      width: 104%;
    }

    .circle-overlay{
      height: 42px;
      width: 42px;
    }

    .circle-overlay img{
      width: 38px;
      height: 38px;
      padding: 4px;
    }

    h4{
      font-size: 1.2rem;
    }

    
img[alt="Large Image 2"], img[alt="Large Image 3"]{
  width: 90%;
}

.item{
  margin-top: 30px;
}

    .sonic-journey img {
      width: 50%;
  }

  .journey-content {
    margin-top: 60px;
    margin-left: 0px;
}

.journey-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0px;
  margin-top: 0;
}

.journey-content p {
  font-size: 0.7rem;
}

.numbers {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.our-exp, .certificate, .year-exp {
  border-radius: 15px;
  padding: 10px 15px;
  margin-left: 15px;
}

.numbers h3 {
  font-size: 1.3rem;
}

.numbers p {
  font-size: 0.7rem;
}

.best-features{
  display: flex;
  flex-direction: row;
}

.what-we-give {
  margin-left: 12px;
  margin-right: 10px;
  margin-top: 20px;
}

.with-arrow{
  font-size: 0.9rem !important;
}

.with-arrow::before{
  right: -30px;
  top: -10px;
}

.what-we-give h3, .what-we-give h5{
  font-size: 1.2rem;
}

.what-we-give p {
  font-size: 0.6rem;
}

.what-features {
  margin-top: 60px;
  margin-left: 7px;
}

.square {
  width: 35px;
  height: 35px;
}

.choices h3, .guidance h3, .booking h3 {
  font-size: 0.7rem;
  margin-bottom: 0;
}

.choices p, .guidance p, .booking p {
  font-size: 0.5rem;
}

.guidance {
  margin-left: 10px;
  margin-right: 10px;
}

.square img {
    padding: 2px;
    height: 30px;
    width: 30px;
}

.logo1 img {
  width: 25%;
  height: auto;
}

.contact{
padding-top: 20px;
}

.icons a {
  padding: 7px;
  padding-top: 14px;
}

.icons img {
width: 25px;
height: 25px;
}


input[placeholder="Enter your email address"] {
font-size: 0.6rem;
}


input[placeholder="Write your message"] {
font-size: 0.6rem;
}

.send{
font-size: 0.8rem;
margin-right: 5px;
}

.connect h6{
margin-top: 70px;
font-size: 0.5rem;
}

.scroll-to-top {
  padding: 8px;
  width: 35px;
  height: 30px;
  font-size: 15px;
  padding-top: 2px;
}

}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .perfect-holiday {
    gap: 10px;
    margin-top: -40px;
}

.sonic-journey img {
  width: 38%;
}
 
.logo1 img {
  width: 25%;
  height: auto;
}

.contact{
padding-top: 20px;
}


.icons a {
  padding: 7px;
  padding-top: 14px;
}

.icons img {
width: 25px;
height: 25px;
}


input[placeholder="Enter your email address"] {
font-size: 0.6rem;
}


input[placeholder="Write your message"] {
font-size: 0.6rem;
}

.send{
font-size: 0.8rem;
margin-right: 5px;
}


.connect h6{
  margin-top: 80px;
  font-size: 0.5rem;
}

}