@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* General Reset and Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif, "Roboto";
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Header */
.top-header {
  display: flex;
  /* justify-content: space-between; */
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  /* background-color: #0056b3; */
  /* background-color: #fff; */
  /* color: #000; */
  color: rgb(9, 9, 57);
  /* background-color: rgb(75, 23, 23); */
  background-color: rgb(58, 19, 19);
  font-family: "Roboto", serif;
}

.top-header .logo img {
  height: 200px;
}

/* .top-header .social-icons a {
  margin-left: 15px;
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}*/

/* .top-header .social-icons a:hover {
  transform: scale(1.2);
} */

nav {
  /* background: #234567; */
  background-color: rgba(159, 159, 21, 0.897);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  /* color: #333; */
  /* color: white; */
  color: rgb(58, 19, 19);
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: blue;
}

.nav-mobile {
  /* background: rgba(128, 128, 128, 0.849); */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgba(159, 159, 21, 0.897);
  transition: all ease-in-out 5s;
  /* font-size: clamp(0.5rem, 2vw, 1rem); */
  /* padding: 10px 0; */
}
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-flow: column;
  /* align-items: center;
  justify-content: center; */
  gap: 20px;
}
.nav-mobile ul a:first-child {
  padding-top: 15px;
}
.nav-mobile a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  color: rgb(58, 19, 19);
  /* align-items: center; */
  justify-content: center;
  border-bottom: 1px solid #003d8227;
}
.nav-mobile a li {
  color: rgb(58, 19, 19);
  font-weight: bold;
  transition: color 0.3s ease;
}
.nav-mobile a:hover {
  border-radius: 20px solid blue;
  border: 1px solid;
}
.open-menu {
  display: flex;
  flex-flow: column;
}
.open-menu {
  flex-flow: row;
}

/* Hero Section */
.hero {
  background: no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #0056b3;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
  background-color: #003c82;
  transform: translateY(-5px);
}

/* Introduction Section */
.introduction {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.introduction h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0056b3;
}

.introduction p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

.services h2 {
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 30px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.service-cards .card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-cards .card i {
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 10px;
}

.service-cards .card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.service-cards .card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
}

/* Destinations Section */
.destinations {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.destinations h2 {
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 30px;
}

.destination-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.destination-cards .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination-cards .card:hover {
  transform: scale(1.05);
}

.destination-cards .card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.destination-cards .card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #333;
}

.destination-cards .card p {
  font-size: 1rem;
  color: #555;
}

/* Testimonials */
.testimonials {
  padding: 50px 20px;
  background-color: #0056b3;
  color: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonials .testimonial {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.2rem;
  font-style: italic;
  border-left: 5px solid #fff;
  padding: 10px 20px;
}

.testimonials h4 {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0056b3;
}

.contact form {
  margin-top: 20px;
}

.contact form input,
.contact form textarea,
.contact form button {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact form button {
  background-color: #0056b3;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact form button:hover {
  background-color: #003c82;
}

/* Footer */
.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}

.footer p {
  font-size: 1rem;
  margin: 0;
}
/* USA List */
.list {
  display: flex;
  flex-flow: column;
}

.faq-container {
  width: 80%;
  margin: 50px auto;
  background-color: white;
  color: #333;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq-container h1 {
  /* padding: 0 em; */
  font-size: 25px;
  font-weight: bold;
}
.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  border-radius: 10px;
  background-color: rgba(211, 211, 211, 0.155);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
}
.more {
  font-size: 24px;
  cursor: pointer;
}
*/
/* FAQ Question Styles */
.faq-question h2 {
  padding-left: 10px;
  font-size: 1em;
  color: black;
  cursor: pointer;
  transition: color 0.3s ease;
  margin: 0;
  background-color: #666;
  border-radius: 10%;
}

/* .faq-question h2:hover {
  color: #007bff;
} */

/* FAQ Answer Styles */
.faq-answer {
  display: none; /* Hide answers by default */
  padding-left: 20px;
  font-size: 1.3em;
  color: #fff;
  margin-top: 10px;
  border-radius: 10%;
  /* background-color: green; */
  color: #666;
}

/* Show the answer when hovering over the question */
/* .faq-item:hover .faq-answer {
  display: block;
} */

/* Book Consultation */

.book {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  /* padding: 10px */
  align-items: center;
  justify-content: center;
  width: 100%;
}

.book form {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 10px 20px;
  border-radius: 10px;
  gap: 10px;
  background: rgba(128, 128, 128, 0.416);
  box-shadow: 4px 4px 1px rgba(112, 134, 155, 0.468);
}
.book form label {
  width: 100%;
}
.book form input {
  padding: 10px;
  border-radius: 10px;
  border: none;
  width: 100%;
  font-size: 1em;
}
.book form input:focus {
  outline: none;
}

.book form textarea {
  font: 1em;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
}

.book form button {
  background: blue;
  color: white;
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font: bold;
  width: 100%;
}
.book form button:hover {
  background: #0056b3;
}

.book h2 {
  color: blue;
  font-size: 2em;
}

.back {
  background-color: rgba(128, 128, 128, 0.233);
  color: red;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
}

.back:hover {
  background-color: gray;
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
  .faq-container {
    width: 95%;
    padding: 20px;
  }
  .book form {
    width: 80%;
  }
  .book h2 {
    font-size: 1.5em;
  }

  h1 {
    font-size: 2em;
  }

  .faq-question h2 {
    font-size: 1.4em;
  }

  .menu-icon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  nav {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

  .top-header {
    display: flex;
    justify-content: space-between;
    /* gap: 2rem; */
    /* gap: 0.5rem; */
    align-items: center;
    padding: 5px 0px;
    /* background-color: #0056b3; */
    /* background-color: #fff; */
    background-color: rgb(58, 19, 19);
    /* color: #000; */
    color: rgb(9, 9, 57);
    font-family: "Roboto", serif;
  }

  .top-header .logo img {
    height: 100px;
  }

  .logo {
    margin-right: 0px;
    margin-left: 40px;
  }
  .top-header div h1 {
    font-size: 0.5em;
  }
}

i {
  color: white;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .menu-icon {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}
