/* ===== Global Reset & Basic Styles ===== */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body {
  overflow-x: hidden; /* Prevents unwanted horizontal scrolling */
  background-color: #f5f7fa;
  color: #333;
  scroll-behavior: smooth;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease-in-out;
  position: sticky;
}

.logo img {
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  font-size: 18px;
  color: #111c6f;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #3b82f6;
}

/* ===== Header Right Section ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== Call-to-Action Button ===== */
.btn-consultation {
  padding: 10px 20px;
  background-color: #111c6f;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-consultation:hover {
  background: #0a1f4e;
}

/* ===== Contact Info ===== */
.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      text-align: center;
      height: auto;
      padding: 15px;
  }

  .nav-links {
      flex-direction: column;
      gap: 10px;
      display: none;
  }

  .nav-links.active {
      display: flex;
  }

  .btn-consultation {
      width: 100%;
      text-align: center;
  }

  .header-right {
      flex-direction: column;
  }

  .contact-info {
      text-align: center;
      margin-left: 0;
  }
}

@media (max-width: 480px) {
  .logo img {
      width: 80px;
  }

  .nav-links li a {
      font-size: 16px;
  }

  .btn-consultation {
      font-size: 14px;
      padding: 8px 15px;
  }

  .contact-info {
      font-size: 14px;
  }
}

  .hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    padding: 100px 10%;
    margin-top: 10px;
    background: linear-gradient(to right, #f5f7f8, #f9fafb);
    position: relative;
  }
  .hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
  }
  .hero-content {
    width: 50%;
    position: relative;
    top: -30px;
    text-align: left;
  }
  .typewriter-text {
    display: inline-block;
    border-right: 3px solid white;
    white-space: nowrap;
    overflow: hidden;
    font-size: 3rem;
    font-weight: 700;
    animation: typing 3s steps(30, end) infinite, blink 0.6s step-end infinite;
  }
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .welcome-text {
    margin-top: 0px;
    font-size: 20px;
    color: #040d59;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 60px;
    color: rgb(8, 16, 78);
    opacity: 0;
    margin-right: 40px;
    text-align: center;
    line-height: 70px;
    transform: translateY(50px);
    animation: fadeInUp 1.5s ease-in-out forwards;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero-content .highlight {
    color: #4b5eed;
    font-size: 3.5;
  }
  .hero-buttons {
    display: flex;
    padding: 20px;
    flex-direction: row;
    padding-right: 10px;
    justify-content: space-between;
    
  }
  .btn-primary,
  .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  .hero-buttons .btn-primary {
    background: #111c6f;
    color: white;
    width: 250px;
    height: 40px;
    justify-content: space-around;
    text-align: center;
  }
  .hero-buttons .btn-secondary {
    color: #0033a5;
    text-align: center;
    height: 40px;
    justify-content: space-around;
    text-align: center;
    padding: 10px;
  }
  .btn-primary:hover {
    background: #111c6f;
  }
  .btn-secondary {
    background: #ecedf1;
    color: #111c6f;
    text-align: center;
    padding: 15px;
    border-radius:50px;
    margin-right: 20px;
  }
  .btn-secondary:hover {
    background: #abaaaa;
  }
  .hero-image img {
    width: 650px;
    border-radius: 10px;
    margin-top: 0px;
    animation: floatImage 4s infinite ease-in-out;
  }
  @keyframes floatImage {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
/* ===== About Us Section ===== */
#about-us {
  width: 100%;
  padding: 80px 5%;
  background: linear-gradient(to right, #f5f7f8, #f9fafb);
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* About Wrapper */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px; /* Increased gap for better spacing */
  flex-wrap: wrap;
  padding: 50px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeIn 1.5s ease-in-out forwards;
}

/* About Image */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px; /* Increased max-width for better proportion */
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.3);
}

/* About Content */
.about-content {
  flex: 1;
  max-width: 550px; /* Added max-width to prevent too wide content */
  text-align: left;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInLeft 1.5s ease-in-out forwards;
}

.about-content h2 {
  font-size: 42px;
  color: #002147;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 55px;
  display: flex;
  align-items: center;
  animation: slideUp 1.5s ease-in-out forwards;
}

.about-content .subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
  animation: fadeIn 2s ease-in-out;
}

.about-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px; /* Added spacing */
  animation: fadeIn 2s ease-in-out;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  background: #111c6f;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background: #0a1f4e;
  transform: scale(1.05);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .about-wrapper {
      flex-direction: column;
      text-align: center;
  }

  .about-image {
      width: 100%;
      margin-bottom: 30px; /* Added spacing */
  }

  .about-content {
      width: 100%;
      text-align: center;
  }

  .btn-primary {
      width: 100%;
  }
}

@media (max-width: 768px) {
  .about-content h2 {
      font-size: 36px;
      line-height: 50px;
  }

  .about-content p {
      font-size: 16px;
  }

  .btn-primary {
      font-size: 16px;
      padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .about-content h2 {
      font-size: 28px;
      line-height: 40px;
  }

  .about-content p {
      font-size: 14px;
  }

  .btn-primary {
      font-size: 14px;
      padding: 8px 15px;
  }
}


  #destinations {
    background: #ffffff;
    color: #222;
    text-align: center;
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .section-title {
    font-size: 3.2rem;
    font-weight: bold;
    color: #182148;
    margin-bottom: 10px;
    padding-top: 50px;
  }
  .section-subtitle {
    font-size: 1.5rem;
    color: #040d37;
    margin-bottom: 40px;
    font-weight: 200;
    font-family: Georgia, "Times New Roman", Times, serif;
  }
  .destination-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
   
  }
  .destination-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
  }
  .destination-slider::-webkit-scrollbar {
    display: none;
  }
  .destination-card {
    background: #fff;
    color: #000;
    width: 300px;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(17, 21, 86, 0.2);
    padding-bottom: 20px;
  }
  .destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .flag-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    margin: -30px auto 10px auto;
  }
  .flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .destination-card h2 {
    font-size: 1.5rem;
    color: #002147;
    margin: 10px 0;
  }
  .destination-card p {
    font-size: 1rem;
    color: #666;
    padding: 0 15px;
  }
  .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
    padding: 8px 15px;
    background: #002147;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
  }
  .read-more-btn:hover {
    background: #004aad;
  }
  .read-more-btn span {
    font-size: 1.2rem;
  }
  .prev-btn,
  .next-btn {
    background: white;
    color: black;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }
  .prev-btn {
    left: 5px;
  }
  .next-btn {
    right: 5px;
  }
  .prev-btn:hover,
  .next-btn:hover {
    background: #f1f1f1;
  }
  #courses {
    text-align: center;
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  .section-title {
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 10px;
  }
  .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
  }
  .carousel-container {
    overflow: hidden;
    max-width: 100%;
    padding: 20px 0;
  }
  .courses-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .courses-slider::-webkit-scrollbar {
    display: none;
  }
  .course-card {
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
  }
  .course-card h3 {
    margin: 15px 0;
    font-size: 1.5rem;
    color: #333;
  }
  .course-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
  }
  #services {
    text-align: center;
    padding: 100px 20px;
    color: rgb(9, 13, 54);
    position: relative;
    overflow: hidden;
  }
  #services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.1;
    z-index: 0;
  }
  .section-title {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    animation: fadeIn 1s ease-in-out;
  }
  .section-subtitle {
    font-size: 1.3rem;
    color: rgb(9, 13, 54);
    margin-bottom: 50px;
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
  }
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
  }
  .service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .service-card:nth-child(1) {
    transition-delay: 0.1s;
  }
  .service-card:nth-child(2) {
    transition-delay: 0.2s;
  }
  .service-card:nth-child(3) {
    transition-delay: 0.3s;
  }
  .service-card:nth-child(4) {
    transition-delay: 0.4s;
  }
  .service-card:nth-child(5) {
    transition-delay: 0.5s;
  }
  .service-card:nth-child(6) {
    transition-delay: 0.6s;
  }
  .service-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(131, 132, 172, 0.2),
      0 0 40px rgba(137, 144, 183, 0.3);
  }
  .icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    background: linear-gradient(45deg, #09203f, #537895);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    overflow: hidden;
  }
  .service-card:hover .icon-box {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  .icon-box img {
    width: 120px;
    height: 130px;
    object-fit: contain;
    filter: brightness(1);
  }
  .service-card h3 {
    font-size: 1.4rem;
    color: #222;
    font-weight: bold;
  }
  .service-card p {
    font-size: 1rem;
    color: #444;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (max-width: 768px) {
    .services-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .service-card {
      min-height: auto;
    }
  }
  #contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 20px;
    background-image: url(https://res.cloudinary.com/dztaj4ogk/image/upload/fl_preserve_transparency/v1742196490/WhatsApp_Image_2025-03-17_at_12.24.15_36d1da6b_sn6l4k.jpg?_s=public-apps);
    background-size: cover;
    opacity: 0.9;
    gap: 30px;
    background-attachment: fixed;
    width: 100vw;
    background-size: cover;
    position: relative;
  }
  #contact-section h1 {
    font-size: 30px;
    color: #040d37;
  }
  .contact-box {
    width: 45%;
    max-width: 500px;
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 15px;
    animation: fadeIn 1.2s ease-in-out;
  }
  .title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .contact-info1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .contact-info1 p {
    font-size: 1rem;
    color: #444;
  }
  .contact-info1 a {
    color: #ff923c;
    text-decoration: none;
    font-weight: 600;
  }
  .contact-info1 i {
    margin-right: 10px;
    color: #ff923c;
  }
  .form-container {
    width: 45%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideIn 1.5s ease-in-out;
  }
  .form-group {
    margin-bottom: 20px;
    position: relative;
  }
  .form-control {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 30px;
    background-color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
  }
  .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
  }
  textarea {
    height: 100px;
    border-radius: 15px;
    resize: none;
  }
  .form-container .btn-primary {
    width: 200px;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    align-items: center;
    transition: all 0.3s ease-in-out;
    background-color: #0a1f4e;
  }
  .btn-primary:hover {
    background-color: #efeff4;
    transform: scale(1.05);
    color: #0033a5;
  }
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @media (max-width: 900px) {
    .contact-section {
      flex-direction: column;
      align-items: center;
    }
    .contact-box,
    .form-container {
      width: 80%;
    }
  }
  @media (max-width: 600px) {
    .contact-box,
    .form-container {
      width: 95%;
    }
    .title {
      font-size: 1.8rem;
    }
  }
  iframe {
    width: 1500px;
    height: 250px;
    border: 0;
    align-items: center;
  }

  #courses {
    text-align: center;
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  #courses h2 {
    font-size: 3rem;
    color: #002147;
    margin-bottom: 10px;
    font-weight: 700;
  }
  #courses p {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 40px;
    font-weight: 400;
  }
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  .course-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
  }
  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }
  .course-card:hover img {
    transform: scale(1.05);
  }
  .course-card h3 {
    margin: 15px 0;
    font-size: 1.8rem;
    color: #002147;
    font-weight: 700;
  }
  .course-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .course-card {
    animation: fadeInUp 0.8s ease-in-out;
  }
  @media (max-width: 768px) {
    .courses-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    #courses h2 {
      font-size: 2.5rem;
    }
    #courses p {
      font-size: 1.1rem;
    }
  }
  body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
  }
  .container2 {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  input {
    margin: 10px 0;
  }
  .photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .photo {
    width: 100%;
    max-width: 500px;
    margin: 10px 0;
    border-radius: 10px;
  }
  .delete-btn {
    margin-top: 5px;
    padding: 5px 10px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  .posts-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    scroll-behavior: smooth;
  }
  .post-card {
    flex: 0 0 auto;
    width: 250px;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .post-card img {
    max-width: 100%;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
  }
  .scroll-btn {
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    margin: 10px;
  }
  @media (max-width: 1024px) {
    .container {
      width: 95%;
      padding: 15px;
    }
    .content-grid {
      grid-template-columns: 1fr;
    }
  }
  .hamburger {
    display: none;
    font-size: 24px;
    color: rgb(0, 0, 0);
    background: none;
    border: none;
    cursor: pointer;
    padding-left: 75%;
  }
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      padding: 10px;
      text-align: center;
    }
    .nav-links {
      flex-direction: column;
      text-align: center;
      display: none;
      width: 100%;
    }
    .nav-links.active {
      display: flex;
    }
    .hamburger {
      display: block;
      font-size: 24px;
      cursor: pointer;
    }
    .hero-section {
      flex-direction: column;
      text-align: center;
      height: auto;
      padding: 30px 5%;
    }
    .hero-content {
      width: 100%;
    }
    .hero-image img {
      width: 80%;
      height: auto;
      max-width: 400px;
    }
    .hero-buttons {
      flex-direction: column;
      gap: 15px;
    }
    .btn-primary,
    .btn-secondary {
      width: 80%;
      text-align: center;
    }
    .destination-card,
    .service-card {
      width: 90%;
      margin: auto;
    }
    .about-wrapper {
      flex-direction: column;
      text-align: center;
    }
    .about-image img {
      width: 100%;
    }
    .about-content {
      width: 100%;
    }
    .content-grid {
      grid-template-columns: 1fr;
    }
    .faq-section {
      text-align: left;
    }
  
  @media (max-width: 768px) {
    #contact-section {
      flex-direction: column;
      align-items: center;
      padding: 40px 5%;
      display: flex;
      flex-direction: column;
      text-align: center;
    }
    .contact-box,
    .form-container {
      width: 90%;
      text-align: center;
    }
    .contact-info1 p {
      font-size: 14px;
    }
    .contact-info1 p a {
      font-size: 14px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
    }
    .btn-primary {
      width: 100%;
    }
    .map-container {
      width: 100%;
      max-width: 111%;
      overflow: hidden;
      display: flex;
      justify-content: center;
    }
    .map-container iframe {
      width: 100%;
      height: 250px;
      border-radius: 10px;
    }
  }
}

/* ===== Footer Styling ===== */
.footer {
  color: white;
  background-color:rgb(11, 31, 78);
  padding: 80px 0;
  text-align: center;
  width: 100vw;
  bottom: 0;
  left: 0;
  margin-left: 0;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  background-color: rgb(11, 31, 78);
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #007bff;
  color: #fff;
}
/* Full-Width Container */
.footer-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 5%;
}

/* Footer Row */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  align-items: center;  /* Ensures everything is aligned properly */
}

/* Footer Columns */
.footer-column {
  flex: 1;
  min-width: 250px;
  transition: transform 0.3s ease-in-out;
}

.footer-column:hover {
  transform: translateY(-3px);
}

/* Footer Logo */
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Footer Headings */
.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #ffcc00;
  display: inline-block;
  padding-bottom: 5px;
}

/* Footer Paragraphs */
.footer-column p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Footer Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: #ffcc00;
}

/* Newsletter Subscription */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;  /* Centers the input & button */
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  width: 250px;  /* Fixed width for consistency */
}

.newsletter-form button {
  background: #ffcc00;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  font-size: 15px;
  white-space: nowrap;  /* Prevents button text from wrapping */
}

.newsletter-form button:hover {
  background: white;
  color: #0032a5;
}

/* Footer Bottom */
.footer hr {
  border: 0;
  height: 1px;
  background: #ffffff55;
  margin: 30px 0;
}

.footer-bottom {
  font-size: 14px;
  color: #e0e0e0;
}

/* ===== Responsive Footer ===== */
@media (max-width: 1024px) {
  .footer-container {
      padding: 0 3%;
  }

  .footer-row {
      gap: 30px;
  }

  .newsletter-form {
      flex-direction: column;
  }

  .newsletter-form input {
      width: 100%;
  }

  .newsletter-form button {
      width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-row {
      flex-direction: column;
      text-align: center;
  }

  .footer-column {
      text-align: center;
  }

  .newsletter-form {
      flex-direction: column;
  }

  .newsletter-form input {
      width: 100%;
  }

  .newsletter-form button {
      width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-logo {
      font-size: 20px;
  }

  .footer-column h3 {
      font-size: 16px;
  }

  .footer-column p,
  .footer-column ul li a {
      font-size: 14px;
  }
}
