/*!************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/landingPage/styles.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************/
/* Header */
header {
    background-color: #1e293b;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
  }
  
  header a {
    color: white;
    margin: 0 1rem;
  }
  
  header .login-btn {
    border: 1px solid white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 4rem 2rem;
    margin: auto;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero .btn-group {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 2rem;
  }
  
  .hero button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
  }
  
  .hero .primary-btn {
    background-color: #7c3aed;
    color: white;
  }
  
  .hero .outline-btn {
    border: 1px solid #7c3aed;
    color: #7c3aed;
    background: none;
  }
  
  /* Features Section */
  .features {
    display: flex;
    padding: 4rem 2rem;
    justify-content: space-between;
    align-items: center;
  }
  
  .features img {
    max-width: 50%;
    border-radius: 10px;
  }
  
  .features div {
    max-width: 40%;
  }
  
  .features h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .features p {
    margin-bottom: 1rem;
  }
  
  /* Footer */
  footer {
    background-color: #1e293b;
    text-align: center;
    padding: 1rem;
  }
  

  .image-container {
    background-color: #0d1e38;
    width: 100%;
    height: 100%;
    background-image: url('/images/hero_image.gif') ;
    background-size: cover; /* Makes the image cover the container */
  }
  
  
  .image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the image scales nicely */
  }



  .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 28px 73px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logoBox {
    width: 40px;
    height: 40px;
    background-color: #6d2ed5;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: white;
    font-weight: bold;
    margin-right: 10px;
  }
  
  .logoText {
    color: #fff;
    font-size: 18px;
  }
  
  .navLinks {
    display: flex ;
        list-style: none;
        gap: 96px;
        padding: 16px 40px;
        background: #24354c;
        border-radius: 32px;
  }
  
  .navLinks li {
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
  }
  
  .loginButton {
    padding: 12px 36px;
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 32px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
  }
  
  /* Main Content */
  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 100px;
  }
  
  .heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .subtext {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .buttons {
    display: flex;
    gap: 20px;
  }
  
  .primaryButton {
    padding: 15px 30px;
    background-color: #6d2ed5;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .secondaryButton {
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #fff;
    color: white;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
  }



  /* General Section Styles */
.landing-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 100vh;
  background: linear-gradient(
    to right,
    #303d62, /* Left */
    #13233f, /* Center */
    #364168, /* Right */
    #202e4e  /* Blend */
  );
  color: white;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
}

/* Content Wrapper */
.content {
  max-width: 1200px;
  text-align: center;
  width: 100%;
}

/* Card Container for Responsiveness */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Individual Card */
.card {
  /* background-color: #1c2946; */
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 32%;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); */
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* Card Image */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .landing-section {
    padding: 40px 20px;
  }

  .card img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .card img {
    height: 140px;
  }

  .card {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .landing-section {
    padding: 20px 10px;
  }

  .card img {
    height: 120px;
  }

  .card {
    max-width: 100%;
  }

  .card-container {
    gap: 10px;
  }

  .content h1 {
    font-size: 36px;
    line-height: 48px;
  }
}

.contact-info-container{


  background-image: url(/homePageImages/contact-info-background.svg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: auto; 
}


 /* footer section */
.footer {
  background: #19233b;
  color: #ffffff;
  padding: 69px 80px 46px 83px;
  font-family: "Arial", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-item {
  display: flex;
  align-items: left;
  margin-bottom: 29px;
}

.newsletter {
  flex: 1;
}

.newsletter-input {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #0b0f25;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  justify-content: space-between;
              
}

.newsletter-email {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.newsletter-btn {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #ffffff;
  color: #364168;
  border: none;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.newsletter-btn:hover {
  background-color: #e1e1e1;
}

.newsletter-info {
  list-style-type: none;
  padding: 0;
}

.newsletter-info li {
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
      flex-wrap: wrap;
      /* justify-content: space-between; */
      align-items: center;
      margin-top: 40px;
      /* border-top: 1px solid #ffffff; */
      padding-top: 20px;
      gap: 124px;
}

.logo {
  display: flex;
  align-items: center;
}

.booking-form-container{
  background: linear-gradient(to right, #303d62, #13233f, #364168, #202e4e);
  padding: 0px 80px 145px 80px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

