* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  background-color: rgb(51, 48, 44);
  height: 50px;
  position: relative;
  z-index: 1000;
}

.leftnav {
  width: 20%;
  height: 50px;
  background-color: rgb(51, 48, 44);
}

nav img {
  width: 100px;
  height: 100px;
}

.logo {
  width: 100px;
  height: 150px;
  background-color: rgb(218, 12, 12);
  display: flex;
  align-items: end;
}

.rightnav {
  width: 60%;
  height: 50px;
  background-color: rgb(51, 48, 44);
  display: flex;
  align-items: center;
  position: relative;
}

.rightnav a {
  text-decoration: none;
  margin-left: 25px;
  color: white;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 17px;
  position: relative;
  padding: 0 10px;
  height: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.rightnav a:hover {
  background-color: rgb(42, 37, 37);
}

.login {
  width: 30%;
  height: 50px;
  background-color: rgb(51, 48, 44);
  display: flex;
  align-items: center;
  color: white;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 17px;
  gap: 10px;
  font-weight: bold;
  padding-left: 20px;
}

.login span:hover,
.login svg:hover {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 50px;
  background-color: rgb(42, 37, 37);
}

/* ================= DROPDOWN MENUS ================= */
.book-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  padding: 30px;
  color: #333;
}

.bookc:focus-within .book-dropdown {
  display: block;
}

.dropdown-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.dropdown-section {
  flex: 1;
}

.dropdown-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #d71921;
}

.dropdown-section h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.headings-row {
  display: flex;
  margin-bottom: 20px;
}

.headings-row .heading-item {
  flex: 1;
}

.headings-row h3 {
  margin-top: 0;
}

.dropdown-section ul {
  list-style: none;
}

.dropdown-section li {
  position: relative;
  margin-bottom: 10px;
}

.dropdown-section li:before {
  position: absolute;
  left: 0;
  color: #d71921;
}

.dropdown-section a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.dropdown-section a:hover {
  color: #d71921;
  text-decoration: none;
}

.bookc:focus {
  outline: 2px solid #d71921;
  outline-offset: 2px;
}

/* ================= HEADER SECTION ================= */
.flight-header-reset {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Main header container */
.hmain {
  width: 100%;
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url('./ac/emirates-premium-economy-seat-w1920x480.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Flight options container */
.fligt-p {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 10;
  position: relative;
}

/* Individual flight option boxes */
.fligt {
  flex: 1;
  max-width: 270px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-right: 1px solid #e0e0e0;
  padding: 0 15px;
  text-align: center;
}

.fligt:last-child {
  border-right: none;
}

.fligt:hover {
  background-color: white;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fligt svg {
  margin-right: 10px;
  flex-shrink: 0;
}

/* ================= MAIN CONTENT ================= */
.main-cont {
  padding: 40px 20px;
}

.main-top {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.details {
  width: 100%;
  max-width: 1078px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.d-top {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.d-top-r {
  padding: 10px 20px;
  border: 1px solid #ddd;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 4px;
}

.d-top-r:hover {
  background-color: #f9f9f9;
}

.adv {
  padding: 10px 20px;
  text-align: right;
}

.adv a {
  color: #d71921;
  text-decoration: none;
  font-size: 14px;
}

.d-bottom {
  padding: 20px;
  display: flex;
  gap: 10px;
}

.d-element {
  flex: 1;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.d-button {
  width: 150px;
  height: 50px;
  background-color: #d71921;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

/* ================= SERVICES GRID ================= */
.main-t {
  display: flex;
  width: 100%;
  max-width: 1078px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.t-element {
  flex: 1;
  padding: 20px;
  text-align: center;
  border-right: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-element:last-child {
  border-right: none;
}

.t-element:hover {
  background-color: #f9f9f9;
}

.t-element svg {
  margin-bottom: 10px;
}

.ma {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.t-element:hover .ma {
  color: #d71921;
}

/* ================= JOIN SECTION ================= */
.join {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.back-g {
  width: 100%;
  max-width: 1078px;
  background: #574545;
  background-image: url("https://c.ekstatic.net/ecl/skywards/background-pattern-skywards-tier.png");
  border-radius: 8px;
  padding: 20px;
}

.alig {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#first-img img {
  height: 40px;
}

.join-heading {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.back-g button {
  padding: 10px 30px;
  background: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* ================= DESTINATION SECTION ================= */
.destination {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.destination-heading {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.destination-heading b {
  color: #d71921;
}

.destination-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.destination-card {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.destination-country {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.destination-city {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.discover-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid white;
  padding-bottom: 2px;
}

.more {
  text-align: center;
}

.more button {
  padding: 12px 40px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.more button:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ================= MIDDLE CONTENT SECTIONS ================= */
.middle-img {
  background-size: cover;
  background-image: url('./ac/Airbrush-OBJECT-REMOVER-1761540524818.jpg');
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.middle-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.middle-cont {
  display: flex;
  align-items: center;
  justify-content: center;
}

.middle-img input {
  position: relative;
  z-index: 1;
  margin-top: 380px;
  width: 140px;
  height: 40px;
  border: 1px solid gray;
  font-weight: bold;
  border-radius: 2px;
  background-color: #d71921;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.middle-img input:hover {
  background-color: #b5151b;
}

.middle-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.one-m {
  color: #333;
  text-transform: uppercase;
  word-spacing: 5px;
  font-size: 14px;
  margin-top: 50px;
  letter-spacing: 2px;
}

.two-m {
  margin-top: 15px;
  font-size: 50px;
  text-align: center;
  padding: 0 15px;
}

.last-m {
  margin-top: 15px;
  font-size: 15px;
  color: #333;
  max-width: 600px;
  line-height: 1.6;
  padding: 0 15px;
}

.background {
  background-image: url("https://c.ekstatic.net/ecl/food/seafood-meal-first-class-black-and-white-d1920x1159.jpg?h=L362FnrfWDR3jXt-jyeIsw");
  background-size: cover;
  background-position: center;
}

.middle-backgroung {
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}

.middle-last {
  width: 100%;
  max-width: 1200px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.m-f-img {
  width: 548px;
  height: 548px;
  background-image: url("https://c.ekstatic.net/ecl/destinations/middle-east/united-arab-emirates/skyline-view-from-la-mer-dubai-d800x600.jpg?h=1lLEz9pkMAA61cgn39sKGQ");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  border: 1px solid rgb(224, 209, 209);
  transition: all 0.5s ease;
  cursor: pointer;
}

.m-s-img {
  width: 548px;
  height: 548px;
  display: flex;
  flex-wrap: wrap;
}

.row {
  display: flex;
  width: 100%;
  height: 48%;
  margin-bottom: 17px;
}

.r-one,
.r-two {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  border: 1px solid rgb(224, 209, 209);
  transition: all 0.5s ease;
  cursor: pointer;
}

.r-one {
  background-image: url("https://c.ekstatic.net/ecl/food/first-class-dessert-w800x600.jpg?h=Wxf9CC7WhFAck7s5_QF1oA");
}

.r-two {
  background-image: url("https://c.ekstatic.net/ecl/food/business-class-meal-w800x600.jpg?h=MvOq0t5vAseWLn6fdsIGVg");
}

.col {
  display: flex;
  width: 100%;
  height: 48%;
}

.c-one,
.c-two {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  border: 1px solid rgb(224, 209, 209);
  transition: all 0.5s ease;
  cursor: pointer;
}

.c-one {
  background-image: url("https://c.ekstatic.net/ecl/food/premium-economy-menu-w800x600.jpg?h=nUi11H3iz4bSSPJ0xdtGxQ");
}

.c-two {
  background-image: url("https://c.ekstatic.net/ecl/food/economy-class-chocolate-dessert-w800x600.jpg?h=8IPeHQHGlgz6DFNMUYc9bQ");
}

.m-f-img:hover,
.r-one:hover,
.r-two:hover,
.c-one:hover,
.c-two:hover {
  box-shadow:
    0 0 15px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 0, 0, 0.4),
    0 0 45px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
  transform: scale(1.02);
}

.image-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ================= ABOUT US SECTION ================= */
.aboutus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

#a-heading {
  margin-top: 20px;
  font-size: 30px;
  text-align: center;
}

#a-cont {
  color: #494848;
  margin: 12px 0 12px 0;
  text-align: center;
  max-width: 600px;
  padding: 0 15px;
}

.about-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
  gap: 30px;
}

.about-img img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}

.about-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-cont a {
  margin-top: 15px;
  color: black;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

.about-cont a:hover {
  color: #d71921;
}

.about-img img:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 15px rgb(138, 138, 138),
    0 0 15px rgba(138, 138, 138),
    0 0 15px rgba(138, 138, 138);
  filter: brightness(1.1);
  border: 1px solid rgb(163, 163, 163);
}


/* ================= FOOTER STYLES ================= */
footer {
  background-color: #313131;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-sections {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #a9a8a8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
}

.underline-link {
  text-decoration: underline !important;
}

.footer-divider {
  border: none;
  border-top: 1px solid #444;
  margin: 20px 0;
}

/* Newsletter Section */
.newsletter-column {
  grid-column: span 2;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #444;
  color: #fff;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  padding: 12px 25px;
  background: #d71921;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: #b3151c;
}


/* App Stores */
.app-stores {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.app-stores img {
  height: 40px;
  transition: opacity 0.3s ease;
}

.app-stores img:hover {
  opacity: 0.8;
}


/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #444;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #d71921;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}


/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-r a {
  text-decoration: none;
}

.legal-links li {
  margin-bottom: 8px;
}

.footer-bottom small {
  color: #888;
  font-size: 12px;
}

.footer-logo {
  height: 30px;
  width: auto;
}

.footer-bottom-left a {
  color: #888;
  text-decoration: none;
}

.footer-bottom-left ul {
  list-style: none;
}

.footer-bottom-right img {
  width: 100px;
  height: 100px;
}



/* ================= RESPONSIVE DESIGN ================= */

/* Large Desktop */
@media (max-width: 1440px) {
  .hmain {
    height: 450px;
  }

  .fligt {
    height: 75px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .image-container {
    flex-direction: column;
    align-items: center;
  }

  .m-f-img,
  .m-s-img {
    width: 100%;
    max-width: 548px;
  }

  .middle-last {
    width: 100%;
  }

  .hmain {
    min-height: fit-content;
  }

  .footer-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-column {
    grid-column: span 3;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .rightnav {
    width: 65%;
    overflow-x: auto;
  }

  .login {
    width: 20%;
    padding-left: 10px;
    gap: 8px;
    font-size: 15px;
    justify-content: flex-end;
  }

  .login span {
    display: none;
  }

  .rightnav a {
    margin-left: 15px;
    font-size: 15px;
    padding: 0 8px;
    white-space: nowrap;
  }

  .destination-images {
    grid-template-columns: 1fr;
  }

  .headings-row {
    flex-wrap: wrap;
  }

  .heading-item {
    flex: 1 0 45%;
  }

  .hmain {
    height: 400px;
  }

  .fligt {
    height: 70px;
    font-size: 15px;
  }

  .fligt svg {
    width: 22px;
    height: 22px;
  }

  .two-m {
    font-size: 40px;
  }

  .m-f-img,
  .m-s-img {
    height: 450px;
  }

  .footer-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .newsletter-column {
    grid-column: span 2;
  }

  .legal-links {
    gap: 15px;
  }
}

/* for 900px to 768px */
@media (max-width: 900px) and (min-width: 768px) {
  .rightnav {
    width: 60%;
  }

  .rightnav a {
    margin-left: 10px;
    font-size: 14px;
    padding: 0 6px;
  }

  .login {
    width: 25%;
    gap: 5px;
  }

  .login svg {
    width: 18px;
    height: 18px;
    margin: 0 5px;
  }

  .rightnav a:nth-child(5),
  .rightnav a:nth-child(6) {
    display: none;
  }
}

/* Tablet*/
@media (max-width: 768px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .leftnav{
    display: none;
  }
  .menu-toggle {
    display: block;
    order: 1;
  }

  .logo {
    order: 2;
    flex-grow: -1;
    justify-content: center;
    background-color: rgb(51, 48, 44);
    display: flex;
    align-items: center;
    height: 80px;    
  }

  .login {
    order: 3;
    width: auto;
    padding: 0;
    /* ADD THESE LINES: */
    gap: 10px;
    font-size: 16px;
  }

  .login span {
    display: inline;
  }

  .rightnav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    margin-top: 10px;
  }

  .rightnav.active {
    display: flex;
  }

  .rightnav a {
    margin: 0;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .book-dropdown {
    position: static;
    width: 100%;
    padding: 15px;
  }

  .dropdown-container {
    flex-direction: column;
  }

  .hmain {
    height: 350px;
  }

  .fligt-p {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .fligt {
    width: 50%;
    max-width: none;
    height: 70px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }

  .fligt:nth-child(even) {
    border-right: none;
  }

  .fligt:nth-child(3),
  .fligt:nth-child(4) {
    border-bottom: none;
  }

  .middle-img {
    height: 230px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .middle-img input {
    margin-top: 280px;
  }

  .two-m {
    font-size: 32px;
  }

  .m-f-img,
  .m-s-img {
    height: 400px;
  }

  #a-heading {
    font-size: 26px;
  }

  .about-cont {
    margin-right: 0;
  }

  .d-bottom {
    flex-direction: column;
  }

  .main-t {
    flex-wrap: wrap;
  }

  .t-element {
    flex: 1 0 50%;
    border-bottom: 1px solid #eee;
  }

  .alig {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .destination-heading {
    font-size: 24px;
  }

  footer {
    padding: 30px 0 20px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-column {
    grid-column: span 1;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .app-stores {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .legal-links {
    justify-content: center;
  }

  .footer-logo {
    margin-top: 10px;
  }
}


/* Mobile */
@media (max-width: 576px) {
  .hmain {
    height: 300px;
  }

  .fligt-p {
    flex-direction: column;
    align-items: center;
  }

  .fligt {
    width: 90%;
    max-width: 300px;
    height: 60px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
  }

  .fligt:last-child {
    margin-bottom: 0;
  }

  .fligt svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .middle-img {
    height: 300px;
  }

  .middle-img input {
    margin-top: 230px;
    width: 120px;
    height: 36px;
    font-size: 14px;
  }

  .two-m {
    font-size: 28px;
  }

  .one-m,
  .last-m,
  #a-cont {
    font-size: 13px;
  }

  .m-f-img,
  .m-s-img {
    height: 300px;
  }

  .row,
  .col {
    height: 48%;
  }

  .about-img img {
    width: 140px;
    height: 140px;
  }

  #a-heading {
    font-size: 24px;
  }

  .t-element {
    flex: 1 0 100%;
  }

  .destination-card {
    height: 200px;
  }

  .heading-item {
    flex: 1 0 100%;
  }
}

@media (max-width: 480px) {
  .hmain {
    height: 250px;
  }

  .t-element {
    flex: 1 0 100%;
  }

  .destination-card {
    height: 200px;
  }

  .heading-item {
    flex: 1 0 100%;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-column a {
    font-size: 13px;
  }

  .legal-links {
    gap: 10px;
  }

  .legal-links li {
    margin-bottom: 5px;
  }
}



/* Small Mobile */
@media (max-width: 400px) {
  .hmain {
    height: 200px;
  }

  .fligt {
    width: 95%;
    height: 55px;
    font-size: 14px;
    padding: 0 10px;
  }

  .fligt svg {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }

  .two-m {
    font-size: 24px;
  }

  .m-f-img,
  .m-s-img {
    height: 250px;
  }

  .about-img img {
    width: 120px;
    height: 120px;
  }
}
