* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ================= TOP INFO BAR ================= */
.top-header {
  position: relative;
  background: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  left: 0;
  right: 0;
}

.top-info-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  z-index: 1000;
  position: relative;
}

.top-info-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left a {
  margin-right: 15px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.top-right span {
  margin-left: 20px;
  font-size: 13px;
  color: #000000;
}

.top-right span a {
  color: #000000;
  text-decoration: none;
}

.top-right .currency {
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

/* ================= MAIN HEADER ================= */
.main-header {
  position: absolute;
  top: 36px;
  width: 100%;
  z-index: 999;
}

.bottom-info-bar {
  max-width: 1200px;
  margin: auto;
  padding: 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

nav a {
  color: #000000;
  margin-left: 18px;
  text-decoration: none;
  font-size: 14px;
}

.logo a {
  color: #000000;
  margin-right: 18px;
  text-decoration: none;
  font-size: 14px;
}


/* ================= HERO ================= */
.hero {
  height: 700px;
  background: url(/images/hero.jpg) top / cover no-repeat;
}

.hero-overlay {
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-overlay .search {
  margin-top: 35px;
  width: 1200px;
}

@media (max-width: 1200px) {
  .hero-overlay .search {
    width: 100%;
  }
}

.hero h1 {
  font-size: 73px;
  letter-spacing: 3px;
  font-family: 'Dancing Script', cursive !important;
}

.hero p {
  font-size: 26px;
  margin-top: 0;
}

.section {
  padding: 50px 0;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.section.light {
  background: #f5f7fa
}

.section h2 {
  margin-bottom: 20px;
  font-size: 34px;
  color: #000;
  position: relative;
}

.section h2:before {
  content: "";
  position: absolute;
  display: block;
  bottom: -2px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 5px;
  background-color: #ff8e43;
}

.section h2:after {
  content: "";
  display: block;
  margin: 20px auto 0;
  width: 80px;
  border-bottom: solid 2px #ff8e43;
}

.subtitle {
  width: 60%;
  margin: 0 auto;
  line-height: 24px;
  color: #000;
}

.flight-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap
}

.flight-card {
  border: 1px solid #ddd;
  width: 200px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
}

.flight-card-three span {
  color: #ff7a18;
  font-weight: bold;
  border: 1px solid;
  padding: 10px;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flight-row a {
  text-decoration: none;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px
}

.dest-card {
  position: relative;
  border-radius: 6px;
}

.dest-card img {
  width: 100%;
  height: 180px;
  object-fit: cover
}

.dest-card span {
  position: absolute;
  bottom: 4px;
  background: rgb(0 0 0 / 33%);
  color: #fff;
  width: 100%;
  padding: 8px;
  left: 0;
  right: 0;
}

.flight-card-one {
  background: #ff8e43;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flight-card-two {
  text-align: left;
  padding: 10px;
  color: #777;
  font-size: 13px;
}

.flight-card-three {
  display: flex;
  align-items: center;
  padding: 10px;
  font-weight: 700;
  justify-content: space-between;
  color: #ff7a18
}

.show-more {
  margin-top: 25px;
  padding: 10px 25px;
  background: #ff7a18;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer
}

img {
  max-width: 100%;
}

footer {
  background: #0d6efd;
  color: #fff;
  clear: both;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 45px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 45px 0;
}

footer h4 {
  margin-bottom: 10px
}

footer p a {
  font-size: 14px;
  margin: 4px 0;
  line-height: 26px;
  color: #fff;
  text-decoration: none;
}

.helplink {
  text-align: center;
  padding: 20px;
  background: #1668e1;
  border-bottom: 1px solid #ffffff40;
}

.helplink a {
  color: #fff;
  text-decoration: none;
  border-right: 1px solid #ffffff63;
  padding-right: 10px;
  margin-right: 10px;
}

.copyright {
  text-align: center;
  padding: 20px;
  background: #1668e1;
}



.pages-banner-img {
	    padding: 100px 0px;
    background-color: rgb(0, 0, 0, .3);
    background-blend-mode: multiply;
}

.pages-banner-main {    text-align: center;}

.pages-banner-main .pages-banner-h1 {
	    color: white;
    font-size: 60px;
    font-weight: 600;
}

.pages-banner-main .pages-banner-h2 {
	    color: white;
    font-size: 16px;
    max-width: 910px;
    margin: 20px auto 0px;
    line-height: 23px;
}

.about-content {    padding: 50px 0px;}
.about-content .container{max-width:700px;}

.about-content-inner p {
	       font-size: 15px;
    color: black;
    margin: 20px 0;
    font-weight: 500;
	line-height: 25px;
}

.about-content-inner .pages-content-p1 {
	margin: 0 0 20px;
    font-size: 30px;
    font-weight: 600;
}

.about-content-inner .pp-content-p6 {
	margin:  20px 0px;
    font-size: 18px;
	 font-weight: 600
}
.container {
  max-width: 100%;
  margin: auto;
}

@media (min-width:576px) {
  .container {
    max-width: 540px
  }
}

@media (min-width:768px) {
  .container {
    max-width: 720px
  }
}

@media (min-width:992px) {
  .container {
    max-width: 960px
  }
}

@media (min-width:1200px) {
  .container {
    max-width: 1140px
  }
}

@media (min-width:1400px) {
  .container {
    max-width: 1320px
  }
}