
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  background-color: #fff;
}
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


.logo {
  width: 100px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #212832;
  font-family: sans-serif;
  font-weight: bold;
}
.nav-links a:hover {
  text-decoration: underline;
  color: #DF6951;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 19px;
}
.sign-up{
  border: none;
  background: transparent;
  font-weight: bold;
  font-size: 15px;
  font-family: sans-serif;
}
.sign-up:hover{
  color: #DF6951;
  border: none;
  text-decoration: underline;
  background: transparent;
  font-weight: bold;
  font-size: 19px;
}
/* Hero */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 600px;
}
.subtitle{
  color: #DF6951;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
  font-family: sans-serif;
}
.enjoy{
  color: #181E4B;
  font-size: 70px;
  font-family: serif;
  font-weight: 2000px;
  gap: 1px;
}
.desc{
  color: #5E6282;
  font-family: sans-serif;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-image {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-image img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.btn-image:hover img {
  transform: scale(1.05);
}

.play-btn {
  gap: 10px;
  color: #5e5e5e;
  font-weight: 500;
  font-size: 16px;
}
.services-section {
  text-align: center;
  position: relative;
  padding: 40px 10px;
}

.category {
  color: #5E6282;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: sans-serif;
}

.main-heading {
  font-size: 36px;
  color: #14183E;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  max-width: 270px;
  text-align: center;
  box-shadow: 0 0px 10px  rgb(162, 162, 162);
}
.service-card:hover{
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  max-width: 270px;
  text-align: center;
  box-shadow: 0 0px 30px  rgb(126, 123, 123);
}

.service-card img {
  max-width: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #1E1D4C;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: sans-serif;
}

.service-card p {
  font-family: sans-serif;
  color: #5E6282;
  font-size: 14px;
  line-height: 1.5;
}



.pattern-img {
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 150px;
  z-index: 1;
  opacity: 0.2;
}


.container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
      
}

.container h3 {
      font-size: 16px;
      margin-bottom: 10px;
      font-family: sans-serif;
      color: #5E6282;
}

.container h1 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 40px;
      color: #14183E;
}

.card-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
}

.card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      width: 300px;
      transition: transform 0.3s;
}

.card:hover {
      transform: translateY(-5px);
}

 .card img {
      width: 100%;
      height: 350px;
      object-fit: cover;
}

.card-body {
      padding: 20px;
      text-align: left;
}

.card-title {
      font-size: 18px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
}
.card-grid span{
      color: #5E6282;
      font-family: sans-serif;
}
.trip-info {
      display: flex;
      align-items: center;
      color: #5E6282;
      font-size: 14px;
      gap: 8px;
}

.trip-info::before {
      content: "✈️";
}
.main-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
  gap: 40px;
}

.left-section {
  flex: 1 1 400px;
  max-width: 500px;
}

.left-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 10px 0 30px;
}
.tagline{
  font-family: sans-serif;
  color: #5E6282;
}

.step {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.step img {
  width: 50px;
  height: 50px;
}

.step h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #5E6282;
  font-family: sans-serif;
}

.step p {
  font-size: 0.95rem;
  color: #5E6282;
  font-family: sans-serif;
}

.right-section {
  flex: 1 1 350px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgb(128, 127, 127);
}

.main-img {
  width: 100%;
  height: auto;
  display: block;
}

.card-body {
  padding: 20px;
}

.card-body h2 {
  margin: 0 0 10px;
    font-family: sans-serif;
  color: #5E6282;
}
.card-body p{
  font-family: sans-serif;
  color: #5E6282;
}

.card-body .icons {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.card-body .icons img {
  width: 24px;
  height: 24px;
}

.people {
  font-size: 0.9rem;
  color: #999;
}

.floating-card {
  position: absolute;
  top: 2490px;
  right: 350px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgb(159, 159, 159);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 220px;
}

.floating-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.trip-details {
  display: flex;
  flex-direction: column;
}

.trip-details .status {
  font-size: 12px;
  color: gray;
}

.trip-details h4 {
  margin: 0;
  font-size: 16px;
  font-family: sans-serif;
  color: #5E6282;
}

.progress-bar {
  background: #eee;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  margin-top: 5px;
  position: relative;
}

.progress-bar .progress {
  background: #6a5acd;
  height: 100%;
  border-radius: 5px;
}

.status {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.progress-card h4 {
  margin: 5px 0;
}

.progress {
  font-size: 0.8rem;
  color: #6c63ff;
  margin-bottom: 4px;
}

.bar {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.bar .fill {
  width: 40%;
  height: 100%;
  background: #6c63ff;
}

/* Testimonials */
.testimonial {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-left {
  flex: 1;
  min-width: 280px;
}

.small-heading {
  font-size: 14px;
  font-weight: 600;
  font-family: sans-serif;
  color: #5E6282;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1e1e2f;
  line-height: 1.4;
  margin-bottom: 20px;
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot:hover {
  background-color: #2d3142;
}

.dot.active {
  background-color: #2d3142;
}

.testimonial-right {
  flex: 1.2;
  min-width: 300px;
}

.feedback-box {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 30px 30px 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.user-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 30px;
  left: 30px;
  border: 3px solid #fff;
  background-color: #fff;
}

.feedback-text {
  margin-top: 10px;
}

.message {
  font-size: 16px;
  font-family: sans-serif;
  color: #5E6282;
  line-height: 1.6;
  margin-bottom: 20px;
}

.name {
  font-weight: 700;
  font-family: sans-serif;
  color: #5E6282;
  font-size: 16px;
}

.location {
  font-family: sans-serif;
  color: #5E6282;
  font-size: 14px;
}
/* Partner Logos */
.partners-wrapper {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

.partner-logo {
  flex: 1 1 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%);

}
.partner-logo img {
  max-width: 100%;
  max-height: 60px;
}

 .subscribe-section {
  background-color: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  position: relative;
}

.subscribe-container {
  background-color: #f4f3fb;
  border-radius: 50px 10px 10px 10px;
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 30px gainsboro;
}

.subscribe-container h2 {
  font-family: sans-serif;
  color: #5E6282;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.subscribe-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  width: 300px;
  max-width: 90%;
  font-size: 10px;
  box-shadow: 0 0 10px rgb(205, 205, 205);
}

.subscribe-form button {
  background: linear-gradient(90deg, #ff7c5f, #ff6b5f);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  font-family: sans-serif;
}

.subscribe-form button:hover {
  background: linear-gradient(90deg, #ff6347, #ff5e57);
}

.telegram-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
}

.footer {
  padding: 40px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand h2 {
  color: #080809;
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 240px;
  font-size: 14px;
 color: #5E6282;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links div h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links div a {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #5E6282;
  text-decoration: none;
}

.footer-social {
  text-align: center;
}

.footer-social .icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-social .icons img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-social p {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
  color: #5E6282;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.app-buttons img {
  height: 40px;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #5E6282;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .logo {
    width: 80px;
  }

  .menu-icon {
    display: block;
    align-self: flex-end;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .nav-links {
    display: none;
    position: static;
    width: 100%;
    background: #fff;
    box-shadow: none;
    padding: 10px 0;
  }

  .nav-links a,
  .sign-up {
    font-size: 16px;
    padding: 10px;
  }

  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 20px;
  }

  .enjoy {
    font-size: 40px;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .services-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .main-container {
    flex-direction: column;
    padding: 20px;
  }

  .left-section,
  .right-section {
    max-width: 100%;
  }

  .testimonial {
    flex-direction: column;
    padding: 40px 20px;
  }

  .partners-wrapper {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 15px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin: 20px 0 0;
  }

  .subscribe-container h2 {
    font-size: 18px;
  }

  .subscribe-form input {
    font-size: 14px;
  }

  .main-heading {
    font-size: 28px;
  }
}
