* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.nav-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  margin: auto;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #007bff;
}

/* MOBILE MENU BUTTON */
.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-icon span {
  width: 30px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 80px;
    gap: 20px;
    text-align: left;
    padding-left: 30px;
    transition: 0.4s ease-in-out;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-icon {
    display: flex;
  }
}


/* HERO SECTION */
.hero-section {
  width: 100%;
  height: 70vh;
  background: url('https://wallpapercave.com/wp/wp1846068.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);  /* Dark transparent overlay */
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn {
  padding: 12px 30px;
  background: #0257b3;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: black;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}


.review-process {
  padding: 80px 0;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.container-review {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.icon-box {
  font-size: 40px;
  margin-bottom: 15px;
}

.review-card h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}


.airline-reviews {
  padding: 80px 0;
  background: #f5f7fa;
  font-family: Arial, sans-serif;
}

.reviews-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.reviews-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD DESIGN */
.review-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-card img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  padding: 0px;
}

.review-card h3 {
  font-size: 22px;
  margin: 15px;
  color: #111;
}

.stars {
  font-size: 18px;
  color: #ff9800;
  margin: 0 15px;
}

.review-card p {
  font-size: 15px;
  color: #555;
  margin: 10px 15px 20px 15px;
}

.read-btn {
  display: inline-block;
  margin: 0 15px 20px 15px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.read-btn:hover {
  background: #005dc1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    font-size: 28px;
  }
}


/* MAIN FOOTER */
.main-footer {
  background: #005dc1;
  color: #d9d9d9;
  padding: 60px 0 0 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Footer box */
.footer-box h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff;
}

.footer-box p {
  line-height: 1.6;
  font-size: 15px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #d9d9d9;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #00aaff;
}

/* Contact specific style */
.contact-list li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* COPYRIGHT BAR */
.footer-bottom {
  margin-top: 40px;
  background: #0257b3;
  text-align: center;
  padding: 15px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-box {
    text-align: left;
  }
}

/*reviews css*/

/* HERO SECTION */
.heroX-section {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* OVERLAY */
.heroX-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #005dc1;
  backdrop-filter: blur(1px);
}

/* CONTENT */
.heroX-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.heroX-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.heroX-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.heroX-btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.heroX-btn:hover {
  background: #0085cc;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .heroX-section {
    height: 60vh;
  }

  .heroX-content h1 {
    font-size: 32px;
  }

  .heroX-content p {
    font-size: 16px;
  }
}


/* ---------- GLOBAL PAGE STYLING ---------- */
.delta-review-page {
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.8;
    padding: 30px 20px;
    max-width: 1100px;
    margin: auto;
    color: #333;
}

/* Heading Styles */
.delta-review-page h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
    color: #003e8a;
    font-weight: 700;
}

.delta-review-page h2 {
    font-size: 28px;
    margin: 35px 0 15px 0;
    color: #004fa3;
}

.delta-review-page h3 {
    font-size: 22px;
    margin: 20px 0 10px 0;
    color: #0057b4;
}

/* Paragraphs */
.delta-review-page p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
}

/* ---------- IMAGE ---------- */
.delta-review-page img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


/* ---------- PROS & CONS SECTION ---------- */
.review-flexboxX {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 25px;
}

/* Pros Card */
.review-prosX {
    flex: 1;
    min-width: 300px;
    background: #e9f9ee;
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid #1ca64c;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.review-prosX:hover {
    transform: translateY(-5px);
}

/* Cons Card */
.review-consX {
    flex: 1;
    min-width: 300px;
    background: #ffecec;
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid #d92626;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.review-consX:hover {
    transform: translateY(-5px);
}

/* List Items */
.delta-review-page ul {
    padding-left: 20px;
}

.delta-review-page li {
    margin-bottom: 10px;
    font-size: 16px;
}


/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {

    .delta-review-page {
        padding: 15px;
    }

    .delta-review-page h1 {
        font-size: 32px;
    }

    .delta-review-page h2 {
        font-size: 24px;
    }

    .delta-review-page img {
        border-radius: 10px;
    }

    .review-prosX, .review-consX {
        padding: 20px;
    }
}




