@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
*{
margin: 0%;
padding: 0%;

}
html {
  scroll-behavior: smooth;
}
.fa-envelope, .fa-phone-alt{
font-size: 22px !important;
}
.fa-home, .fa-ticket-alt, .fa-map-marker-alt, .fa-globe, .fa-passport, .fa-user-tie, .fa-phone {
  font-size: 16px !important; /* Adjusted icon size */
  margin-right: 4px !important; /* Increased spacing */
}

.nav-link {
    font-size: 15px !important;
    margin-left: 10px;
    transition: color 0.3s ease-in-out;
}




.navbar-brand {
    font-size: 20px;
    letter-spacing: 1px;
}
.Brand-logo{
    height: 10vh;
    padding-right: 3vh;
}
.Brand-Name{
    height: 4vh;
}
.countries-bg {
 position: absolute;
 left: 0%;
 right: 0%;
 bottom: 0px !important;
    background-image: url("");
    background-size: cover;
    background-repeat: no-repeat;
    
    width: 100%;
    margin: 0%;
    padding: 0%;
 z-index: 0;
}
.section-one {
  position: relative;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Full background video style */
.landing-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  
  
}

/* To ensure content stays visible above video */
.section-one .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: left;
  padding-left: 20px;
}



/* Style for animated text */
.ah-headline {
    font-family: "Nunito", Helvetica, Arial, sans-serif!important;
    font-size: 2.5rem;
    color:  rgb(255, 255, 255);
    
}

/* Add some style to the words wrapper */
.ah-words-wrapper {
    font-family: "Nunito", Helvetica, Arial, sans-serif !important;
    font-size: 9vh;
    text-transform: uppercase;
   
}
 

.para{
    text-align: left;
    font-display: left;
    color: white;
    /* padding-left:px;  */
    font-style: italic;
    position: relative;
    z-index: 10;
}
  /* Style for the link */
  .styled-link {
    display: inline-block; 
    text-decoration: none; 
    font-family: Arial, sans-serif;
    font-size: 1.2rem; 
    font-weight: bold; 
    color: rgb(28, 83, 155); 
    background-color: white; 
    border: 2px solid skyblue; 
    padding: 10px 20px; 
    border-radius: 10px; 
    box-shadow: 0px 4px 10px rgba(135, 206, 250, 0.8); 
    transition: all 0.3s ease;
    cursor: pointer; 
    /* margin-left: 18px; */
    position: relative;
    z-index: 10;
    
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card-adjust {
    flex: 1 1 calc(33.33% - 20px); 
    max-width: calc(33.33% - 20px);
    margin: 10px; 
    box-sizing: border-box;
    padding-left: 91px;
  }
  .card {
    position: relative;
    margin: 20px 0;
    width: 218px; 
    height: 283px; 
    background: #fff;
    transform-style: preserve-3d;
    transform: perspective(2000px);
    box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.5), 0 20px 20px rgba(0, 0, 0, 0.5);
    transition: 1s;
    border-radius: 20px;
  }
.card:hover
{
  z-index: 10000;
  transform: perspective(2000px) rotate(-10deg);
  box-shadow: inset 20px 0 50px rgba(0,0,0,.5), 0 10px 100px rgba(0,0,0,.5);
}

.card .Box
{
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  position: relative;
  transform-origin: left;
  border-radius: 20px;
  z-index: 1;
  transition: 1s cubic-bezier(.15,1.7,.84,.58);
  background: #111;
}
.card .Box img
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.card:hover .Box
{
  transform: rotateY(-135deg);
}
.card .details
{
  
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 20px;
  z-index: -1;
}
.title{
  font-family: "Nunito", Helvetica, Arial, sans-serif!important;
  font-weight: bolder;
  color: black;
  font-size: 3.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* animations */
.section-two {
  position: relative;
  overflow: hidden; 
}

.animation-box {
  position: absolute; 
  top: 0;
  left: 0;
  width: 50%;
  height: auto;
  pointer-events: none; 
  z-index: -2; 
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  background: #0af;
  width: 100px;
  height: 1300px;
  margin-left: -150px;
  margin-top: -250px;
  transform-origin: 50% 48%;
  border-radius: 43%;
  animation: drift 7000ms infinite linear;
}

.wave.-two {
  opacity: 0.1;
  background: black;
  animation: drift 3000ms infinite linear;
}

.wave.-three {
  background-color: #77daff;
  animation: drift 9500ms infinite linear;
}


@keyframes drift {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animation-box-right {
  position: absolute; 
  top: 0;
  right: 0;
  width: 50%;
  height: auto;
  pointer-events: none; 
  z-index: -2; 
}

.wave-right {
  left: unset; 
  right: 0; 
  margin-left: 0; 
  margin-right: -150px; 
}




/* carousel */
.carousel{
    height: 100vh;
    margin-top: -50px;
    width: 99.vw;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #f1683a;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}
/* Slider animation */
/* .carousel-container {
  position: relative;
  width: 320px;
  margin: 100px auto 0 auto;
  perspective: 1000px;
}
.carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d; 
  animation: rotate360 60s infinite forwards linear;
}
.carousel__face { 
  position: absolute;
  width: 300px;
  height: 187px;
  top: 20px;
  left: 10px;
  right: 10px;
  background-size: cover;
  box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.5);
  display: flex;
}

carousel-span {
  margin: auto;
  font-size: 2rem;
} */


.carousel__face:nth-child(1) {
  background-image: url("https://images.pexels.com/photos/1141853/pexels-photo-1141853.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(  0deg) translateZ(430px); }
.carousel__face:nth-child(2) { 
  background-image: url("https://images.pexels.com/photos/1258865/pexels-photo-1258865.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    transform: rotateY( 40deg) translateZ(430px); }
.carousel__face:nth-child(3) {
  background-image: url("https://images.pexels.com/photos/808466/pexels-photo-808466.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY( 80deg) translateZ(430px); }
.carousel__face:nth-child(4) {
  background-image: url("https://images.pexels.com/photos/1394841/pexels-photo-1394841.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(120deg) translateZ(430px); }
.carousel__face:nth-child(5) { 
  background-image: url("https://images.pexels.com/photos/969679/pexels-photo-969679.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
 transform: rotateY(160deg) translateZ(430px); }
.carousel__face:nth-child(6) { 
  background-image: url("https://images.pexels.com/photos/1834400/pexels-photo-1834400.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
 transform: rotateY(200deg) translateZ(430px); }
.carousel__face:nth-child(7) { 
  background-image: url("https://images.pexels.com/photos/1415268/pexels-photo-1415268.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
 transform: rotateY(240deg) translateZ(430px); }
.carousel__face:nth-child(8) {
  background-image: url("https://images.pexels.com/photos/135018/pexels-photo-135018.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(280deg) translateZ(430px); }
.carousel__face:nth-child(9) {
  background-image: url("https://images.pexels.com/photos/1175135/pexels-photo-1175135.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(320deg) translateZ(430px); }



@keyframes rotate360 {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}
.panel-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px; /* Limit the container width */
  margin: 20px auto; /* Center the container */
}

.panel {
  position: relative;
  width: 30%; /* Take up 30% of the row width */
  max-width: 300px; /* Limit the panel width */
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

.panel:hover .panel-bg {
  transform: scale(1.1);
}

.panel-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
}

.panel-content h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.panel-content p {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .panel {
    width: 45%; /* Take up more space on smaller screens */
  }
}


.section-four {
  position: relative;
  overflow: hidden; 
}
.slider {
  width: 80%; /* Adjust slider width */
  margin: 20px auto;
}
.slider img {
  width: 30%;
  height: auto;
}

.text-style{
  font-family:Georgia, 'Times New Roman', Times, serif ;
color: white;
  font-size:4rem;
  padding-inline-start: 127px;
  padding-top: 40px;

  
}

.fa-solid, .fas {
  font-weight: 900;
  color: white;
  font-size: xx-large;
 
}
.text{
  font-family: Arial, sans-serif;
  font-size:1.5rem;
  padding-left: 82px;
  color: white;
  
}
.footer-addresses {
 
  color: #ffffff;
  padding-left: 130px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}



.footer-addresses h4 {
  font-size: 1.2em;
  color: #f1c40f; 
}

.footer-addresses p {
  font-size: 0.95em;
  margin: 0;
}
.contact-info {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
padding-left: 125px;
  border-radius: 8px;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
  font-size: 1.5em;
  color: #f1c40f;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
}

.contact-info i {
  text-decoration: none;
  color: #3498db;
  font-weight: bold;
}

.contact-info i:hover {
  color: #2980b9;
  text-decoration: underline;
}



/* Animation for fade-in effect */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {


 .setmargin{
    font-family: 'Ubuntu' !important;
   padding-left: 10px;
   margin-bottom: 0%;
   font-weight: bolder;
   font-size: 20px !important;
   
}
.countries-bg {
  display: none !important;
 }
 .plane{
  padding-top: 20px;
  background-position: center;
width: auto;
height: 24vh !important;
}
.section2-Heading {
  font-size: 25px;
}
.card-adjust {
  /* Adjust for smaller screens */
  flex: 1 1 100%; /* Occupy full width */
  max-width:50%; /* Ensures no overflow */
  box-sizing: border-box;
  padding-left: 10px;
}
.card {
  position: relative;
 
  height: 283px;
  background: #fff;
  transform-style: preserve-3d;
  transform: perspective(2000px);
  box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.2); /* Adjust as needed */
  transition: 1s;
  border-radius: 20px;
  width: 96%; /* Allow for padding */
    margin: 10px auto;
}
.animation-box {
  position: absolute; 
  top: 0;
  left: 0;
  width: 50%;
  height: auto;
  pointer-events: none; 
  z-index: -2; 
}
.animation-box-right {
  position: absolute; 
  top: 0;
  right: 0;
  width: 50%;
  height: auto;
  pointer-events: none; 
  z-index: -2; 
}

.wave-right {
  left: unset; 
  right: 0; 
  margin-left: 0; 
  margin-right: -150px; 
  margin-top: 800px;
}
.des{
  display: none !important;
}
.carousel .list .item .buttons{
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 16px;
}
 .section-five {
    padding: 10px; 
  }

  .contact-form {
    padding: 5px; 
  }

  .form-heading {
    font-size: 2rem; 
  }

  .form-control {
    padding: 0.3px; 
  }

  .submit-btn {
    padding: 8px 20px; 
    font-size: 14px; 
  }
 
  .iframe{
    display: none !important;
  }
  .iframe-width{
 display: none;
  }
  .contact-info {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
  padding-left: 40px !important;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .text{
    padding-left: 40px !important;
  }
  .footer-addresses {
   
    color: #ffffff;
    padding-left: 40px !important;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .setmargin-top{
    padding-top:  5px!important;
    font-size: 2rem !important;
  }
  .card .Box {
    position: relative;
    width: 122%;
    height: 100%;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    position: relative;
    transform-origin: left;
    border-radius: 20px;
    z-index: 1;
    transition: 1s cubic-bezier(.15,1.7,.84,.58);
    background: #111;
  }
}

.footer{

  background-image: url(./Assets/BrandLogo/footer.jpg);
  background-size: cover;
}
 .footer-image{
width: 30rem;
height: auto;
padding: 50px 0px 50px 120px;

 }


 @media (max-width: 768px) {
  
  
  .panel {
    width: 100%; /* Stack panels on small screens */
  }
  .section-one {
    position: relative;
    height: 60vh !important;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  } 
 .fa-phone-alt{
  font-size: 10px !important;
 }
  .landing-video{
    height: 60vh;
  }
  .phone-font{
    padding-top: 8px;
    font-size: 10px;
  }
 
  .text-style{
  font-size: 40px !important;
  }
 .navbar-brand {
  font-size: 4px !important;
 }
 .navbar{
  padding-left: 20px !important;
 }
 .footer-image{
  width: 20rem !important;
  height: auto;
  padding: 50px 0px 40px 80px;
  
   }
   .form-control::placeholder {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .btn {
    width: 100%;
  }
  .s-view{
    font-size: 5vh !important;
  }
}
