@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #133b78;
  --primary-color-dark: #c9392b;
  --text-dark: #12110f;
  --text-light: #6b7280;
  --extra-light: #fbf7f6;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Merriweather", serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2.5rem 1rem;
}

.section__header {
  margin-bottom: 0.5rem;
  font-size: 24px;
  font-weight: 600;
  columns: var(--text-dark);
  text-align: left;
}

.section__description {
  font-weight: 500;
  font-family: var(--header-font);
  color: var(--text-light);
  text-align: justify;
}

.section__header h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #c9392b;
    margin-top: 10px;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.logo span {
  color: var(--text-dark);
}
.logo-container {
    display: flex;
    align-items: center;
    /* padding: 10px; */
}

.site-logo {
    width: 10rem; /* Adjust width as needed */
    height: auto;
}
.footer-logo-container {
  display: flex;
  align-items: center;
  padding: 10px;
}

.footer-logo {
  width: 10rem; /* Adjust width as needed */
  height: auto;
}



img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  /*background-color: var(--extra-light);*/
}

nav {
  position: relative;
  width: 100%;
  z-index: 1000;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--extra-light);
  border-bottom: 1px solid var(--text-light);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--extra-light);
  border-bottom: 1px solid var(--text-light);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-family: var(--header-font);
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-light);
}

.nav__links a:hover {
  color: var(--primary-color);
}




/*......................add button in the navbar and dropdown in the privacy policy............................*/
.nav__call__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Default Button Style */
.call-btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

.call-btn:hover {
  background-color: var(--text-dark);
}

/* ✅ Desktop View (Navbar Placement) */
@media (min-width: 769px) {
  .nav__call__btn {
    margin-left: auto;
  }
}

/* ✅ Mobile View (Full-Width Sticky Button at Bottom) */
@media (max-width: 768px) {
  .nav__call__btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }

  .call-btn {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c9392b;
  }
  .ri-phone-fill {
    color: #133b78;
  }
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--extra-light);
  border: 1px solid var(--text-light);
  border-radius: 5px;
  padding: 0.5rem 0;
  min-width: 150px;
  z-index: 1001 !important;
  overflow: visible !important; 
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu a {
  color: var(--text-light);
  font-family: var(--header-font);
  font-weight: 600;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: var(--primary-color);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Dropdown for Mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .dropdown-menu li {
    padding: 0.5rem 0;
  }

  .dropdown-menu a {
    padding-left: 2rem;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/*.......................................end of try butoon and dropdown..............................*/
/* .header { */
  /* padding-block: 5rem; */
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/header.jpg"); */
  /* background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; */
/* } */
        /* Hero Section Styles */
        .flight-hero {
          margin-top: 0px;
          position: relative;
      }

      .flight-hero-content {
          position: absolute;
          top: 0%;
          left: 50%;
          transform: translateX(-50%);
          text-align: center;
          z-index: 100;
          color: #fff;
          width: 95%;
      }

      .flight-hero-heading {
          font-size: 2.5rem;
          margin-bottom: 1rem;
      }

      .flight-hero-text {
          font-size: 1.1rem;
          margin-bottom: 2rem;
          /* padding: 0 12rem; */
      }

      /* Slider Styles */
      .flight-slider-container {
          position: relative;
          height: 100vh;
          overflow: hidden;
      }

      .flight-slide {
          position: absolute;
          width: 100%;
          height: 100%;
          opacity: 0;
          transition: opacity 1s ease-in-out;
      }

      .flight-slide.active {
          opacity: 1;
      }

      .flight-slide img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      @media (width > 768px) {
        .flight-hero-content{
          top: 10%;
          width: 95%;

        }
        
        }

        @media (width > 540px) {
          .flight-hero-content{
            top: 20%;
            width: 95%;
  
          }

        }

        @media (width > 1024px) {
          .flight-hero-content{
            top: 30%;
            width: 95%;
  
          }

         
        }
        

      
      
/* Overlay Effect */
.overlay {
    position: absolute;
    /* z-index: 50; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust transparency here */
}

      /* Booking Form Styles */
      
      .header__form form {
        max-width: 100%;
        margin-inline: auto;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        background-color: var(--white);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0.5rem;
      }
      
      .header__form .input__group {
        flex: 1 0 170px;
        display: grid;
        gap: 10px;
      }
      
      .header__form label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dark);
      }
      
      .header__form input {
        width: 100%;
        outline: none;
        border: none;
        font-size: 1rem;
        color: var(--text-light);
        border: 1px solid var(--text-light);
        border-radius: 0.2rem;
        padding: 0.5rem;
      }
      
      .header__form input::placeholder {
        color: var(--text-light);
      }
      
      .header__form .btn {
        padding: 15px 17px;
      }

      .flight-search-btn:hover {
          background: #2980b9;
      }

      /* Responsive Styles */
      @media (max-width: 768px) {


        .header__form form {
          padding: 1.5rem;
          transform: translateY(-50%);                       
          margin-top: 14rem;                                                                       
                                                                                                              /* vdnlnkj */
        } 
      }


.popular__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.popular__card {
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.popular__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.popular__card img {
  margin-bottom: 1rem;
  border-radius: 10px;
}

.popular__card p {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
}

.popular__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.popular__card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.popular__card .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.popular__card .rating span {
  font-size: 1.2rem;
  color: goldenrod;
}

.popular__card .price {
  color: var(--text-light);
}

.popular__card .price span {
  font-weight: 600;
  color: var(--text-dark);
}

/* .talent__container .section__header {
  text-align: center;
} */

.talent__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.talent__card {
  padding: 2rem 1rem;
  border-radius: 1rem;
  border: 2px solid transparent;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

.talent__card:hover {
  border-color: var(--primary-color);
}

.talent__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 13px;
  font-size: 2rem;
  color: var(--text-dark);
  background-color: var(--extra-light);
  border-radius: 10px;
  transition: 0.3s;
}

.talent__card:hover span {
  color: var(--white);
  background-color: var(--primary-color);
}

.talent__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.talent__card p {
  color: var(--text-light);
}

@media (width > 540px) {
  .popular__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .talent__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width > 768px) {
  .popular__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .talent__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width > 1024px) {
  .talent__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}






/* .......................................... */

.register__grid {
  display: grid;
  background-color: var(--text-dark);
  border-radius: 1rem;
}





.footer__container {
  display: grid;
  gap: 4rem 2rem;
  padding: 2rem 4rem;
  background-color: #053a73;
}

.footer__col p {
  /* margin-block: 1rem; */
  font-family: var(--header-font);
  color: var(--extra-light);
  line-height: 1.5rem;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--extra-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  font-size: 1.25rem;
  color: var(--extra-light);
}

.footer__socials a:hover {
  color: #c9392b;
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-family: var(--header-font);
  color: var(--extra-light);
}

.footer__links a:hover {
  color: #c9392b;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--white);
  text-align: center;
  background-color: #c9392b;
}

@media (width > 540px) {


  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  
}

@media (width > 768px) {
  nav {
    position: relative;
    z-index: 1000;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
    border: none;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 3rem;
    background-color: transparent;
    transform: none;
    border: none;
  }




  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {


}



/* ...........................faq..................... */





.faq__content .section__header {
  margin-bottom: 1rem;
}

.faq__grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.faq__card {
  padding: 1rem;
  display: grid;
  gap: 10px;
  background-color: var(--extra-light);
  border: 5px;
}

.faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq__header span {
  font-size: 1.5rem;
  transition: 0.3s;
  cursor: pointer;
}

.faq__card.active .faq__header span {
  transform: rotate(180deg);
}

.faq__description {
  color: var(--text-light);
  display: none;
}

.faq__card.active .faq__description {
  display: block;
}
@media (width > 768px) {
  .faq__container {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ....................section para...... */


.section__header1 {
  position: relative;
  isolation: isolate;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  padding-inline: 1rem;
  font-size: 2rem;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: left;
  margin-left: 0rem;
}

.section__description1 {
  line-height: 1.75rem;
  color: var(--text-light);
}




    
/* .................................common css.................................. */

/* Container */
.common-container {
  width: 100%;
  /* max-width: 100px; */
  margin: auto;
  background: white;
  padding: 2rem 5rem;
  /* border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

/* Header */
.common-header {
  text-align: center;
  /* margin-bottom: 50px; */
  padding: 20px 10px 20px 10px;
  background-color: #939ba6;

}

.common-header h1 {
  font-size: 28px;
  color: rgb(255, 255, 255);
}

/* Sections */
.common-section {
  margin-bottom: 25px;
}

.common-section h2 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.common-section p {
  font-size: 16px;
  line-height: 1.6;
}

.common-section ul {
  margin-top: 10px;
  padding-left: 20px;
}

.common-section ul li {
  font-size: 16px;
  margin-bottom: 5px;
}

/* Footer */
.privacy-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .common-container {
      width: 95%;
      padding: 20px;
  }

  .common-header h1 {
      font-size: 24px;
  }

  .common-section h2 {
      font-size: 20px;
  }

  .common-section p, .common-section ul li {
      font-size: 15px;
  }
}





.destination__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 350px repeat(3, 1fr);
  grid-auto-rows: max-content;
  gap: 1.5rem;
}

.destination__card {
  position: relative;
}

.destination__card:nth-child(1) {
  grid-area: 1/1/3/2;
}

.destination__card:nth-child(2) {
  grid-area: 1/2/2/4;
}

.destination__card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.destination__details {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

.destination__details h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.destination__details p {
  font-size: 0.9rem;
  color: var(--white);
}

@media (width < 1200px) {
  .destination__grid {
    gap: 1rem;
  }
}


@media (width < 900px) {

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .destination__card:nth-child(1),
  .destination__card:nth-child(2) {
    grid-area: unset;
  }
}

@media (width < 600px) {

  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 2px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: #ffffff;
  border-radius: 1rem;
}



.ri-phone-fill {
  font-size: 24px;  /* Adjust the size */
  color: #ff5733;   /* Change to any color you like */
  transition: color 0.3s ease-in-out;
}

.ri-phone-fill:hover {
  color: white;  /* Change color on hover */
}


/* Scoped styles for the 404 page */
.error-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f9;
  text-align: center;
  padding: 20px;
}

.error-page-content {
  max-width: 600px;
  width: 100%;
}

.error-page-title {
  font-size: 10rem;
  margin: 0;
  color: #ff6b6b;
  animation: float 3s ease-in-out infinite;
}

.error-page-subtitle {
  font-size: 2rem;
  margin: 10px 0;
  color: #333;
}

.error-page-message {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #666;
}

.error-page-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #ff6b6b;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.error-page-button:hover {
  background-color: #ff4757;
}

/* Animation for the 404 text */
@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .error-page-title {
      font-size: 8rem;
  }

  .error-page-subtitle {
      font-size: 1.5rem;
  }

  .error-page-message {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .error-page-title {
      font-size: 6rem;
  }

  .error-page-subtitle {
      font-size: 1.2rem;
  }

  .error-page-message {
      font-size: 0.9rem;
  }
}





/* ....................................about......................................... */

.about__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 1rem;
}

.about__content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-color);
  text-align: center;
}
@media (width < 900px) {
  .about__container {
    grid-template-columns: repeat(1, 1fr);
  }
}




/* ................................contact................................... */


.contact__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.contact__image img {
  max-width: 450px;
  margin: auto;
}

.contact__content form {
  width: 100%;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.contact__content .form__group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact__content :is(input, textarea) {
  width: 100%;
  padding: 1rem;
  outline: none;
  border: none;
  font-size: 1rem;
  background-color: var(--extra-light);
  border-radius: 5px;
}

.contact__content textarea {
  font-family: "Open Sans", sans-serif;
}

.contact__content input::placeholder {
  color: var(--text-light);
}

.contact__content button {
  max-width: fit-content;
  padding: 1rem 1.5rem;
  outline: none;
  border: none;
  color: var(--white);
  background-color: var(--primary-color);
  cursor: pointer;
  transition: 0.3s;
}

.contact__container button:hover {
  background-color: var(--primary-color-dark);
}

@media (width < 900px) {
  .contact__container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (width < 600px) {
  .contact__content .form__group {
    gap: 1rem;
  }
}
