  * {
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  body,
  div,
  span,
  p,
  button {
      font-family: 'Inter', Arial, sans-serif !important;
  }
  /* for all hadings */
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Plus Jakarta Sans', sans-serif !important;
      font-weight: bold;
  }
  /* SECTION 1 HERO SECTION  */
  
  .text-4xl,
  .text-3xl span {
      font-family: 'Plus Jakarta Sans', sans-serif !important;
  }
  /* 2nd class: Caveat */
  
  .f-cursive span {
      font-family: 'Caveat', cursive !important;
  }
  
  #my-cursive-text {
      font-size: 28px !important;
      font-family: 'Caveat', cursive !important;
  }
  /* search trip booking  */
  
  html,
  body {
      margin: 0;
      padding: 0;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
  }
  /* =========================================
   CHEAPEST FLIGHTS
========================================= */
  
  .atl-cheap-section {
      width: 1320px;
      max-width: calc(100% - 40px);
      margin: 60px auto;
      padding: 45px 55px;
      background: #f5f8ff;
      border-radius: 24px;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
  }
  
  .atl-cheap-section h2 {
      margin: 0 0 20px;
      color: #0f172a;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      line-height: 1.25;
      font-weight: 700;
      text-transform: none;
  }
  
  .atl-question {
      margin: 0 0 5px;
      color: #222;
      font-size: 24px;
      line-height: 2.5;
  }
  
  .atl-cheap-section ul {
      margin: 0;
      padding-left: 28px;
  }
  
  .atl-cheap-section li {
      margin-bottom: 14px;
      color: #222;
      font-size: 22px;
      line-height: 1.5;
  }
  /* =========================
   EAZYFARES FOOTER
========================= */
  
  .newsletter-section {
      width: auto;
      margin: 10px 20px;
      min-height: 155px;
      padding: 20px 42px;
      box-sizing: border-box;
      display: grid;
      grid-template-columns: 38% 34% 28%;
      align-items: center;
      background: #e3f2fd;
      border: 1px solid #e5ebf3;
      border-radius: 14px;
      box-shadow: 0 2px 8px rgba(20, 60, 110, 0.06);
  }
  /* section5 tabel section */
  
  .page-section {
      background: #f6f8fc;
      padding: 40px 16px;
  }
  
  .wrap {
      max-width: 1320px;
      margin: 0 auto;
  }
  /* ---------------- TOP STAT CARDS ---------------- */
  
  .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 20px;
  }
  
  .stat-card {
      background: #ffffff;
      border-radius: 14px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
  }
  
  .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
  }
  
  .stat-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: transform 0.3s ease;
  }
  
  .stat-card:hover .stat-icon {
      transform: scale(1.1);
  }
  
  .stat-icon.green {
      background: #16a34a;
  }
  
  .stat-icon.blue {
      background: #2563eb;
  }
  
  .stat-icon.purple {
      background: #9333ea;
  }
  
  .stat-icon.orange {
      background: #f59e0b;
  }
  
  .stat-label {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
  }
  
  .stat-label.green {
      color: #16a34a;
      font-weight: bold;
  }
  
  .stat-label.blue {
      color: #2563eb;
      font-weight: bold;
  }
  
  .stat-label.purple {
      color: #9333ea;
      font-weight: bold;
  }
  
  .stat-label.orange {
      color: #f59e0b;
      font-weight: bold;
  }
  
  .stat-title {
      font-size: 0.92rem;
      font-weight: 700;
      color: #0f172a;
      margin: 2px 0;
  }
  
  .stat-sub {
      font-size: 0.78rem;
      color: #64748b;
  }
  /* ---------------- FLIGHT DETAIL TABLE PANEL ---------------- */
  
  .panel {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  }
  
  .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #e5edf9;
      padding: 16px 24px;
  }
  
  .panel-header .title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #0f172a;
  }
  
  .panel-header .title i {
      color: #2563eb;
      font-size: 0.6rem;
  }
  
  .panel-header .info {
      font-size: 0.78rem;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: 0.5px;
  }
  
  .detail-row {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 20px;
      padding: 18px 24px;
      border-bottom: 1px solid #eef1f6;
      position: relative;
      transition: background 0.25s ease, padding-left 0.25s ease;
  }
  
  .detail-row:last-child {
      border-bottom: none;
  }
  /* left accent line that grows on hover */
  
  .detail-row::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, #2563eb, #9333ea);
      transform: scaleY(0);
      transform-origin: center;
      transition: transform 0.3s ease;
  }
  
  .detail-row:hover {
      background: #f8fafc;
      padding-left: 30px;
  }
  
  .detail-row:hover::before {
      transform: scaleY(1);
  }
  
  .detail-label {
      font-weight: 700;
      font-size: 0.9rem;
      color: #0f172a;
  }
  
  .detail-value {
      font-size: 0.9rem;
      color: #334255;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
  }
  
  .pill {
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      transition: transform 0.25s ease;
  }
  
  .pill:hover {
      transform: translateY(-2px);
  }
  
  .pill.low {
      background: #dcfce7;
      color: #15803d;
  }
  
  .pill.high {
      background: #fef3c7;
      color: #b45309;
  }
  
  .chip {
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid #e2e8f0;
      font-size: 0.78rem;
      font-weight: 700;
      color: #0f172a;
      background: #fff;
      transition: all 0.25s ease;
  }
  
  .chip:hover {
      border-color: #2563eb;
      color: #2563eb;
      transform: translateY(-2px);
  }
  
  @media (max-width: 900px) {
      .stat-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      .detail-row {
          grid-template-columns: 1fr;
      }
  }
  /* ==============================
   MAIN SECTION
============================== */
  
  .atlanta-section {
      position: relative;
      min-height: 60vh;
      width: 100%;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 40px 5%;
      /* Fallback Image*/
      background-image: url("..uploads/section-two-india-bg.jpeg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }
  
  @media (max-width: 650px) {
      .atl-bg-video {
          display: none !important;
      }
  }
  /* BACKGROUND VIDEO STYLING */
  
  .atl-bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 0;
      transform: translate(-50%, -50%);
      object-fit: cover;
      pointer-events: none;
  }
  /* Dark/light overlay */
  
  .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(0, 25, 60, 0.10) 100%);
      pointer-events: none;
  }
  /* CONTENT LAYER */
  
  .section-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1450px;
      margin: 0 auto;
  }
  /* ==============================
   TITLE
============================== */
  
  .section-heading {
      margin-bottom: 70px;
  }
  
  .jump-title {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
      color: #092b64;
      font-size: clamp(16px, 3vw, 36px);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -4px;
      overflow: hidden;
  }
  
  .jump-title span {
      display: inline-block;
      opacity: 0;
      transform: translateY(80px) rotate(6deg);
  }
  
  .atlanta-section.active .jump-title span {
      animation: wordJump 0.75s cubic-bezier(.22, 1, .36, 1) forwards;
  }
  
  .atlanta-section.active .jump-title span:nth-child(1) {
      animation-delay: 0.05s;
  }
  
  .atlanta-section.active .jump-title span:nth-child(2) {
      animation-delay: 0.18s;
  }
  
  .atlanta-section.active .jump-title span:nth-child(3) {
      animation-delay: 0.31s;
  }
  
  @keyframes wordJump {
      0% {
          opacity: 0;
          transform: translateY(80px) rotate(6deg);
          filter: blur(4px);
      }
      55% {
          opacity: 1;
          transform: translateY(-14px) rotate(-2deg);
          filter: blur(0);
      }
      75% {
          transform: translateY(6px) rotate(1deg);
      }
      100% {
          opacity: 1;
          transform: translateY(0) rotate(0);
          filter: blur(0);
      }
  }
  /* ==============================
   SUB TITLE
============================== */
  
  .title-line {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 20px;
      color: #104b9b;
      font-size: clamp(15px, 1.3vw, 21px);
      font-weight: 700;
      letter-spacing: 0.3px;
  }
  
  .title-line::after {
      content: "";
      width: 70px;
      height: 2px;
      background: #104b9b;
  }
  
  .mini-plane {
      font-size: 23px;
      display: inline-block;
      transform: rotate(0deg);
  }
  /* ==============================
   CARDS
============================== */
  
  .route-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
  }
  
  .route-card {
      position: relative;
      min-height: 350px;
      padding: 10px 10px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.91);
      border: 1px solid rgba(255, 255, 255, 0.75);
      box-shadow: 0 20px 45px rgba(5, 39, 84, 0.16);
      backdrop-filter: blur(8px);
      opacity: 0;
      transform: translateY(100px) scale(0.94);
      transition: transform 0.45s ease, box-shadow 0.45s ease;
  }
  
  .atlanta-section.active .route-card {
      animation: cardReveal 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
  }
  
  .atlanta-section.active .route-card:nth-child(1) {
      animation-delay: 0.25s;
  }
  
  .atlanta-section.active .route-card:nth-child(2) {
      animation-delay: 0.38s;
  }
  
  .atlanta-section.active .route-card:nth-child(3) {
      animation-delay: 0.51s;
  }
  
  .atlanta-section.active .route-card:nth-child(4) {
      animation-delay: 0.64s;
  }
  
  @keyframes cardReveal {
      0% {
          opacity: 0;
          transform: translateY(100px) scale(0.94);
      }
      70% {
          opacity: 1;
          transform: translateY(-8px) scale(1.01);
      }
      100% {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }
  
  .route-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 28px 55px rgba(5, 39, 84, 0.25);
  }
  /* ==============================
   ICON & CARD TEXT
============================== */
  
  .card-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      border-radius: 50%;
      color: white;
      background: linear-gradient(135deg, #0b63c7, #06357f);
      font-size: 27px;
      box-shadow: 0 10px 25px rgba(10, 81, 166, 0.25);
      transition: transform 0.4s ease;
  }
  
  .route-card:hover .card-icon {
      transform: rotate(-8deg) scale(1.1);
  }
  
  .route-card h3 {
      color: #082b63;
      font-size: 24px;
      line-height: 1.3;
      font-weight: 800;
      text-transform: uppercase;
  }
  
  .card-line {
      width: 48px;
      height: 3px;
      margin: 13px 0 18px;
      background: #1266c4;
      border-radius: 20px;
  }
  
  .route-card p,
  .route-card li {
      color: #17345f;
      font-size: 16px;
      line-height: 1.7;
      font-weight: 500;
  }
  
  .route-card li {
      margin-bottom: 12px;
  }
  
  .route-card li::marker {
      color: #1165c5;
  }
  /* ==============================
   RESPONSIVE
============================== */
  
  @media (max-width: 1100px) {
      .atlanta-section {
          padding: 70px 30px;
      }
      .route-cards {
          grid-template-columns: repeat(2, 1fr);
      }
      .route-card {
          min-height: 330px;
      }
  }
  
  @media (max-width: 650px) {
      .atlanta-section {
          min-height: auto;
          padding: 70px 18px 50px;
      }
      .section-heading {
          margin-bottom: 45px;
      }
      .jump-title {
          gap: 10px;
          font-size: 45px;
          letter-spacing: -2px;
      }
      .title-line {
          font-size: 13px;
          line-height: 1.5;
      }
      .title-line::after {
          display: none;
      }
      .route-cards {
          grid-template-columns: 1fr;
          gap: 18px;
      }
      .route-card {
          min-height: auto;
          padding: 25px 22px;
      }
  }
  
  @media (prefers-reduced-motion: reduce) {
      .jump-title span,
      .route-card {
          opacity: 1;
          transform: none;
          animation: none !important;
      }
  }
  /* =================================
   LEFT IMAGE + TEXT
================================= */
  
  .newsletter-left {
      width: 100%;
      display: flex;
      align-items: center;
      min-width: 0;
  }
  
  .newsletter-image {
      width: 105px;
      height: 95px;
      object-fit: contain;
      object-position: center;
      display: block;
      flex-shrink: 0;
      margin-right: 18px;
  }
  
  .newsletter-content {
      min-width: 0;
  }
  
  .newsletter-content h5 {
      margin: 0 0 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      line-height: 1.25;
      font-weight: 700;
      color: #0f172a;
      white-space: nowrap;
  }
  
  .newsletter-content p {
      margin: 0;
      font-family: "Inter", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.55;
      color: #52627a;
  }
  /* =================================
   EMAIL FORM
================================= */
  
  .newsletter-form {
      width: 100%;
      padding: 0 25px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
  }
  
  .email-input {
      height: 58px;
      flex: 1;
      min-width: 0;
      display: flex;
      align-items: center;
      padding: 0 16px;
      background: #ffffff;
      border: 1px solid #dce3ed;
      border-right: none;
      border-radius: 11px 0 0 11px;
      box-sizing: border-box;
  }
  
  .email-input i {
      color: #69788d;
      font-size: 18px;
      margin-right: 12px;
      flex-shrink: 0;
  }
  
  .email-input input {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: 0;
      background: transparent;
      font-size: 15px;
      color: #26364e;
  }
  
  .email-input input::placeholder {
      color: #7d8898;
  }
  
  .newsletter-form button {
      height: 58px;
      padding: 0 24px;
      border: none;
      border-radius: 0 11px 11px 0;
      background: #1158df;
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
  }
  
  .newsletter-form button:hover {
      background: #064bc9;
  }
  /* =================================
   RIGHT SIDE - ALL 3 ITEMS
================================= */
  
  .newsletter-features {
      width: 100%;
      height: 78px;
      display: grid;
      grid-template-columns: 1fr 1fr 1.25fr;
      align-items: stretch;
      box-sizing: border-box;
  }
  
  .newsletter-feature {
      min-width: 0;
      padding: 0 13px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-left: 1px solid #dfe5ed;
      box-sizing: border-box;
  }
  
  .newsletter-feature i {
      color: #1557c9;
      font-size: 23px;
      margin-bottom: 6px;
  }
  
  .newsletter-feature span {
      color: #14213d;
      font-size: 13px;
      line-height: 1.35;
  }
  
  .newsletter-feature strong {
      display: block;
      font-weight: 700;
  }
  /* NO SPAM */
  
  .newsletter-feature.no-spam {
      flex-direction: row;
      gap: 10px;
      text-align: left;
  }
  
  .newsletter-feature.no-spam i {
      margin: 0;
      flex-shrink: 0;
  }
  /* =================================
   RESPONSIVE
================================= */
  
  @media (max-width: 1200px) {
      .newsletter-section {
          grid-template-columns: 37% 35% 28%;
          padding: 18px 25px;
      }
      .newsletter-image {
          width: 85px;
          height: 80px;
          margin-right: 14px;
      }
      .newsletter-content h2 {
          font-size: 18px;
      }
      .newsletter-content p {
          font-size: 13px;
      }
      .newsletter-form {
          padding: 0 15px;
      }
      .newsletter-form button {
          padding: 0 18px;
      }
      .newsletter-feature {
          padding: 0 7px;
      }
  }
  /* =================================
   TABLET
================================= */
  
  @media (max-width: 950px) {
      .newsletter-section {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 25px;
      }
      .newsletter-form {
          padding: 0;
      }
      .newsletter-features {
          width: 100%;
      }
  }
  /* =================================
   MOBILE
================================= */
  
  @media (max-width: 650px) {
      .newsletter-section {
          padding: 20px;
      }
      .newsletter-image {
          width: 75px;
          height: 70px;
      }
      .newsletter-content h2 {
          font-size: 17px;
          white-space: normal;
      }
      .newsletter-content p {
          font-size: 13px;
      }
      .newsletter-features {
          height: auto;
      }
      .newsletter-feature {
          padding: 12px 5px;
      }
      .newsletter-feature.no-spam {
          flex-direction: column;
          text-align: center;
          gap: 5px;
      }
  }
  
  .customer-reviews {
      width: 100%;
      max-width: 1320px;
      padding: 25px 0 20px;
      margin: 0 auto;
  }
  
  .customer-reviews *,
  .customer-reviews *::before,
  .customer-reviews *::after {
      box-sizing: border-box;
  }
  
  .reviews-wrapper {
      width: 96%;
      max-width: 1450px;
      margin: 0 auto;
  }
  /* =========================================
   TOP BAR
========================================= */
  
  .reviews-top {
      width: 100%;
      min-height: 155px;
      display: flex;
      align-items: center;
      background: #fff;
      border: 1px solid #e3e9f1;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(20, 50, 90, .04);
      overflow: hidden;
  }
  /* HEADING */
  
  .reviews-heading {
      width: 20%;
      padding: 20px 25px;
      border-right: 1px solid #e1e7ef;
  }
  
  .reviews-heading h3 {
      margin: 0 0 11px;
      color: #142d52;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(16px, 2.5vw, 24px);
      line-height: 1.3;
      font-weight: 700;
  }
  
  .reviews-heading p {
      margin: 0;
      color: #687991;
      font-family: "Inter", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
  }
  /* =========================================
   TABS
========================================= */
  /* =========================================
   RATING
========================================= */
  
  .rating-item {
      width: 20%;
      min-height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border-right: 1px solid #e1e7ef;
  }
  
  .rating-logo {
      width: 80%;
      object-fit: contain;
  }
  
  .rating-line {
      display: flex;
      align-items: center;
      gap: 7px;
  }
  
  .rating-line strong {
      color: #1469df;
      font-size: 22px;
      font-weight: 700;
  }
  
  .yellow-stars {
      color: #ffb000;
      font-size: 19px;
      letter-spacing: 1px;
  }
  
  span.atl-faq-question {
      font-size: 18px;
  }
  
  .green-stars {
      color: #00a878;
      font-size: 18px;
      letter-spacing: 1px;
  }
  
  .rating-item small {
      display: block;
      margin-top: 5px;
      color: #738197;
      font-size: 11px;
  }
  
  .trustpilot-rating .rating-line strong {
      color: #008b71;
  }
  /* VIEW ALL */
  
  .view-all-reviews {
      width: 12%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0869df;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
  }
  
  .view-all-reviews span {
      margin-left: 6px;
      font-size: 20px;
  }
  /* =========================================
   SLIDER
========================================= */
  
  .reviews-slider {
      position: relative;
      margin-top: 32px;
  }
  
  .reviews-viewport {
      width: 100%;
      overflow: hidden;
  }
  
  .reviews-track {
      display: flex;
      gap: 16px;
      transition: transform .55s ease;
      will-change: transform;
  }
  /* USER */
  
  .review-user {
      display: flex;
      align-items: center;
      margin-bottom: 13px;
  }
  
  .review-avatar {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      border-radius: 50%;
      color: #183b69;
      font-size: 17px;
  }
  
  .avatar-blue {
      background: #e4efff;
  }
  
  .avatar-green {
      background: #dff5e9;
  }
  
  .avatar-purple {
      background: #eee6ff;
  }
  
  .avatar-yellow {
      background: #fff0cf;
  }
  
  .review-user-info {
      min-width: 0;
      flex: 1;
  }
  
  .review-name {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #142c4f;
      font-size: 16px;
      font-weight: 700;
  }
  
  .review-name img {
      width: 19px;
      height: 19px;
      flex-shrink: 0;
      object-fit: contain;
  }
  
  .review-meta {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-top: 7px;
      color: #718096;
      font-size: 12px;
  }
  
  .card-stars {
      color: #ffb000;
      font-size: 16px;
      letter-spacing: 0;
  }
  /* CONTENT */
  
  .review-content {
      flex: 1;
      margin: 10px 0 0;
      color: #263a57;
      font-size: 15px;
      line-height: 1.65;
  }
  /* =========================================
   ARROWS
========================================= */
  
  .reviews-arrow {
      position: absolute;
      top: 50%;
      z-index: 5;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      transform: translateY(-50%);
      border: 1px solid #e3e9f0;
      border-radius: 50%;
      background: #fff;
      color: #0869df;
      font-size: 31px;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 3px 12px rgba(20, 50, 90, .08);
  }
  
  .reviews-arrow:hover {
      background: #f6faff;
  }
  
  .reviews-prev {
      left: -25px;
  }
  
  .reviews-next {
      right: -25px;
  }
  /* =========================================
   DOTS
========================================= */
  
  .reviews-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      margin-top: 28px;
  }
  
  .reviews-dot {
      width: 11px;
      height: 11px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: #dce2eb;
      cursor: pointer;
  }
  
  .reviews-dot.active {
      width: 13px;
      height: 13px;
      background: #1267df;
  }
  /* =========================================
   BOTTOM
========================================= */
  
  .reviews-bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 17px;
      margin-top: 20px;
      color: #63748c;
      font-size: 15px;
  }
  
  .reviews-bottom b {
      width: 1px;
      height: 23px;
      background: #dce2e8;
  }
  
  .reviews-bottom a {
      color: #0869df;
      text-decoration: none;
      font-weight: 600;
  }
  
  .reviews-bottom a span {
      margin-left: 5px;
      font-size: 20px;
  }
  /* =========================================
   TABLET
========================================= */
  
  @media (max-width: 1100px) {
      .reviews-top {
          flex-wrap: wrap;
          padding: 10px;
      }
      .reviews-heading {
          width: 30%;
      }
      .reviews-tabs {
          width: 70%;
      }
      .rating-item {
          width: 33.33%;
      }
      .view-all-reviews {
          width: 100%;
          padding: 15px;
      }
      .review-card {
          flex-basis: calc((100% - 16px) / 2);
      }
  }
  /* =========================================
   MOBILE
========================================= */
  
  @media (max-width: 650px) {
      .reviews-wrapper {
          width: 92%;
      }
      .reviews-top {
          display: block;
          padding: 0;
      }
      .reviews-heading,
      .reviews-tabs,
      .rating-item,
      .view-all-reviews {
          width: 100%;
          border-right: 0;
          border-bottom: 1px solid #e1e7ef;
      }
      .reviews-heading {
          text-align: center;
      }
      .reviews-heading p {
          max-width: 300px;
          margin: auto;
      }
      .reviews-tabs {
          min-height: 80px;
      }
      .rating-item {
          min-height: 90px;
      }
      .view-all-reviews {
          padding: 18px;
      }
      .review-card {
          flex-basis: 100%;
      }
      .reviews-arrow {
          display: none;
      }
      .reviews-bottom {
          flex-wrap: wrap;
          text-align: center;
      }
  }
  
  .f-cursive {
      font-family: 'Caveat', cursive;
  }
  
  .g-box {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  .p-stage {
      perspective: 1200px;
      perspective-origin: 20% 20%;
  }
  
  @keyframes flyIn {
      0% {
          opacity: 0;
          transform: translate3d(-700px, -350px, -2000px) rotateX(15deg) rotateY(25deg) rotateZ(10deg) scale(0.02);
          filter: blur(10px) brightness(0.6);
      }
      60% {
          opacity: 0.95;
          filter: blur(0px) brightness(1.05);
      }
      85% {
          transform: translate3d(20px, 10px, 60px) rotateX(-2deg) rotateY(-2deg) rotateZ(-1deg) scale(1.04);
      }
      100% {
          opacity: 1;
          transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
          filter: blur(0px) brightness(1);
      }
  }
  
  @keyframes floatP {
      0%,
      100% {
          transform: translate3d(0, 0, 0) rotateX(0deg);
      }
      50% {
          transform: translate3d(0, -12px, 15px) rotateX(1.5deg);
      }
  }
  
  .p-anim {
      transform-style: preserve-3d;
      animation: flyIn 3.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatP 6s ease-in-out infinite 3.8s;
  }
  
  @keyframes wordJump {
      0% {
          opacity: 0;
          transform: translate3d(-60px, -40px, 0) scale(0.6) rotate(-12deg);
      }
      60% {
          opacity: 1;
          transform: translate3d(10px, 12px, 0) scale(1.15) rotate(3deg);
      }
      85% {
          transform: translate3d(-4px, -4px, 0) scale(0.95) rotate(-1deg);
      }
      100% {
          opacity: 1;
          transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      }
  }
  
  .j-word {
      display: inline-block;
      opacity: 0;
      animation: wordJump 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  
  .d-1 {
      animation-delay: 0.1s;
  }
  
  .d-2 {
      animation-delay: 0.3s;
  }
  
  .d-3 {
      animation-delay: 0.5s;
  }
  
  .d-4 {
      animation-delay: 0.7s;
  }
  
  .d-5 {
      animation-delay: 0.9s;
  }
  
  .d-6 {
      animation-delay: 1.1s;
  }
  
  .d-7 {
      animation-delay: 1.3s;
  }
  /* AUTO-SLIDESHOW FOR 4 IMAGES */
  
  @keyframes autoSlider {
      0%,
      20% {
          opacity: 1;
          transform: scale(1);
      }
      25%,
      45% {
          opacity: 0;
          transform: scale(1.05);
      }
      50%,
      100% {
          opacity: 0;
          transform: scale(1);
      }
  }
  
  .slide-img-1 {
      animation: autoSlider 16s infinite 0s;
  }
  
  .slide-img-2 {
      animation: autoSlider 16s infinite 4s;
  }
  
  .slide-img-3 {
      animation: autoSlider 16s infinite 8s;
  }
  
  .slide-img-4 {
      animation: autoSlider 16s infinite 12s;
  }
  /* SECTION 2 SCROLL-TRIGGERED TITLE ANIMATION */
  
  @keyframes section2WordJump {
      0% {
          opacity: 0;
          transform: translate3d(-60px, -40px, 0) scale(0.6) rotate(-12deg);
      }
      60% {
          opacity: 1;
          transform: translate3d(10px, 12px, 0) scale(1.15) rotate(3deg);
      }
      85% {
          transform: translate3d(-4px, -4px, 0) scale(0.95) rotate(-1deg);
      }
      100% {
          opacity: 1;
          transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      }
  }
  
  .section2-word {
      display: inline-block;
      opacity: 0;
  }
  
  .section2-title.is-visible .section2-word {
      animation: section2WordJump 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  
  .section2-title .section2-d-1 {
      animation-delay: 0.1s;
  }
  
  .section2-title .section2-d-2 {
      animation-delay: 0.3s;
  }
  
  .section2-title .section2-d-3 {
      animation-delay: 0.5s;
  }
  
  .section2-title .section2-d-4 {
      animation-delay: 0.7s;
  }
  
  .section2-title .section2-d-5 {
      animation-delay: 0.9s;
  }
  
  .section2-title .section2-d-6 {
      animation-delay: 1.1s;
  }
  
  .section2-title .section2-d-7 {
      animation-delay: 1.3s;
  }
  
  @media (prefers-reduced-motion: reduce) {
      .section2-title .section2-word {
          opacity: 1;
          transform: none;
          animation: none !important;
      }
  }
  /* STYLES FOR FLIGHT DEALS SECTION */
  
  .glass-row {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  }
  
  .cyan-glow-row {
      background: rgba(255, 255, 255, 0.9);
      border: 1.5px solid #22d3ee;
      box-shadow: 0 0 15px rgba(34, 211, 238, 0.35), inset 0 0 10px rgba(34, 211, 238, 0.1);
  }
  
  .gradient-glow-row {
      background: rgba(255, 255, 255, 0.9);
      position: relative;
      border: 1.5px solid transparent;
      background-clip: padding-box;
      box-shadow: 0 0 18px rgba(217, 70, 239, 0.25), 0 0 18px rgba(34, 211, 238, 0.25);
  }
  
  .gradient-glow-row::before {
      content: '';
      position: absolute;
      top: -1.5px;
      bottom: -1.5px;
      left: -1.5px;
      right: -1.5px;
      background: linear-gradient(90deg, #ec4899, #22d3ee);
      border-radius: 1rem;
      z-index: -1;
  }
  
  .glass-row-hover {
      transition: all 0.3s ease;
  }
  
  .glass-row-hover:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  /* Card Entrance Animation */
  
  @keyframes cardPopUp {
      0% {
          opacity: 0;
          transform: translateY(24px) scale(0.96);
      }
      100% {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }
  /* Icon Gentle Float/Pulse */
  
  @keyframes iconFloat {
      0%,
      100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-3px);
      }
  }
  /* #title2,
    #title2 .j-word d-1,
    .j-word d-2,
    .j-word d-3,
    .j-word d-4 {
      color: #092b64;
    } */
  
  .info-bar-container {
      opacity: 0;
      transition: all 0.3s ease;
  }
  
  .info-bar-container.animate-bar {
      animation: cardPopUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .info-item:hover .icon-wrapper {
      animation: iconFloat 1.8s ease-in-out infinite;
  }
  /* Entrance Animation */
  
  @keyframes cardPopUp {
      0% {
          opacity: 0;
          transform: translateY(24px) scale(0.96);
      }
      100% {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }
  /* Icon Floating Motion */
  
  @keyframes iconFloat {
      0%,
      100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-3px);
      }
  }
  
  .info-bar-container {
      opacity: 0;
      transition: all 0.3s ease;
  }
  
  .info-bar-container.animate-bar {
      animation: cardPopUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .info-item:hover .icon-wrapper {
      animation: iconFloat 1.8s ease-in-out infinite;
  }
  /* =========================================================
   MAIN SECTION
========================================================= */
  
  .atl-deals-section {
      width: 100%;
      max-width: 1320px;
      margin: 40px auto 0;
      font-family: "Inter", Arial, sans-serif;
      color: #102a4d;
      box-sizing: border-box;
  }
  
  .atl-deals-section *,
  .atl-deals-section *::before,
  .atl-deals-section *::after {
      box-sizing: border-box;
  }
  /* =========================================================
   TABS
========================================================= */
  
  .atl-deals-tabs {
      width: 100%;
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid #cbd3dc;
  }
  
  .atl-deal-tab {
      position: relative;
      width: 319px;
      min-height: 58px;
      padding: 0 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 1px solid #d4dce5;
      border-bottom: 0;
      border-radius: 10px 10px 0 0;
      background: #f7f9fc;
      color: #162d4d;
      font-family: "Inter", Arial, sans-serif;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s ease;
  }
  
  .atl-deal-tab+.atl-deal-tab {
      margin-left: -1px;
  }
  
  .atl-deal-tab i {
      font-size: 23px;
      color: #102a4d;
  }
  
  .atl-deal-tab:hover {
      background: #ffffff;
  }
  
  .atl-deal-tab.active {
      background: #f8fafc;
  }
  
  .atl-deal-tab.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 4px;
      background: #ef4b16;
      border-radius: 3px 3px 0 0;
  }
  /* =========================================================
   CONTENT
========================================================= */
  
  .atl-deal-content {
      display: none;
      padding-top: 27px;
  }
  
  .atl-deal-content.active {
      display: block;
  }
  /* =========================================================
   HEADING
========================================================= */
  
  .atl-deals-heading {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      margin: 0 0 21px;
      padding: 0 10px;
  }
  
  .atl-heading-text h2 {
      margin: 0 0 6px;
      color: #0f172a;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(16px, 3vw, 36px);
      line-height: 1.3;
      font-weight: 700;
  }
  
  .atl-heading-icon {
      color: #d89b2a;
      font-size: 21px;
  }
  
  .atl-heading-text p {
      margin: 0;
      color: #52647a;
      font-size: 16px;
      line-height: 1.5;
  }
  /* =========================================================
   VIEW BUTTON
========================================================= */
  
  .atl-view-btn {
      flex-shrink: 0;
      min-height: 43px;
      padding: 9px 14px;
      border: 1px solid #102a4d;
      border-radius: 8px;
      background: #ffffff;
      color: #102a4d;
      font-family: "Inter", Arial, sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
  }
  
  .atl-view-btn i {
      margin-left: 10px;
      color: #ef4b16;
      font-size: 15px;
  }
  /* =========================================================
   CARDS GRID
========================================================= */
  
  .atl-deals-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 22px;
  }
  /* =========================================================
   DEAL CARD
========================================================= */
  
  .atl-deal-card {
      position: relative;
      width: 100%;
      min-height: 122px;
      padding: 15px 160px 14px 17px;
      background: #ffffff;
      border: 1px solid #e1e6ec;
      border-radius: 9px;
      box-shadow: 0 2px 8px rgba(20, 45, 80, .06);
      overflow: hidden;
  }
  /* =========================================================
   AIRLINE
========================================================= */
  
  .atl-airline {
      height: 25px;
      display: flex;
      align-items: center;
      font-size: 17px;
      font-weight: 700;
  }
  
  .atl-airline.emirates {
      color: #d80000;
  }
  
  .atl-airline.qatar {
      color: #721b3d;
  }
  
  .atl-airline.etihad {
      color: #a17b2e;
  }
  
  .atl-airline.turkish {
      color: #c80000;
  }
  /* =========================================================
   TRIP TYPE
========================================================= */
  
  .atl-trip {
      position: absolute;
      top: 16px;
      right: 145px;
      padding: 4px 10px;
      border-radius: 15px;
      background: #092650;
      color: #ffffff;
      font-size: 10px;
      line-height: 1;
      font-weight: 600;
  }
  /* =========================================================
   ROUTE
========================================================= */
  
  .atl-route {
      width: 100%;
      display: grid;
      grid-template-columns: 80px minmax(100px, 1fr) 80px;
      align-items: center;
      gap: 8px;
      margin-top: 7px;
  }
  
  .atl-city strong {
      display: block;
      color: #102a4d;
      font-size: 25px;
      line-height: 1.05;
      font-weight: 700;
  }
  
  .atl-city small {
      display: block;
      margin-top: 4px;
      color: #3f5064;
      font-size: 12px;
      line-height: 1.2;
  }
  /* =========================================================
   MIDDLE
========================================================= */
  
  .atl-middle {
      position: relative;
      text-align: center;
      min-width: 0;
  }
  
  .atl-middle::before,
  .atl-middle::after {
      content: "";
      position: absolute;
      top: 21px;
      width: 28%;
      height: 1px;
      background: #c1c9d2;
  }
  
  .atl-middle::before {
      left: 0;
  }
  
  .atl-middle::after {
      right: 0;
  }
  
  .atl-middle b {
      position: relative;
      z-index: 2;
      display: block;
      color: #263951;
      font-size: 12px;
      font-weight: 600;
      background: #ffffff;
  }
  
  .atl-middle span {
      display: block;
      margin-top: 7px;
      color: #25354b;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
  }
  /* =========================================================
   PRICE
========================================================= */
  
  .atl-price {
      position: absolute;
      top: 15px;
      right: 14px;
      width: 105px;
      height: 88px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid #ff7655;
      border-radius: 5px;
      background: #fffdfc;
  }
  
  .atl-price small {
      color: #ef4318;
      font-size: 13px;
      font-weight: 600;
  }
  
  .atl-price strong {
      margin-top: 4px;
      color: #e94116;
      font-size: 27px;
      line-height: 1;
      font-weight: 700;
  }
  /* =========================================================
   FEATURES
========================================================= */
  
  .atl-deal-features {
      width: 100%;
      margin-top: 18px;
      padding: 13px 10px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border: 1px solid #e0e5ed;
      border-radius: 8px;
      background: #f7f8fc;
  }
  
  .atl-deal-features>div {
      min-height: 48px;
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 0 18px;
      border-right: 1px solid #dfe4eb;
  }
  
  .atl-deal-features>div:last-child {
      border-right: 0;
  }
  
  .atl-deal-features i {
      flex-shrink: 0;
      color: #102a4d;
      font-size: 28px;
  }
  
  .atl-deal-features span {
      display: flex;
      flex-direction: column;
  }
  
  .atl-deal-features b {
      color: #1d304a;
      font-size: 12px;
      line-height: 1.3;
      font-weight: 700;
  }
  
  .atl-deal-features small {
      margin-top: 3px;
      color: #56677c;
      font-size: 11px;
      line-height: 1.3;
  }
  /* =========================================================
   TABLET
========================================================= */
  
  @media (max-width: 1100px) {
      .atl-deals-section {
          width: calc(100% - 32px);
      }
      .atl-deal-features {
          grid-template-columns: repeat(3, 1fr);
          gap: 12px 0;
      }
      .atl-deal-features>div:nth-child(3) {
          border-right: 0;
      }
  }
  /* =========================================================
   MOBILE
========================================================= */
  
  @media (max-width: 700px) {
      .atl-deals-section {
          width: calc(100% - 24px);
          margin: 25px 12px 0;
      }
      .atl-deals-tabs {
          overflow-x: auto;
          scrollbar-width: none;
      }
      .atl-deals-tabs::-webkit-scrollbar {
          display: none;
      }
      .atl-deal-tab {
          flex: 0 0 auto;
          width: auto;
          min-width: 215px;
          min-height: 52px;
          padding: 0 16px;
          font-size: 13px;
      }
      .atl-deal-tab i {
          font-size: 20px;
      }
      .atl-deals-heading {
          display: block;
          padding: 0;
          margin-bottom: 18px;
      }
      .atl-heading-text h2 {
          font-size: 21px;
      }
      .atl-heading-text p {
          font-size: 12px;
      }
      .atl-view-btn {
          margin-top: 13px;
          font-size: 12px;
      }
      .atl-deals-grid {
          grid-template-columns: 1fr;
          gap: 13px;
      }
      .atl-deal-card {
          min-height: 140px;
          padding: 13px 115px 13px 12px;
      }
      .atl-airline {
          font-size: 16px;
      }
      .atl-trip {
          top: 14px;
          right: 112px;
          font-size: 8px;
      }
      .atl-route {
          grid-template-columns: 60px minmax(70px, 1fr) 60px;
          margin-top: 10px;
      }
      .atl-city strong {
          font-size: 21px;
      }
      .atl-city small {
          font-size: 10px;
      }
      .atl-middle b {
          font-size: 10px;
      }
      .atl-middle span {
          font-size: 9px;
      }
      .atl-price {
          top: 40px;
          right: 10px;
          width: 88px;
          height: 76px;
      }
      .atl-price small {
          font-size: 11px;
      }
      .atl-price strong {
          font-size: 22px;
      }
      .atl-deal-features {
          grid-template-columns: 1fr;
          padding: 7px;
      }
      .atl-deal-features>div {
          padding: 11px;
          border-right: 0;
          border-bottom: 1px solid #dfe4eb;
      }
      .atl-deal-features>div:last-child {
          border-bottom: 0;
      }
  }
  /* =========================================================
   SMALL MOBILE
========================================================= */
  
  @media (max-width: 380px) {
      .atl-deal-tab {
          min-width: 195px;
          font-size: 12px;
      }
      .atl-deal-card {
          padding-right: 105px;
      }
      .atl-trip {
          right: 103px;
      }
      .atl-price {
          width: 82px;
          right: 8px;
      }
      .atl-price strong {
          font-size: 20px;
      }
      .atl-city strong {
          font-size: 19px;
      }
  }
  /* =========================================
   FARE TRENDS SECTION
========================================= */
  
  .atl-fare-trends {
      width: 100%;
      padding: 40px 16px;
      /* Direct Top & Bottom section spacing */
      /* Soft Background Separation  */
      background: linear-gradient(180deg, #f0f6ff 0%, #f8fafc 100%);
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
      font-family: "Inter", Arial, sans-serif;
      color: #102a4d;
      box-sizing: border-box;
  }
  /* Inner Container: Locks Content to Max 1320px */
  
  .atl-fare-container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
  }
  
  .atl-fare-trends *,
  .atl-fare-trends *::before,
  .atl-fare-trends *::after {
      box-sizing: border-box;
  }
  /* =========================================
   HEADER
========================================= */
  
  .atl-fare-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      margin-bottom: 20px;
  }
  
  .atl-fare-title {
      display: flex;
      align-items: center;
      gap: 18px;
  }
  
  .atl-fare-main-icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #07337c;
      color: #ffffff;
      font-size: 20px;
      box-shadow: 0 4px 12px rgba(7, 51, 124, .15);
  }
  
  .atl-fare-title h2 {
      margin: 0;
      color: #0f172a;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(16px, 3vw, 28px);
      line-height: 1.25;
      font-weight: 700;
  }
  
  .atl-fare-title p {
      margin: 7px 0 0;
      color: #334255;
      font-size: 17px;
  }
  /* =========================================
   TOP NOTE
========================================= */
  
  .atl-fare-note {
      min-width: 315px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 18px;
      border-radius: 9px;
      background: #f1f6ff;
      color: #172d4b;
      font-size: 16px;
      line-height: 1.45;
  }
  
  .atl-fare-note i {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 50%;
      background: #e5efff;
      color: #1765d1;
      font-size: 21px;
  }
  /* =========================================
   MAIN BOX
========================================= */
  
  .atl-fare-box {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 285px;
      gap: 25px;
      padding: 18px;
      border: 1px solid #dfe6ee;
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 3px 12px rgba(20, 45, 80, .06);
  }
  
  @media (max-width: 650px) {
      .atl-fare-trends {
          width: calc(100% - 20px);
          /* margin: 29px 10px 0; */
          padding: 40px 4px 40px 4px;
      }
      .atl-fare-container {
          padding: 0 2px;
      }
  }
  /* =========================================
   CHART AREA
========================================= */
  
  .atl-chart-area {
      min-width: 0;
  }
  
  .atl-chart-area h3 {
      margin: 0 0 10px;
      color: #102a4d;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 24px;
      font-weight: 700;
  }
  
  .atl-chart-label {
      margin: 0 0 8px;
      color: #4d6078;
      font-size: 12px;
  }
  /* =========================================
   CHART
========================================= */
  
  .atl-chart {
      width: 100%;
      display: flex;
      min-height: 350px;
  }
  
  .atl-y-axis {
      width: 52px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 7px 5px 38px 0;
      color: #263b55;
      font-size: 12px;
      text-align: right;
  }
  
  .atl-graph {
      position: relative;
      flex: 1;
      height: 310px;
      min-width: 0;
      border-left: 1px solid #d9e0e8;
      border-bottom: 1px solid #d9e0e8;
  }
  /* =========================================
   GRID
========================================= */
  
  .atl-grid-lines {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      pointer-events: none;
  }
  
  .atl-grid-lines span {
      width: 100%;
      border-top: 1px dashed #dce3ec;
  }
  /* =========================================
   HIGHLIGHT AREAS
========================================= */
  
  .atl-best-season {
      position: absolute;
      left: 29%;
      top: 88px;
      width: 20%;
      height: 198px;
      background: rgba(41, 171, 91, .06);
      border-left: 1px dashed rgba(41, 171, 91, .25);
      border-right: 1px dashed rgba(41, 171, 91, .25);
  }
  
  .atl-best-season span {
      position: absolute;
      top: -2px;
      left: 50%;
      transform: translate(-50%, -100%);
      padding: 7px 16px;
      white-space: nowrap;
      border: 1px solid #bde3c9;
      border-radius: 20px;
      background: #edf9f0;
      color: #23834a;
      font-size: 12px;
      font-weight: 700;
  }
  
  .atl-high-season {
      position: absolute;
      left: 75%;
      top: 0;
      width: 16%;
      height: 285px;
      background: rgba(238, 74, 74, .045);
      border-left: 1px dashed rgba(238, 74, 74, .25);
      border-right: 1px dashed rgba(238, 74, 74, .25);
  }
  
  .atl-high-season span {
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translate(-50%, -100%);
      padding: 7px 14px;
      white-space: nowrap;
      border: 1px solid #ffc2c2;
      border-radius: 20px;
      background: #fff0f0;
      color: #d92d2d;
      font-size: 12px;
      font-weight: 700;
  }
  /* =========================================
   SVG
========================================= */
  
  .atl-chart-svg {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: visible;
  }
  
  .atl-area-path {
      fill: url(#fareGradient);
      stroke: none;
  }
  
  .atl-line {
      fill: none;
      stroke: #1765d1;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
  }
  
  .atl-chart-svg circle {
      fill: #ffffff;
      stroke: #1765d1;
      stroke-width: 3;
  }
  /* =========================================
   VALUES
========================================= */
  
  .atl-value {
      position: absolute;
      transform: translateX(-50%);
      z-index: 5;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      white-space: nowrap;
      pointer-events: none;
  }
  /* Jan */
  
  .atl-value.v1 {
      left: 3.33%;
      top: 89px;
      color: #ef7a13;
  }
  /* Feb */
  
  .atl-value.v2 {
      left: 11.67%;
      top: 97px;
      color: #ef7a13;
  }
  /* Mar */
  
  .atl-value.v3 {
      left: 20%;
      top: 105px;
      color: #29915a;
  }
  /* Apr */
  
  .atl-value.v4 {
      left: 28.33%;
      top: 129px;
      color: #29915a;
  }
  /* May */
  
  .atl-value.v5 {
      left: 36.67%;
      top: 138px;
      color: #29915a;
  }
  /* Jun */
  
  .atl-value.v6 {
      left: 45%;
      top: 138px;
      color: #29915a;
  }
  /* Jul */
  
  .atl-value.v7 {
      left: 53.33%;
      top: 111px;
      color: #ef7a13;
  }
  /* Aug */
  
  .atl-value.v8 {
      left: 61.67%;
      top: 82px;
      color: #ef7a13;
  }
  /* Sep */
  
  .atl-value.v9 {
      left: 70%;
      top: 64px;
      color: #ef7a13;
  }
  /* Oct */
  
  .atl-value.v10 {
      left: 78.33%;
      top: 28px;
      color: #e33c25;
  }
  /* Nov */
  
  .atl-value.v11 {
      left: 86.67%;
      top: 14px;
      color: #d22e22;
  }
  /* Dec */
  
  .atl-value.v12 {
      left: 95%;
      top: 46px;
      color: #ef7a13;
  }
  /* =========================================
   MONTHS
========================================= */
  
  .atl-months {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -29px;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      color: #263b55;
      font-size: 12px;
      text-align: center;
  }
  /* =========================================
   BOTTOM NOTE
========================================= */
  
  .atl-chart-bottom {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      color: #68778b;
      font-size: 11px;
  }
  
  .atl-chart-bottom i {
      color: #183b6e;
      font-size: 15px;
  }
  /* =========================================
   RIGHT INFO
========================================= */
  
  .atl-fare-info {
      width: 100%;
      border: 1px solid #e2e7ed;
      border-radius: 10px;
      overflow: hidden;
      background: #ffffff;
  }
  
  .atl-info-card {
      min-height: 95px;
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 13px;
      border-bottom: 1px solid #e3e7ed;
  }
  
  .atl-info-card:last-child {
      border-bottom: 0;
  }
  
  .atl-info-icon {
      width: 49px;
      height: 49px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 50%;
      font-size: 22px;
  }
  
  .atl-info-card.green .atl-info-icon {
      background: #e9f8ed;
      color: #209557;
  }
  
  .atl-info-card.red .atl-info-icon {
      background: #fff0f0;
      color: #d52b2b;
  }
  
  .atl-info-card.blue .atl-info-icon {
      background: #edf4ff;
      color: #1859bc;
  }
  
  .atl-info-card.orange .atl-info-icon {
      background: #fff1df;
      color: #f27a0b;
  }
  
  .atl-info-card strong {
      display: block;
      margin-bottom: 5px;
      font-size: 16px;
      font-weight: 700;
  }
  
  .atl-info-card b {
      display: block;
      color: #172d4b;
      font-size: 16px;
  }
  
  .atl-info-card span {
      display: block;
      margin-top: 3px;
      color: #273a52;
      font-size: 13px;
  }
  
  .atl-info-card.green strong {
      color: #16834a;
  }
  
  .atl-info-card.red strong {
      color: #d32b2b;
  }
  
  .atl-info-card.blue strong {
      color: #1456b6;
  }
  
  .atl-info-card.orange strong {
      color: #e85e13;
  }
  /* =========================================
   TABLET
========================================= */
  
  @media (max-width: 1000px) {
      .atl-fare-trends {
          width: calc(100% - 30px);
          margin-left: auto;
          margin-right: auto;
      }
      .atl-fare-box {
          grid-template-columns: 1fr;
      }
      .atl-fare-info {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
      }
      .atl-info-card:nth-child(1),
      .atl-info-card:nth-child(2) {
          border-bottom: 1px solid #e3e7ed;
      }
      .atl-info-card:nth-child(1),
      .atl-info-card:nth-child(3) {
          border-right: 1px solid #e3e7ed;
      }
  }
  /* =========================================
   MOBILE
========================================= */
  
  @media (max-width: 650px) {
      .atl-fare-trends {
          width: calc(100% - 20px);
          margin: 30px 10px 0;
      }
      .atl-fare-header {
          display: block;
      }
      .atl-fare-title {
          align-items: flex-start;
      }
      .atl-fare-main-icon {
          width: 53px;
          height: 53px;
          font-size: 23px;
      }
      .atl-fare-title h2 {
          font-size: 21px;
      }
      .atl-fare-title p {
          font-size: 13px;
      }
      .atl-fare-note {
          min-width: 0;
          margin-top: 15px;
          font-size: 12px;
      }
      .atl-fare-box {
          padding: 12px;
          border-radius: 9px;
      }
      .atl-chart-area h3 {
          font-size: 17px;
      }
      .atl-chart {
          min-height: 280px;
      }
      .atl-y-axis {
          width: 42px;
          font-size: 9px;
      }
      .atl-graph {
          height: 250px;
      }
      .atl-months {
          font-size: 9px;
          bottom: -23px;
      }
      .atl-value {
          font-size: 8px;
      }
      .atl-value.v1 {
          top: 108px;
      }
      .atl-value.v2 {
          top: 117px;
      }
      .atl-value.v3 {
          top: 130px;
      }
      .atl-value.v4 {
          top: 146px;
      }
      .atl-value.v5 {
          top: 154px;
      }
      .atl-value.v6 {
          top: 154px;
      }
      .atl-value.v7 {
          top: 126px;
      }
      .atl-value.v8 {
          top: 99px;
      }
      .atl-value.v9 {
          top: 82px;
      }
      .atl-value.v10 {
          top: 46px;
      }
      .atl-value.v11 {
          top: 31px;
      }
      .atl-value.v12 {
          top: 68px;
      }
      .atl-best-season span,
      .atl-high-season span {
          font-size: 8px;
          padding: 5px 8px;
      }
      .atl-chart-bottom {
          font-size: 9px;
      }
      .atl-fare-info {
          grid-template-columns: 1fr;
      }
      .atl-info-card {
          border-right: 0 !important;
      }
      .atl-info-card:nth-child(1),
      .atl-info-card:nth-child(2),
      .atl-info-card:nth-child(3) {
          border-bottom: 1px solid #e3e7ed;
      }
  }
  /* =========================================
   ATL CITY DEALS SECTION
   UNIQUE CLASSES - NO CONFLICT
========================================= */
  
  .atl-city-deals-section {
      width: 100%;
      background: #ffffff;
      padding: 40px 16px;
      box-sizing: border-box;
      font-family: "Inter", Arial, sans-serif;
  }
  
  .atl-city-deals-inner {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 18px;
      box-sizing: border-box;
  }
  /* Heading */
  
  .atl-city-deals-title {
      margin: 0;
      padding: 0;
      color: #0b1f41;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(16px, 3vw, 36px);
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: -0.5px;
  }
  /* Red underline */
  
  .atl-city-deals-line {
      width: 64px;
      height: 4px;
      background: #e30620;
      border-radius: 4px;
      margin: 22px 0 20px;
  }
  /* Cities */
  
  .atl-city-deals-cities {
      color: #6c7890;
      font-size: 16px;
      line-height: 2;
      font-weight: 400;
      margin-bottom: 28px;
  }
  
  .atl-city-deals-cities span {
      display: inline;
  }
  
  .atl-city-deals-cities span:hover {
      color: #145dcc;
  }
  /* Grid */
  
  .atl-city-deals-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
  }
  /* Card */
  
  .atl-city-deal-card {
      min-height: 88px;
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr) 70px;
      align-items: center;
      column-gap: 10px;
      padding: 13px 14px;
      background: #ffffff;
      border: 1px solid #e6eaf0;
      border-radius: 14px;
      box-shadow: 0 2px 7px rgba(20, 45, 80, 0.08);
      text-decoration: none;
      box-sizing: border-box;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  
  .atl-city-deal-card:hover {
      transform: translateY(-2px);
      border-color: #d5dce8;
      box-shadow: 0 6px 16px rgba(20, 45, 80, 0.12);
  }
  /* Icon */
  
  .atl-city-deal-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #3b82f617;
      border-radius: 50%;
      color: #e30620;
      font-size: 19px;
      flex-shrink: 0;
  }
  
  .atl-city-deal-icon i {
      color: #3b82f6;
      font-size: 18px;
  }
  /* Deal Name */
  
  .atl-city-deal-name {
      color: #101c32;
      font-size: 16px;
      line-height: 1.55;
      font-weight: 600;
  }
  /* Price */
  
  .atl-city-deal-price {
      color: #0f1721;
      font-size: 20px;
      line-height: 1.15;
      font-weight: bolder;
      text-align: right;
      white-space: nowrap;
  }
  
  .atl-city-deal-price small {
      display: block;
      color: #94a3b8;
      font-size: 11px;
      line-height: 1.2;
      font-weight: 500;
      margin-bottom: 4px;
  }
  /* =========================================
   TABLET
========================================= */
  
  @media (max-width: 1100px) {
      .atl-city-deals-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      .atl-city-deals-title {
          font-size: 29px;
      }
  }
  /* =========================================
   MOBILE
========================================= */
  
  @media (max-width: 650px) {
      .atl-city-deals-section {
          padding: 15px 0 25px;
      }
      .atl-city-deals-inner {
          padding: 0 14px;
      }
      .atl-city-deals-title {
          font-size: 25px;
      }
      .atl-city-deals-line {
          margin: 16px 0;
      }
      .atl-city-deals-cities {
          font-size: 16px;
          line-height: 1.9;
          margin-bottom: 20px;
      }
      .atl-city-deals-grid {
          grid-template-columns: 1fr;
          gap: 12px;
      }
      .atl-city-deal-card {
          min-height: 82px;
          grid-template-columns: 44px minmax(0, 1fr) 68px;
          padding: 11px 12px;
      }
      .atl-city-deal-icon {
          width: 42px;
          height: 42px;
      }
      .atl-city-deal-name {
          font-size: 13px;
      }
      .atl-city-deal-price {
          font-size: 18px;
      }
  }
  /* =========================================
   SMALL MOBILE
========================================= */
  
  @media (max-width: 400px) {
      .atl-city-deals-title {
          font-size: 22px;
      }
      .atl-city-deal-card {
          grid-template-columns: 40px minmax(0, 1fr) 64px;
          column-gap: 8px;
      }
      .atl-city-deal-icon {
          width: 38px;
          height: 38px;
      }
      .atl-city-deal-icon i {
          font-size: 16px;
      }
      .atl-city-deal-name {
          font-size: 12px;
      }
      .atl-city-deal-price {
          font-size: 16px;
      }
      .atl-city-deal-price small {
          font-size: 10px;
      }
  }
  /* =========================================
   MAIN AIRPORT SECTION
========================================= */
  
  .atl-airport-section {
      width: 100%;
      max-width: 1320px;
      margin: 45px auto 0;
      padding: 0;
      font-family: "Inter", Arial, sans-serif;
      color: #111827;
      box-sizing: border-box;
  }
  
  .atl-airport-section *,
  .atl-airport-section *::before,
  .atl-airport-section *::after {
      box-sizing: border-box;
  }
  /* =========================================
   ATLANTA AIRPORT CONTENT
========================================= */
  
  .atl-airport-content {
      width: 100%;
  }
  
  .atl-airport-content h2 {
      margin: 0 0 28px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      line-height: 1.25;
      font-weight: 700;
      color: #0f172a;
  }
  
  .atl-airport-content h3 {
      margin: 0 0 18px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 24px;
      line-height: 1.4;
      font-weight: 700;
      color: #171717;
  }
  
  .atl-airport-content ul {
      margin: 0;
      max-width: 900px;
  }
  
  .atl-airport-content li {
      margin-bottom: 10px;
      font-size: 18px;
      line-height: 1.55;
      color: #222222;
  }
  
  .atl-airport-content li:last-child {
      margin-bottom: 0;
  }
  /* =========================================
   INDIA AIRPORT HEADING
========================================= */
  
  .atl-india-heading {
      width: 100%;
      margin-top: 32px;
      margin-bottom: 30px;
  }
  
  .atl-india-heading h2 {
      margin: 0;
      color: #0f172a;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      line-height: 1.2;
      font-weight: 700;
  }
  
  .atl-india-heading p {
      margin: 4px 0 0;
      color: #111111;
      font-family: "Inter", Arial, sans-serif;
      font-size: 34px;
      line-height: 1.35;
      font-weight: 400;
      letter-spacing: 1px;
  }
  /* =========================================
   INDIA INFORMATION BOX
========================================= */
  
  .atl-india-info {
      width: 100%;
      max-width: 920px;
      margin-bottom: 34px;
      margin-top: 20px;
      padding: 20px 28px;
      background: #f7f7f7;
      border-radius: 2px;
  }
  
  .atl-india-info h3 {
      margin: 0 0 12px;
      color: #222222;
      font-family: "Inter", Arial, sans-serif;
      font-size: 24px;
      line-height: 1.3;
      font-weight: 700;
  }
  
  .atl-india-info p {
      margin: 0;
      color: #222222;
      font-family: "Inter", Arial, sans-serif;
      font-size: 18px;
      line-height: 1.5;
  }
  /* =========================================
   OFFER TITLE
========================================= */
  
  .atl-offer-title {
      display: inline-block;
      margin: 0 0 26px;
      padding: 4px 18px;
      border-radius: 12px;
      background: #dce9f8;
      color: #0758b9;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 32px;
      line-height: 1.35;
      font-weight: 700;
      letter-spacing: 1px;
  }
  /* =========================================
   OFFER BANNER IMAGE
========================================= */
  
  .atl-offer-banner {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 4px;
  }
  
  .atl-offer-banner img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 190px;
      object-fit: cover;
      object-position: center;
      margin: 0px 0px 15px 0px;
  }
  /* =========================================
   TABLET
========================================= */
  
  @media (max-width: 1000px) {
      .atl-airport-section {
          width: calc(100% - 30px);
          margin-left: auto;
          margin-right: auto;
      }
      .atl-india-heading h2 {
          font-size: 32px;
      }
      .atl-india-heading p {
          font-size: 27px;
      }
      .atl-india-info {
          max-width: 100%;
      }
  }
  /* =========================================
   MOBILE
========================================= */
  
  @media (max-width: 767px) {
      .atl-airport-section {
          width: calc(100% - 20px);
          margin: 30px 10px 0;
      }
      .atl-airport-content h2 {
          font-size: 24px;
          margin-bottom: 20px;
      }
      .atl-airport-content h3 {
          font-size: 18px;
      }
      .atl-airport-content ul {
          padding-left: 22px;
      }
      .atl-airport-content li {
          font-size: 16px;
          line-height: 1.55;
      }
      .atl-india-heading {
          margin-top: 28px;
          margin-bottom: 22px;
      }
      .atl-india-heading h2 {
          font-size: 27px;
      }
      .atl-india-heading p {
          font-size: 22px;
          line-height: 1.35;
          letter-spacing: .5px;
      }
      .atl-india-info {
          padding: 18px 20px;
          margin-bottom: 25px;
      }
      .atl-india-info h3 {
          font-size: 20px;
      }
      .atl-india-info p {
          font-size: 15px;
          line-height: 1.55;
      }
      .atl-offer-title {
          font-size: 23px;
          padding: 4px 13px;
          margin-bottom: 18px;
      }
      .atl-offer-banner {
          width: 100%;
          border-radius: 5px;
      }
      .atl-offer-banner img {
          width: 100%;
          height: auto;
          min-height: 85px;
          object-fit: cover;
      }
  }
  /* section 7 css */
  
  .airport-info-section {
      width: 100%;
      max-width: 1320px;
      margin: 40px auto;
      /* padding: 0 20px; */
      box-sizing: border-box;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: #1e293b;
      background-color: #ffffff;
  }
  /* MAIN SECTION TITLE */
  
  .main-title {
      font-size: clamp(16px, 3vw, 28px);
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 28px;
      color: #0f172a;
      letter-spacing: -0.02em;
      position: relative;
      display: inline-block;
  }
  
  @media screen and (max-width: 480px) {
      h2.main-title {
          margin-left: 28px;
      }
  }
  
  .main-title::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 48px;
      h: 4px;
      height: 4px;
      background: #2563eb;
      border-radius: 2px;
  }
  /* MAIN CARDS */
  
  .info-card {
      width: 100%;
      box-sizing: border-box;
      background: #ffffff;
      border: 1px solid #ea580c1f;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px;
      margin-bottom: 28px;
      box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .info-card:hover {
      transform: translateY(-4px);
      border-color: #cbd5e1;
      box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.08);
  }
  
  .card-title {
      font-size: clamp(16px, 3vw, 36px);
      font-weight: 700;
      line-height: 1.4;
      color: #0f172a;
      margin-top: 0;
      margin-bottom: 16px;
      letter-spacing: -0.01em;
  }
  /* BASE PARAGRAPH TEXT - 18px & LINE HEIGHT 1.7 */
  
  .description {
      font-size: 16px;
      line-height: 1.7;
      color: #334255;
      margin: 0 0 24px 0;
      font-weight: 400;
  }
  
  .description strong {
      color: #0f172a;
      font-weight: 600;
  }
  /* STATS GRID & ITEMS */
  
  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin: 28px 0;
      width: 100%;
  }
  
  @media screen and (max-width: 768px) {
      .stat-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media screen and (max-width: 480px) {
      .stat-grid {
          grid-template-columns: 1fr;
      }
      .stat-label h4 {
          font-size: 14px;
      }
      .stat-title {
          font-size: 12px;
      }
  }
  
  .stat-item {
      background-color: #f8fafc;
      border: 1px solid #f1f5f9;
      padding: 16px 20px;
      border-radius: 12px;
      transition: all 0.2s ease;
  }
  
  .stat-item:hover {
      background-color: #f1f5f9;
      border-color: #e2e8f0;
  }
  
  .stat-label {
      display: block;
      font-size: 14px;
      line-height: 1.5;
      color: #64748b;
      margin-bottom: 6px;
      font-weight: 500;
  }
  
  .stat-value {
      display: block;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 700;
      color: #0f172a;
  }
  /* CALLOUT NOTE BOX */
  
  .note-box {
      background: linear-gradient(90deg, #f8fafc 0%, #ffffff 100%);
      border-left: 4px solid #2563eb;
      padding: 16px 22px;
      font-size: 18px;
      line-height: 1.7;
      color: #334255;
      border-radius: 0 12px 12px 0;
      margin-top: 24px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  }
  
  @media (max-width: 576px) {
      .note-box {
          font-size: 16px;
          line-height: 1.6;
      }
  }
  
  .note-box strong {
      color: #1d4ed8;
      font-weight: 700;
  }
  /* SECONDARY CARD */
  
  .india-card {
      background-color: #fafafa;
      border-color: #e2e8f0;
  }
  
  .india-card .description {
      margin-bottom: 0;
  }
  /* ANIMATIONS */
  
  .fade-in {
      opacity: 0;
      animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .delay-1 {
      animation-delay: 0.15s;
  }
  
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .banner-container {
      position: relative;
      width: 100%;
      max-width: 1320px;
      margin: 20px auto;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
      font-family: "Inter", Arial, sans-serif;
  }
  
  .banner-bg {
      width: 100%;
      height: 30vh;
      object-fit: cover;
      object-position: 50% 22%;
      display: block;
      /* reveal transition (wipe) */
      opacity: 0;
      clip-path: inset(0 100% 0 0);
      transform: scale(1.06);
      transition: opacity 0.4s ease-out, clip-path 1.8s cubic-bezier(0.65, 0, 0.35, 1), transform 1.8s cubic-bezier(0.65, 0, 0.35, 1);
  }
  
  .banner-container.reveal .banner-bg {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      transform: scale(1);
  }
  /* FLYING PLANE */
  
  .banner-plane {
      position: absolute;
      top: 30%;
      left: -20%;
      width: 8vw;
      max-width: 140px;
      min-width: 60px;
      height: auto;
      z-index: 2;
      pointer-events: none;
      opacity: 0;
  }
  
  .banner-container.reveal .banner-plane {
      animation: planeCross 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  }
  
  @keyframes planeCross {
      0% {
          opacity: 0;
          transform: translateX(0) rotate(-4deg);
      }
      12% {
          opacity: 1;
      }
      88% {
          opacity: 1;
      }
      100% {
          opacity: 0;
          transform: translateX(130vw) rotate(4deg);
      }
  }
  /* EDITABLE TEXT POSITIONING */
  
  .banner-text-content {
      position: absolute;
      top: 32%;
      left: 14%;
      color: #ffffff;
      z-index: 2;
      opacity: 0;
      transition: opacity 0.6s ease-out 1.2s;
  }
  
  .banner-container.reveal .banner-text-content {
      opacity: 1;
  }
  
  .deal-heading {
      margin: 0;
      font-size: 2.2vw;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.5px;
      color: #ffffff;
  }
  
  .deal-subheading {
      margin: 8px 0 0 0;
      font-size: 1vw;
      font-weight: 700;
      letter-spacing: 0.3px;
      color: #ffffff;
  }
  
  .yellow-text {
      color: #ffb703;
  }
  
  .price {
      font-size: 1.2vw;
      font-weight: 900;
  }
  
  span.moving-festival {
      color: #003399;
  }
  
  p.deal-subheading.moving-subtext {
      color: red;
  }
  /* ANIMATED CALL NOW BUTTON */
  
  .call-now-btn {
      position: absolute;
      right: 5%;
      bottom: 12%;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 8px;
      background-color: #ffb703;
      color: #002b49;
      text-decoration: none;
      font-weight: 900;
      font-size: 0.95vw;
      padding: 0.5vw 1.2vw;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      transition: transform 0.2s ease, opacity 0.6s ease-out 1.4s;
  }
  
  .banner-container.reveal .call-now-btn {
      opacity: 1;
      animation: pulseButton 2s infinite ease-in-out, moveUpDown 2.2s infinite ease-in-out;
  }
  
  .call-now-btn:hover {
      background-color: #ffa200;
      transform: scale(1.05);
  }
  
  .phone-circle {
      width: 1.4vw;
      height: 1.4vw;
      background-color: #002b49;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .phone-circle svg {
      width: 0.8vw;
      height: 0.8vw;
      fill: #ffb703;
  }
  /* BUTTON PULSE ANIMATION */
  
  @keyframes pulseButton {
      0% {
          box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.7);
      }
      70% {
          box-shadow: 0 0 0 12px rgba(255, 183, 3, 0);
      }
      100% {
          box-shadow: 0 0 0 0 rgba(255, 183, 3, 0);
      }
  }
  /* Small phones */
  
  @media (max-width: 480px) {
      .banner-container {
          height: 160px;
          min-height: 180px;
          max-height: 180px;
          overflow: hidden;
          border-radius: 12px;
      }
      .banner-bg {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
      }
      .banner-plane {
          max-width: 90px;
      }
      .banner-text-content {
          transform: scale(0.75);
          transform-origin: center;
      }
      .deal-heading {
          font-size: 24px;
          margin-bottom: 5px;
      }
      .deal-subheading {
          font-size: 12px;
      }
      .call-now-btn {
          transform: scale(0.75);
          transform-origin: center;
      }
  }
  /* MOBILE RESPONSIVE FALLBACK */
  
  @media (max-width: 600px) {
      .deal-heading {
          font-size: 16px;
      }
      .deal-subheading {
          font-size: 8px;
      }
      .price {
          font-size: 9px;
      }
      .call-now-btn {
          font-size: 8px;
          padding: 4px 8px;
          border-radius: 4px;
      }
      .phone-circle {
          width: 12px;
          height: 12px;
      }
      .phone-circle svg {
          width: 7px;
          height: 7px;
      }
      .banner-plane {
          width: 60px;
          top: 20%;
      }
  }
  
  .flight-info-card {
      width: 100%;
      max-width: 1320px;
      /* Updated max-width */
      margin: 40px auto;
      padding: 36px 40px;
      background: #f4f8ff;
      border: 1px solid #e0ecfb;
      border-radius: 18px;
      box-sizing: border-box;
      font-family: 'Plus Jakarta Sans', sans-serif;
      box-shadow: 0 6px 20px rgba(0, 51, 153, 0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .subtitle {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      /* Darkened text color */
      margin: 0 0 16px 0;
      line-height: 1.5;
  }
  
  .price-info,
  .tip-info {
      font-size: 16.5px;
      line-height: 1.7;
      color: #1e293b;
      /* Darkened text color for high readability */
      margin: 0 0 14px 0;
  }
  
  .price-info strong {
      color: #000000;
      /* Pure dark for highlighted values */
      font-weight: 800;
  }
  
  .flight-info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0, 51, 153, 0.08);
  }
  /* TITLE JUMP ANIMATION SETUP */
  
  .card-title {
      font-size: 24px;
      font-weight: 800;
      color: #0b57d0;
      margin: 0 0 20px 0;
      line-height: 1.4;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
  }
  
  .card-title .highlight {
      color: #003399;
  }
  
  .jump-letter {
      display: inline-block;
      opacity: 0;
      transform: translateY(25px) scale(0.8);
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  }
  /* SCROLL HIT HONE PAR JUMP TRIGGER */
  
  .animate-card .jump-letter {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
  /* WORD BY WORD DELAY */
  
  .animate-card .jump-letter:nth-child(1) {
      transition-delay: 0.05s;
  }
  
  .animate-card .jump-letter:nth-child(2) {
      transition-delay: 0.10s;
  }
  
  .animate-card .jump-letter:nth-child(3) {
      transition-delay: 0.15s;
  }
  
  .animate-card .jump-letter:nth-child(4) {
      transition-delay: 0.20s;
  }
  
  .animate-card .jump-letter:nth-child(5) {
      transition-delay: 0.25s;
  }
  
  .animate-card .jump-letter:nth-child(6) {
      transition-delay: 0.30s;
  }
  
  .animate-card .jump-letter:nth-child(7) {
      transition-delay: 0.35s;
  }
  
  .animate-card .jump-letter:nth-child(8) {
      transition-delay: 0.40s;
  }
  
  .animate-card .jump-letter:nth-child(9) {
      transition-delay: 0.45s;
  }
  /* BODY TEXT & SCROLL FADE */
  
  .card-body {
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
  }
  
  .animate-card .card-body {
      opacity: 1;
      transform: translateY(0);
  }
  
  .subtitle {
      font-size: 18px;
      font-weight: 600;
      color: #1e293b;
      margin: 0 0 16px 0;
      line-height: 1.5;
  }
  
  .price-info,
  .tip-info {
      font-size: 16px;
      line-height: 1.7;
      color: #475569;
      margin: 0 0 14px 0;
  }
  
  .price-info strong {
      color: #0f172a;
      font-weight: 700;
  }
  
  .tip-info {
      margin-bottom: 0;
  }
  
  .ez-tour-section {
      position: relative;
      width: 100%;
      max-width: 1368px;
      margin: 0 auto 20px auto;
      padding: 50px 0;
      background: linear-gradient(135deg, rgba(20, 42, 82, 0.72) 0%, rgba(32, 65, 120, 0.68) 100%), url('../uploads/section-two-india-bg.jpeg') center/cover no-repeat;
      color: #ffffff;
      box-sizing: border-box;
      border-radius: 16px;
      overflow: hidden;
  }
  /* HEADER */
  
  .ez-tour-header {
      padding: 0 40px;
      margin-bottom: 30px;
  }
  
  .ez-tour-header h2 {
      font-size: 28px;
      font-weight: 700;
      margin: 0 0 12px 0;
      color: #ffffff;
  }
  
  .ez-tour-header p {
      font-size: 16px;
      line-height: 1.6;
      color: #e2e8f0;
      max-width: 750px;
      margin: 0 0 20px 0;
  }
  
  .ez-customer-badge {
      display: flex;
      align-items: center;
      gap: 12px;
  }
  
  .ez-avatars {
      display: flex;
  }
  
  .ez-avatar-img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid #ffffff;
      margin-left: -10px;
      object-fit: cover;
  }
  
  .ez-avatars .ez-avatar-img:first-child {
      margin-left: 0;
  }
  
  .ez-badge-info h4 {
      font-size: 18px;
      font-weight: 700;
      margin: 0;
      color: #ffffff;
  }
  
  .ez-badge-info p {
      font-size: 12px;
      margin: 0;
      color: #94a3b8;
  }
  /* SLIDER CONTAINER */
  
  .ez-slider-wrapper {
      position: relative;
      padding: 10px 40px;
  }
  
  .ez-slider-track-container {
      width: 100%;
      overflow: hidden;
  }
  
  .ez-slider-track {
      display: flex;
      gap: 20px;
      padding: 10px 0;
      width: max-content;
      will-change: transform;
  }
  /* ARROWS STYLING */
  
  .ez-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #ffffff;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .ez-nav-btn:hover {
      background: rgba(255, 255, 255, 0.5);
      transform: translateY(-50%) scale(1.08);
  }
  
  .ez-nav-prev {
      left: 10px;
  }
  
  .ez-nav-next {
      right: 10px;
  }
  
  .ez-tour-card {
      width: 295px;
      height: 360px;
      flex-shrink: 0;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(15, 23, 42, 0.55);
      transition: transform 0.3s ease, border-color 0.3s ease;
      box-sizing: border-box;
  }
  
  .ez-tour-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 255, 255, 0.5);
  }
  
  .ez-card-img-wrap {
      width: 100%;
      height: 150px;
      flex-shrink: 0;
      overflow: hidden;
  }
  
  .ez-card-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }
  
  .ez-card-footer-content {
      position: relative;
      z-index: 3;
      padding: 18px;
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 0;
  }
  
  .ez-card-footer-content h3 {
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 8px 0;
      color: #ffffff;
      letter-spacing: -0.1px;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }
  
  .ez-card-footer-content p {
      font-size: 13px;
      color: #cbd5e1;
      line-height: 1.5;
      margin: 0 0 14px 0;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }
  
  .ez-card-divider {
      height: 1px;
      background-color: rgba(255, 255, 255, 0.18);
      margin-top: auto;
      margin-bottom: 14px;
      width: 100%;
  }
  
  .ez-read-more {
      font-size: 14px;
      color: #60a5fa;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
  }
  
  body {
      font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  .f-cursive {
      font-family: 'Caveat', cursive;
  }
  
  .g-box {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  .p-stage {
      perspective: 1200px;
      perspective-origin: 20% 20%;
  }
  
  @keyframes flyIn {
      0% {
          opacity: 0;
          transform: translate3d(-700px, -350px, -2000px) rotateX(15deg) rotateY(25deg) rotateZ(10deg) scale(0.02);
          filter: blur(10px) brightness(0.6);
      }
      60% {
          opacity: 0.95;
          filter: blur(0px) brightness(1.05);
      }
      85% {
          transform: translate3d(20px, 10px, 60px) rotateX(-2deg) rotateY(-2deg) rotateZ(-1deg) scale(1.04);
      }
      100% {
          opacity: 1;
          transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
          filter: blur(0px) brightness(1);
      }
  }
  
  @keyframes floatP {
      0%,
      100% {
          transform: translate3d(0, 0, 0) rotateX(0deg);
      }
      50% {
          transform: translate3d(0, -12px, 15px) rotateX(1.5deg);
      }
  }
  
  .p-anim {
      transform-style: preserve-3d;
      animation: flyIn 3.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatP 6s ease-in-out infinite 3.8s;
  }
  
  @keyframes wordJump {
      0% {
          opacity: 0;
          transform: translate3d(-60px, -40px, 0) scale(0.6) rotate(-12deg);
      }
      60% {
          opacity: 1;
          transform: translate3d(10px, 12px, 0) scale(1.15) rotate(3deg);
      }
      85% {
          transform: translate3d(-4px, -4px, 0) scale(0.95) rotate(-1deg);
      }
      100% {
          opacity: 1;
          transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      }
  }
  
  .j-word {
      display: inline-block;
      opacity: 0;
      animation: wordJump 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  
  .d-1 {
      animation-delay: 0.1s;
  }
  
  .d-2 {
      animation-delay: 0.3s;
  }
  
  .d-3 {
      animation-delay: 0.5s;
  }
  
  .d-4 {
      animation-delay: 0.7s;
  }
  
  .d-5 {
      animation-delay: 0.9s;
  }
  
  .d-6 {
      animation-delay: 1.1s;
  }
  
  .d-7 {
      animation-delay: 1.3s;
  }
  /* AUTO-SLIDESHOW FOR 4 IMAGES */
  
  @keyframes autoSlider {
      0%,
      20% {
          opacity: 1;
          transform: scale(1);
      }
      25%,
      45% {
          opacity: 0;
          transform: scale(1.05);
      }
      50%,
      100% {
          opacity: 0;
          transform: scale(1);
      }
  }
  
  .slide-img-1 {
      animation: autoSlider 16s infinite 0s;
  }
  
  .slide-img-2 {
      animation: autoSlider 16s infinite 4s;
  }
  
  .slide-img-3 {
      animation: autoSlider 16s infinite 8s;
  }
  
  .slide-img-4 {
      animation: autoSlider 16s infinite 12s;
  }
  /* SECTION 2 SCROLL-TRIGGERED TITLE ANIMATION */
  
  @keyframes section2WordJump {
      0% {
          opacity: 0;
          transform: translate3d(-60px, -40px, 0) scale(0.6) rotate(-12deg);
      }
      60% {
          opacity: 1;
          transform: translate3d(10px, 12px, 0) scale(1.15) rotate(3deg);
      }
      85% {
          transform: translate3d(-4px, -4px, 0) scale(0.95) rotate(-1deg);
      }
      100% {
          opacity: 1;
          transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      }
  }
  
  .section2-word {
      display: inline-block;
      opacity: 0;
  }
  
  .section2-title.is-visible .section2-word {
      animation: section2WordJump 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  
  .section2-title .section2-d-1 {
      animation-delay: 0.1s;
  }
  
  .section2-title .section2-d-2 {
      animation-delay: 0.3s;
  }
  
  .section2-title .section2-d-3 {
      animation-delay: 0.5s;
  }
  
  .section2-title .section2-d-4 {
      animation-delay: 0.7s;
  }
  
  .section2-title .section2-d-5 {
      animation-delay: 0.9s;
  }
  
  .section2-title .section2-d-6 {
      animation-delay: 1.1s;
  }
  
  .section2-title .section2-d-7 {
      animation-delay: 1.3s;
  }
  
  @media (prefers-reduced-motion: reduce) {
      .section2-title .section2-word {
          opacity: 1;
          transform: none;
          animation: none !important;
      }
  }
  /* STYLES FOR FLIGHT DEALS SECTION */
  
  .glass-row {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  }
  
  .cyan-glow-row {
      background: rgba(255, 255, 255, 0.9);
      border: 1.5px solid #22d3ee;
      box-shadow: 0 0 15px rgba(34, 211, 238, 0.35), inset 0 0 10px rgba(34, 211, 238, 0.1);
  }
  
  .gradient-glow-row {
      background: rgba(255, 255, 255, 0.9);
      position: relative;
      border: 1.5px solid transparent;
      background-clip: padding-box;
      box-shadow: 0 0 18px rgba(217, 70, 239, 0.25), 0 0 18px rgba(34, 211, 238, 0.25);
  }
  
  .gradient-glow-row::before {
      content: '';
      position: absolute;
      top: -1.5px;
      bottom: -1.5px;
      left: -1.5px;
      right: -1.5px;
      background: linear-gradient(90deg, #ec4899, #22d3ee);
      border-radius: 1rem;
      z-index: -1;
  }
  
  .glass-row-hover {
      transition: all 0.3s ease;
  }
  
  .glass-row-hover:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  /* Card Entrance Animation */
  
  @keyframes cardPopUp {
      0% {
          opacity: 0;
          transform: translateY(24px) scale(0.96);
      }
      100% {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }
  /* Icon Gentle Float/Pulse */
  
  @keyframes iconFloat {
      0%,
      100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-3px);
      }
  }
  
  .info-bar-container {
      opacity: 0;
      transition: all 0.3s ease;
  }
  
  .info-bar-container.animate-bar {
      animation: cardPopUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .info-item:hover .icon-wrapper {
      animation: iconFloat 1.8s ease-in-out infinite;
  }
  /* Entrance Animation */
  
  @keyframes cardPopUp {
      0% {
          opacity: 0;
          transform: translateY(24px) scale(0.96);
      }
      100% {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }
  /* Icon Floating Motion */
  
  @keyframes iconFloat {
      0%,
      100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-3px);
      }
  }
  
  .info-bar-container {
      opacity: 0;
      transition: all 0.3s ease;
  }
  
  .info-bar-container.animate-bar {
      animation: cardPopUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .info-item:hover .icon-wrapper {
      animation: iconFloat 1.8s ease-in-out infinite;
  }
  
  .vignette-pulse {
      position: absolute;
      inset: 0;
      z-index: 4;
      pointer-events: none;
      background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
      animation: vignettePulse 8s ease-in-out infinite;
  }
  
  @keyframes vignettePulse {
      0%,
      100% {
          opacity: 0.7;
      }
      50% {
          opacity: 1;
      }
  }
  
  .mist {
      position: absolute;
      bottom: 22%;
      left: 0;
      width: 160%;
      height: 18%;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(to top, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
      filter: blur(6px);
      animation: mistDrift 20s linear infinite;
  }
  
  .mist-2 {
      bottom: 28%;
      height: 12%;
      opacity: 0.6;
      animation: mistDrift 28s linear infinite reverse;
  }
  
  @keyframes mistDrift {
      0% {
          transform: translateX(-15%);
      }
      100% {
          transform: translateX(0%);
      }
  }
  
  @media (max-width: 789px) {
      .mist {
          height: 12%;
      }
      .mist-2 {
          height: 9%;
      }
  }
  /* <!-- ☁️ Distant Cloud Layer  */
  
  .cloud-far {
      position: absolute;
      z-index: 1;
      pointer-events: none;
      opacity: 0.35;
      filter: blur(1px);
  }
  
  .cloud-far-1 {
      top: 3%;
      width: 260px;
      animation: cloudFarMove 22s linear infinite;
  }
  
  .cloud-far-2 {
      top: 20%;
      width: 300px;
      animation: cloudFarMove 30s linear infinite;
  }
  
  @keyframes cloudFarMove {
      0% {
          left: -30%;
      }
      100% {
          left: 115%;
      }
  }
  
  @media (max-width: 789px) {
      .cloud-far-1 {
          width: 150px;
      }
      .cloud-far-2 {
          width: 180px;
      }
  }
  /* <!-- ☀️ Sun Rays --> */
  
  .sun-rays {
      position: absolute;
      top: -20%;
      right: -20%;
      width: 90%;
      height: 140%;
      z-index: 3;
      pointer-events: none;
      background: conic-gradient(from 200deg at 70% 40%, transparent 0deg, rgba(255, 230, 160, 0.22) 4deg, transparent 10deg, transparent 20deg, rgba(255, 230, 160, 0.18) 25deg, transparent 32deg, transparent 45deg, rgba(255, 230, 160, 0.25) 50deg, transparent 58deg, transparent 70deg, rgba(255, 230, 160, 0.15) 76deg, transparent 84deg);
      mix-blend-mode: screen;
      animation: raysDrift 14s ease-in-out infinite;
      -webkit-mask-image: radial-gradient(circle at 70% 40%, black 0%, black 40%, transparent 75%);
      mask-image: radial-gradient(circle at 70% 40%, black 0%, black 40%, transparent 75%);
  }
  
  @keyframes raysDrift {
      0%,
      100% {
          transform: rotate(0deg);
          opacity: 0.85;
          filter: brightness(1);
      }
      50% {
          transform: rotate(3deg);
          opacity: 1;
          filter: brightness(1.35);
      }
  }
  
  .sun-shine {
      position: absolute;
      top: -10%;
      right: -10%;
      width: 60%;
      height: 90%;
      z-index: 3;
      pointer-events: none;
      background: radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 235, 180, 0.15) 25%, transparent 55%);
      mix-blend-mode: screen;
      animation: shinePulse 3.2s ease-in-out infinite;
  }
  
  @keyframes shinePulse {
      0%,
      100% {
          opacity: 0.4;
          transform: scale(1);
      }
      50% {
          opacity: 0.9;
          transform: scale(1.08);
      }
  }
  /* OCEAM SWIMMER */
  
  .ocean-shimmer {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 55%;
      z-index: 2;
      pointer-events: none;
      overflow: hidden;
  }
  
  .shimmer-dot {
      position: absolute;
      border-radius: 50%;
      background: #fff6d9;
      animation: shimmerTwinkle ease-in-out infinite;
  }
  
  @keyframes shimmerTwinkle {
      0%,
      100% {
          opacity: 0;
          transform: scale(0.6);
      }
      50% {
          opacity: 0.9;
          transform: scale(1.2);
      }
  }
  /* FLOATING LIGHT PARTICLES */
  
  .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 245, 210, 0.8);
      z-index: 7;
      pointer-events: none;
      animation: particleFloat linear infinite;
  }
  
  @keyframes particleFloat {
      0% {
          transform: translateY(0) translateX(0);
          opacity: 0;
      }
      10% {
          opacity: 0.8;
      }
      90% {
          opacity: 0.6;
      }
      100% {
          transform: translateY(-140px) translateX(20px);
          opacity: 0;
      }
  }
  /* FLYING BIRDS */
  
  .bird {
      position: absolute;
      z-index: 6;
      pointer-events: none;
  }
  
  .bird svg {
      width: 100%;
      height: 100%;
      display: block;
  }
  
  .bird-1 {
      top: 12%;
      width: 26px;
      height: 14px;
      animation: birdFly1 22s linear infinite;
  }
  
  .bird-2 {
      top: 18%;
      width: 20px;
      height: 11px;
      animation: birdFly2 26s linear infinite;
  }
  
  .bird-3 {
      top: 9%;
      width: 16px;
      height: 9px;
      animation: birdFly3 30s linear infinite;
  }
  
  .bird .wing {
      animation: flap 0.6s ease-in-out infinite alternate;
      transform-origin: 12px 6px;
  }
  
  @keyframes flap {
      0% {
          transform: scaleY(1);
      }
      100% {
          transform: scaleY(0.35);
      }
  }
  
  @keyframes birdFly1 {
      0% {
          left: 92%;
          top: 14%;
          opacity: 0;
      }
      8% {
          opacity: 0.9;
      }
      50% {
          left: 74%;
          top: 9%;
      }
      92% {
          opacity: 0.9;
      }
      100% {
          left: 58%;
          top: 6%;
          opacity: 0;
      }
  }
  
  @keyframes birdFly2 {
      0% {
          left: 96%;
          top: 21%;
          opacity: 0;
      }
      10% {
          opacity: 0.85;
      }
      50% {
          left: 80%;
          top: 16%;
      }
      90% {
          opacity: 0.85;
      }
      100% {
          left: 64%;
          top: 12%;
          opacity: 0;
      }
  }
  
  @keyframes birdFly3 {
      0% {
          left: 88%;
          top: 11%;
          opacity: 0;
      }
      10% {
          opacity: 0.8;
      }
      50% {
          left: 72%;
          top: 7%;
      }
      90% {
          opacity: 0.8;
      }
      100% {
          left: 56%;
          top: 4%;
          opacity: 0;
      }
  }
  
  @media (max-width: 789px) {
      .bird-1 {
          width: 18px;
          height: 10px;
      }
      .bird-2 {
          width: 14px;
          height: 8px;
      }
      .bird-3 {
          width: 12px;
          height: 7px;
      }
  }
  /* SEARCH FORM CENTER  */
  
  .sf-card {
      position: relative;
      background-color: #e2e8f0;
      padding: 1.25rem 1.5rem;
      border-radius: 1.5rem;
      box-shadow: 0 1.25rem 1.5rem -0.3125rem rgba(0, 0, 0, 0.25);
  }
  
  .sf-tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1rem;
  }
  
  .sf-tab {
      padding: 0.5rem 1.25rem;
      border-radius: 2rem;
      border: none;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      background-color: rgba(255, 255, 255, 0.7);
      color: #334255;
  }
  
  .sf-tab.active {
      background-color: #0b0f19;
      color: #ffffff;
  }
  
  .sf-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      margin-bottom: 1rem;
  }
  
  @media (max-width: 48rem) {
      .sf-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media (max-width: 32rem) {
      .sf-grid {
          grid-template-columns: 1fr;
      }
  }
  
  .sf-box {
      background-color: #ffffff;
      border-radius: 0.875rem;
      padding: 0.625rem 0.875rem;
      display: flex;
      flex-direction: column;
  }
  
  .sf-label {
      font-size: 0.65rem;
      font-weight: 700;
      color: #3b82f6;
      text-transform: uppercase;
      margin-bottom: 0.15rem;
  }
  
  .sf-input {
      border: none;
      outline: none;
      width: 100%;
      font-size: 0.875rem;
      font-weight: 700;
      color: #0f172a;
      background: transparent;
  }
  
  .sf-btn {
      width: 100%;
      background: linear-gradient(90deg, #3b82f6 0%, #4f46e5 100%);
      color: #ffffff;
      border: none;
      padding: 0.875rem;
      border-radius: 0.875rem;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.05rem;
      cursor: pointer;
  }
  /* SECTION ONE ENEDED  */
  /* SECTION TWO START  */
  
  .font-caveat {
      font-family: 'Caveat', cursive;
  }
  /* Outer white card that wraps the image + feature boxes together */
  
  .destination-wrap {
      background: #fff;
      border-radius: 1.25rem;
      padding: 12px;
      box-shadow: 0 16px 32px -14px rgba(15, 23, 42, 0.18);
      border: 1px solid rgba(226, 232, 240, 0.8);
  }
  /* Static image card (no slideshow) */
  
  .destination-card {
      position: relative;
      border-radius: 0.85rem;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      width: 100%;
      background: #fff;
  }
  
  .destination-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
  }
  
  .destination-caption {
      position: absolute;
      left: 12px;
      bottom: 12px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 9999px;
      background: rgba(15, 23, 42, 0.55);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 11.5px;
      font-weight: 700;
  }
  
  .destination-caption svg {
      width: 13px;
      height: 13px;
  }
  
  .destination-fade {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
  }
  /* Route pill */
  
  .route-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 9999px;
      background: #fff;
      border: 1px solid #e2e8f0;
      font-size: 12px;
      font-weight: 700;
      color: #1e293b;
  }
  
  .route-pill svg {
      width: 13px;
      height: 13px;
      color: #2563eb;
  }
  /* SECTION TWO ENDED */
  /* SECTION 3 STARTED    
Current Lowest Fares: Atlanta (ATL) to India*/
  /* TELWENT CSSS USSE IN THIS SECTION  */
  /* SECTION 4 STARTED Route Information - Atlanta-to-India */
  /* TELWNWT CSS USED IN THIS SECTION  */
  /* SECTION 4 STARED Flight Guide & Key Information */
  /*  ATLANTA FLIGHT INFORMATION SECTION*/
  
  .atlanta-flight-info {
      position: relative;
      padding: 40px 16px;
      overflow: hidden;
      font-family: "Plus Jakarta Sans", sans-serif;
      background: linear-gradient( rgb(0 0 0 / 56%)), url("../uploads/sky.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }
  /* Container */
  
  .afi-container {
      position: relative;
      z-index: 2;
      max-width: 1250px;
      margin: 0 auto;
  }
  /* =========================================
   HEADING
========================================= */
  
  .afi-heading {
      max-width: 800px;
      margin: 0 auto 38px;
      text-align: center;
  }
  
  .afi-heading span {
      display: block;
      margin-bottom: 10px;
      color: #1769df;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
  }
  
  .afi-content a,
  .ez-card-content a,
  .atl-faq-answer-inner a {
      color: #2563eb;
      text-decoration: none;
      font-weight: 600;
  }
  
  .afi-content a:hover,
  .ez-card-content a:hover,
  .atl-faq-answer-inner a:hover {
      color: #1d4ed8;
      text-decoration: underline;
  }
  
  .afi-heading h2 {
      margin: 0 0 12px;
      color: #fffefe;
      font-size: 28px;
      line-height: 1.2;
      font-weight: 800;
  }
  
  .afi-heading p {
      margin: 0;
      color: #f9fafa;
      font-size: 15px;
      line-height: 1.7;
  }
  /* =========================================
   TABS
========================================= */
  
  .afi-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid #dce8f5;
      border-radius: 16px 16px 0 0;
      box-shadow: 0 10px 30px rgba(31, 83, 145, 0.08);
  }
  
  .afi-tab {
      position: relative;
      border: 0;
      border-right: 1px solid #e2ebf4;
      padding: 19px 15px;
      background: transparent;
      color: #273b60;
      font-family: inherit;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .afi-tab:last-child {
      border-right: 0;
  }
  
  .afi-tab:hover {
      background: #f2f8ff;
      color: #1769df;
  }
  
  .afi-tab.active {
      background: #1769df;
      color: #ffffff;
  }
  
  .afi-tab.active:hover {
      background: #1769df;
      color: #ffffff;
  }
  /* =========================================
   CONTENT
========================================= */
  
  .afi-content {
      display: none;
      padding: 35px;
      background: rgba(255, 255, 255, 0.97);
      border: 1px solid #dce8f5;
      border-top: 0;
      border-radius: 0 0 16px 16px;
      animation: afiFade 0.35s ease;
  }
  
  .afi-content.active {
      display: block;
  }
  /* Animation */
  
  @keyframes afiFade {
      from {
          opacity: 0;
          transform: translateY(8px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  /* =========================================
   CONTENT TEXT
========================================= */
  
  .afi-content h3 {
      margin: 0 0 12px;
      color: #10275c;
      font-size: 24px;
      line-height: 1.35;
      font-weight: 800;
  }
  
  .afi-content>p {
      max-width: 900px;
      margin: 0 0 28px;
      color: #334255;
      font-size: 16px;
      line-height: 1.8;
  }
  /* =========================================
   CONTENT COLUMNS
========================================= */
  
  .afi-columns {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
  
  .afi-columns,
  p {
      font-size: 16px;
  }
  
  .afi-columns>div {
      padding: 23px;
      background: #f7fbff;
      border: 1px solid #e1ebf5;
      border-radius: 12px;
      transition: all 0.3s ease;
  }
  
  .afi-columns>div:hover {
      border-color: #c9def5;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(30, 90, 150, 0.06);
  }
  
  .afi-columns h4 {
      margin: 0 0 9px;
      color: #0f172a;
      font-size: 18px;
      font-weight: 800;
  }
  
  .afi-columns p {
      margin: 0;
      color: #60718d;
      font-size: 16px;
      line-height: 1.75;
  }
  /* =========================================
   TABLET
========================================= */
  
  @media (max-width: 800px) {
      .atlanta-flight-info {
          padding: 60px 18px;
      }
      .afi-heading h2 {
          font-size: 24px;
      }
      .afi-columns {
          grid-template-columns: 1fr;
      }
  }
  /* =========================================
   MOBILE
========================================= */
  
  @media (max-width: 600px) {
      .atlanta-flight-info {
          padding: 50px 15px;
      }
      .afi-heading {
          margin-bottom: 28px;
      }
      .afi-heading span {
          font-size: 12px;
      }
      .afi-heading h2 {
          font-size: 24px;
      }
      .afi-heading p {
          font-size: 13px;
      }
      /* Tabs mobile */
      .afi-tabs {
          grid-template-columns: 1fr;
          border-radius: 13px 13px 0 0;
      }
      .afi-tab {
          border-right: 0;
          border-bottom: 1px solid #e2ebf4;
          padding: 16px 12px;
      }
      .afi-tab:last-child {
          border-bottom: 0;
      }
      /* Content mobile */
      .afi-content {
          padding: 25px 18px;
          border-radius: 0 0 13px 13px;
      }
      .afi-content h3 {
          font-size: 20px;
      }
      .afi-content>p {
          font-size: 13px;
      }
      .afi-columns {
          grid-template-columns: 1fr;
          gap: 14px;
      }
      .afi-columns>div {
          padding: 18px;
      }
  }
  /* TIPS TO BOOK CHEAPER FLIGHT TAB */
  
  .ez-booking-tips h4 {
      margin: 0 0 10px;
      color: #0f172a;
      font-size: 18px;
  }
  
  .ez-booking-tips p {
      color: #334255;
      line-height: 1.7;
      margin: 0 0 24px;
  }
  
  .ez-booking-tips strong {
      font-weight: 700;
  }
  /* Travel TABS CONTENT */
  
  .afi-columns h4 {
      color: #0f172a;
      margin-bottom: 12px;
      font-size: 18px;
  }
  
  .afi-columns p {
      color: #334255;
      line-height: 1.7;
      margin-bottom: 12px;
  }
  
  .afi-columns a {
      color: #007bff;
      text-decoration: none;
  }
  
  .afi-columns a:hover {
      text-decoration: underline;
  }
  /* AIRLINES AND ROUTES INFORMATION TAB */
  
  .ez-elderly-airline-heading {
      margin: 25px 0 15px;
      font-size: 24px;
      line-height: 1.3;
      color: #172b4d;
  }
  
  .ez-elderly-table-wrap {
      width: 100%;
      overflow-x: auto;
      margin: 15px 0 20px;
  }
  
  .ez-elderly-airline-table {
      width: 100%;
      min-width: 900px;
      border-collapse: collapse;
      font-size: 16px;
      line-height: 1.5;
      color: #334255;
      background: #fff;
  }
  
  .ez-elderly-airline-table th {
      padding: 12px 10px;
      text-align: left;
      font-weight: 700;
      color: #172b4d;
      background: #f2f5f9;
      border: 1px solid #d9e0e8;
  }
  
  .ez-elderly-airline-table td {
      padding: 11px 10px;
      vertical-align: top;
      border: 1px solid #d9e0e8;
  }
  
  .ez-elderly-airline-table tbody tr:nth-child(even) {
      background: #fafbfd;
  }
  
  .ez-elderly-airline-table td strong {
      font-weight: 700;
      color: #172b4d;
  }
  
  .ez-elderly-airline-note {
      margin-top: 15px;
      color: #334255;
      line-height: 1.7;
      font-size: 13px;
  }
  /* SECTION 5 STARED Business Class Flights From Atlanta To India */
  
  .flight-list-wrapper {
      max-width: 1320px;
      margin: 40px auto;
      padding: 30px 16px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  }
  
  .table-tabs-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 12px;
  }
  
  .tabs-group {
      display: flex;
      gap: 8px;
  }
  
  .t-tab-btn {
      padding: 8px 18px;
      border-radius: 20px;
      border: 1px solid #e2e8f0;
      background: #ffffff;
      color: #334255;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
  }
  
  .t-tab-btn:hover {
      background: #f1f5f9;
  }
  
  .t-tab-btn.active {
      background: #0b1a30;
      color: #ffffff;
      border-color: #0b1a30;
  }
  
  .month-badge {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      color: #1e293b;
  }
  
  .month-badge i {
      color: #2563eb;
      margin-right: 6px;
  }
  
  .table-banner-box {
      background: #f0f6ff;
      border-radius: 12px;
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      gap: 16px;
  }
  
  .banner-left-info {
      display: flex;
      align-items: center;
      gap: 14px;
  }
  
  .plane-icon-square {
      width: 42px;
      height: 42px;
      background: #2563eb;
      color: #ffffff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
  }
  
  .banner-left-info h3 {
      font-size: 24px;
      font-weight: 800;
      color: #0f172a;
      margin: 0 0 2px 0;
  }
  
  .banner-left-info p {
      font-size: 12px;
      color: #64748b;
      margin: 0;
  }
  
  .banner-right-info {
      font-size: 11px;
      color: #64748b;
      text-align: right;
      line-height: 1.4;
      flex-shrink: 0;
  }
  
  .table-columns-header {
      display: grid;
      grid-template-columns: 1.5fr 1.2fr 2fr 1fr 1fr 1.1fr;
      padding: 10px 18px;
      font-size: 11px;
      font-weight: 800;
      color: #64748b;
      letter-spacing: 0.5px;
  }
  
  .table-columns-header i {
      font-size: 10px;
      margin-left: 3px;
  }
  
  .table-rows-container {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
  }
  
  .table-row-item {
      display: grid;
      grid-template-columns: 1.5fr 1.2fr 2fr 1fr 1fr 1.1fr;
      align-items: center;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 14px 18px;
      text-decoration: none;
      color: inherit;
      transition: all 0.2s ease;
  }
  
  .table-row-item:hover {
      border-color: #06b6d4;
      box-shadow: 0 4px 14px rgba(6, 182, 212, 0.15);
      transform: translateY(-1px);
  }
  
  .r-date {
      font-weight: 800;
      font-size: 16px;
      color: #0f172a;
  }
  
  .r-date i {
      color: #2563eb;
      font-size: 12px;
      margin-right: 6px;
  }
  
  .r-date span {
      display: block;
      font-size: 14px;
      font-weight: 400;
      color: #64748b;
      margin-left: 18px;
  }
  
  .r-airline {
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.5px;
  }
  
  .r-airline.emirates {
      color: #dc2626;
  }
  
  .r-airline.etihad {
      color: #b45309;
  }
  
  .r-airline.qatar {
      color: #831843;
  }
  
  .r-airline.turkish {
      color: #b91c1c;
  }
  
  .r-route {
      font-size: 13px;
      font-weight: 800;
      color: #1e293b;
  }
  
  .r-route span {
      display: block;
      font-size: 11px;
      font-weight: 400;
      color: #64748b;
  }
  
  .r-duration {
      font-size: 12px;
      font-weight: 600;
      color: #475569;
  }
  
  .r-duration i {
      color: #64748b;
      margin-right: 4px;
  }
  
  .r-fare {
      text-align: right;
      padding-right: 8px;
  }
  
  .r-fare .f-lbl {
      font-size: 10px;
      color: #64748b;
      display: block;
  }
  
  .r-fare .f-val {
      font-size: 16px;
      font-weight: 800;
      color: #0f172a;
  }
  
  .r-btn {
      text-align: right;
  }
  
  .v-deal-btn {
      background: #2563eb;
      color: #ffffff;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background 0.2s;
  }
  
  .table-row-item:hover .v-deal-btn {
      background: #1d4ed8;
  }
  
  @media (max-width: 768px) {
      .table-columns-header {
          display: none;
      }
      .table-banner-box {
          flex-direction: column;
          align-items: flex-start;
      }
      .banner-right-info {
          text-align: left;
      }
      .table-row-item {
          grid-template-columns: 1fr 1fr;
          gap: 10px;
      }
      .r-btn {
          grid-column: span 2;
          text-align: center;
      }
      .v-deal-btn {
          width: 100%;
          justify-content: center;
      }
  }
  /* SECTION 8 Atlanta Airports Information */
  
  .airport-info p {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 25px;
      padding: 12px 0;
      margin: 0;
      border-bottom: 1px solid #eee;
  }
  
  .airport-info strong {
      font-weight: 600;
  }
  
  .airport-info span {
      line-height: 1.6;
  }
  
  @media screen and (max-width: 480px) {
      .airport-info p {
          grid-template-columns: 110px 1fr;
          gap: 12px;
          padding: 10px 0;
      }
      .airport-info span {
          line-height: 1.4;
          word-break: break-word;
      }
  }
  
  .info-card india-card fade-in delay-1,
  h4 {
      margin-bottom: 10px;
      font-weight: bold;
      font-size: 18px;
  }
  
  .info-card india-card fade-in delay-1,
  p {
      color: #334255;
      line-height: 1.7;
      margin: 0;
  }
  
  .info-card india-card fade-in delay-1,
  p strong {
      font-weight: 700;
  }
  /* CSS Fix */
  
  .airport-table-wrapper {
      width: 100%;
      overflow-x: auto;
      /* Enable horizontal scroll on mobile */
      -webkit-overflow-scrolling: touch;
      /* Smooth scroll for iOS */
  }
  
  .airport-table {
      width: 100%;
      min-width: 600px;
      /* Forces scroll bar when screen is smaller than table */
      border-collapse: collapse;
      font-size: 16px;
      color: #334255;
  }
  
  .airport-table th,
  .airport-table td {
      border-bottom: 1px solid #eee;
      padding: 12px 10px;
      /* Reduced padding for mobile fit */
      text-align: left;
      vertical-align: middle;
  }
  
  .airport-table th {
      font-weight: 600;
  }
  /* SECTION 9 STARTED HOW TO FIND CHEAPEST FLIGHT  */
  /* Main Card Container */
  
  .ez-flight-card {
      border-color: #cbd5e1;
      box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.08);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 24px 30px;
      font-family: Arial, Helvetica, sans-serif;
      box-shadow: 0 2px 10px rgba(11, 87, 208, 0.04);
      max-width: 1320px;
      margin: 0 auto 20px;
  }
  /* Title Styling */
  
  .ez-flight-card .ez-card-heading {
      color: #0f172a;
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 16px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
  }
  /* 1-Time Smooth Wave Jump Animation */
  
  .ez-flight-card .ez-jump-word {
      display: inline-block;
      /* 'infinite' hata kar '1' kar diya hai aur 'forwards' add kiya hai */
      animation: ezWordJump 1.2s ease-in-out 1 forwards;
      animation-delay: calc(var(--delay) * 0.1s);
  }
  
  @keyframes ezWordJump {
      0% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-8px);
          color: #003699;
      }
      100% {
          transform: translateY(0);
          color: #0b57d0;
          /* Wapas original blue color par fixed rukh jayega */
      }
  }
  /* Subtitle Styling */
  
  .ez-flight-card .ez-sub-heading {
      color: #334255;
      font-size: 15px;
      font-weight: 700;
      margin: 0 0 12px 0;
  }
  /* Price Text Paragraph */
  
  .ez-flight-card .ez-price-detail {
      color: #334255;
      font-size: 16px;
      line-height: 1.5;
      margin: 0 0 12px 0;
  }
  /* Bold Highlighted Price */
  
  .ez-flight-card .ez-highlight-price {
      color: #1e293b;
      font-weight: 700;
  }
  /* Bottom Tip Paragraph */
  
  .ez-flight-card .ez-tip-detail {
      color: #334255;
      font-size: 16px;
      line-height: 1.5;
      margin: 0;
  }
  /* Baggage Information content */
  
  .ez-card-content h3 {
      /* margin-bottom: 15px; */
      color: #0b57d0;
      margin-top: 15px;
      font-weight: bold;
      font-size: 24px;
  }
  
  .ez-card-content h4 {
      margin-top: 18px;
      margin-bottom: 8px;
      color: #0f172a;
      font-weight: bold;
      font-size: 18px;
  }
  
  .ez-card-content p {
      color: #334255;
      line-height: 1.7;
      margin-bottom: 10px;
  }
  
  .ez-card-content a {
      color: #007bff;
      text-decoration: none;
  }
  
  .ez-card-content a:hover {
      text-decoration: underline;
  }
  /* India Climate Information  */
  
  .ez-india-info {
      background: #f3f8ff;
      border: 1px solid #d6dee9;
      padding: 30px 35px;
      color: #334255;
      line-height: 1.7;
      border-radius: 10px;
  }
  
  .ez-india-info h3 {
      margin: 0 0 15px;
      color: #0b57d0;
      font-size: 24px;
      line-height: 1.3;
  }
  
  .ez-india-info>p {
      margin: 0 0 25px;
  }
  
  .ez-india-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
  }
  
  .ez-india-column h4 {
      margin: 0 0 10px;
      color: #0f172a;
      font-size: 18px;
      line-height: 1.4;
  }
  
  .ez-india-column p {
      margin: 0 0 20px;
  }
  /* Mobile */
  
  @media (max-width: 767px) {
      .ez-india-info {
          padding: 25px 20px;
      }
      .ez-india-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  }
  
  @media (max-width: 576px) {
      .ez-card-content h3,
      #title2,
      .afi-heading h2,
      .newsletter-content h5 {
          font-weight: bold;
          font-size: 24px;
      }
  }
  
  @media (max-width: 480px) {
      .newsletter-content h5 {
          font-weight: bold;
          font-size: 12px;
      }
  }
  /* SECTION 10 FREQUENTLY ASKED QESTION  */
  
  .atl-faq-section {
      background: linear-gradient(180deg, rgba(11, 23, 54, 0.35) 0%, rgba(15, 23, 42, 0.45) 100%), url('../uploads/FAQ-background.jpeg') center/cover no-repeat;
      padding: 40px 16px;
      box-sizing: border-box;
  }
  
  .atl-faq-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }
  
  .atl-faq-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .atl-faq-header {
      text-align: center;
      margin-bottom: 50px;
  }
  
  .atl-faq-header h2 {
      color: #ffffff;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
  }
  
  .atl-faq-header p {
      color: #e2e8f0;
      font-size: 15px;
      max-width: 650px;
      margin: 0 auto 24px auto;
      line-height: 1.5;
  }
  /* Column stretch fix */
  
  .atl-faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: start;
  }
  
  @media (max-width: 900px) {
      .atl-faq-grid {
          grid-template-columns: 1fr;
      }
  }
  
  .atl-faq-column {
      background: rgba(255, 255, 255, 0.45);
      border: none;
      border-top: 4px solid #2563eb;
      border-radius: 14px;
      padding: 35px 18px 18px 18px;
      position: relative;
  }
  
  .atl-faq-column-title {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #2563eb;
      color: #ffffff;
      padding: 5px 24px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      white-space: nowrap;
  }
  
  .atl-faq-item {
      background: #ffffff;
      border-radius: 10px;
      margin-bottom: 12px;
      border: 1.5px solid #e2e8f0;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .atl-faq-item:hover {
      transform: translateY(-4px) scale(1.015);
      border-color: #2563eb;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
  }
  
  .atl-faq-btn {
      width: 100%;
      background: none;
      border: none;
      padding: 14px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      text-align: left;
  }
  
  .atl-faq-question {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-right: 10px;
      pointer-events: none;
  }
  
  .atl-faq-question h4 {
      font-size: 18px;
      font-weight: 600;
      color: #0f172a;
      line-height: 1.4;
  }
  
  .atl-faq-question i.fa-plane {
      color: #3b82f6;
      font-size: 20px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
  }
  
  .atl-faq-item:hover .atl-faq-question i.fa-plane {
      transform: rotate(15deg) scale(1.15);
      color: #2563eb;
  }
  
  .atl-faq-arrow-circle {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background-color: #0b132b;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: bold;
      flex-shrink: 0;
      transition: background-color 0.3s ease;
      pointer-events: none;
  }
  
  .atl-faq-item:hover .atl-faq-arrow-circle {
      background-color: #2563eb;
  }
  
  .atl-faq-item.active {
      border-color: #2563eb;
  }
  
  .atl-faq-item.active .atl-faq-arrow-circle {
      background-color: #2563eb;
  }
  
  .atl-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease-in-out;
      padding: 0 18px;
  }
  
  .atl-faq-answer-inner {
      padding: 12px 0 20px 0;
      border-top: 1px dashed #e2e8f0;
  }
  
  .atl-faq-answer p {
      color: #334255;
      font-size: 13.5px;
      line-height: 1.5;
  }
  /* SECTION 11 STARTED Top Flight Deals to Major Indian Cities  */
  
  .top-deals {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      margin-bottom: 20px;
  }
  
  .top-deals-title {
      display: flex;
      align-items: center;
      gap: 18px;
  }
  
  .top-deals-title h2 {
      margin: 0;
      color: #102a4d;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(16px, 3vw, 28px);
      line-height: 1.25;
      font-weight: 700;
  }
  
  .top-deals-title p {
      margin: 7px 0 0;
      color: #334255;
      font-size: 17px;
  }
  
  .top-deals-main-icon {
      width: 68px;
      height: 68px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #07337c;
      color: #ffffff;
      font-size: 31px;
      box-shadow: 0 4px 12px rgba(7, 51, 124, .15);
  }
  /* Tablet */
  
  @media (max-width: 1024px) {
      .top-deals {
          gap: 18px;
          margin-bottom: 18px;
      }
      .top-deals-title {
          gap: 14px;
      }
      .top-deals-title h2 {
          font-size: clamp(18px, 3vw, 26px);
      }
      .top-deals-title p {
          font-size: 15px;
          margin-top: 6px;
      }
      .top-deals-main-icon {
          width: 58px;
          height: 58px;
          font-size: 27px;
      }
  }
  /* Mobile */
  
  @media (max-width: 767px) {
      .top-deals {
          flex-direction: column;
          align-items: flex-start;
          gap: 15px;
          margin-bottom: 18px;
      }
      .top-deals-title {
          gap: 12px;
          width: 100%;
      }
      .top-deals-title h2 {
          font-size: 24px;
          line-height: 1.25;
      }
      .top-deals-title p {
          font-size: 16px;
          line-height: 1.5;
          margin-top: 5px;
      }
      .top-deals-main-icon {
          width: 52px;
          height: 52px;
          font-size: 24px;
      }
  }
  /* Small Mobile */
  
  @media (max-width: 480px) {
      .top-deals {
          gap: 12px;
      }
      .top-deals-title {
          gap: 10px;
      }
      .top-deals-title h2 {
          font-size: 20px;
      }
      .top-deals-title p {
          font-size: 13px;
      }
      .top-deals-main-icon {
          width: 46px;
          height: 46px;
          font-size: 21px;
      }
  }
  /* SECTION 12 STARTED Our Blogs  */
  /* SECTION 13 Our Happy Clients  */
  /* =====================================================
   MAIN SECTION
===================================================== */
  
  .reviews-section {
      width: 100%;
      max-width: 1268px;
      margin: 40px auto;
      padding: 0 0 20px;
  }
  /* =====================================================
   CENTER HEADING
===================================================== */
  
  .reviews-header {
      text-align: center;
      margin-bottom: 32px;
  }
  
  .reviews-header h2 {
      font-size: 28px;
      line-height: 30px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
  }
  
  .reviews-header p {
      font-size: 13px;
      line-height: 19px;
      color: #71829d;
      margin-bottom: 24px;
  }
  /* =====================================================
   REVIEW TABS
===================================================== */
  
  .review-tabs {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 12px;
  }
  /* TAB */
  
  .review-tab {
      width: 250px;
      min-height: 64px;
      border: 1px solid #e0e8f1;
      border-radius: 10px;
      background: #ffffff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      padding: 10px 18px;
      transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
      box-shadow: 0 2px 8px rgba(35, 60, 90, 0.04);
  }
  
  .review-tab:hover {
      background: #f9fcff;
      border-color: #cfe2f7;
  }
  
  .review-tab.active {
      background: #f5faff;
      border-color: #0878e8;
      box-shadow: 0 4px 14px rgba(8, 120, 232, 0.09);
  }
  /* =====================================================
   GOOGLE LOGO
===================================================== */
  
  .google-logo {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -1px;
      white-space: nowrap;
  }
  
  .g-blue {
      color: #4285f4;
  }
  
  .g-red {
      color: #ea4335;
  }
  
  .g-yellow {
      color: #fbbc05;
  }
  
  .g-green {
      color: #34a853;
  }
  /* =====================================================
   TRUSTPILOT LOGO
===================================================== */
  
  .trustpilot-logo {
      display: flex;
      align-items: center;
      color: #00b67a;
      font-size: 16px;
      font-weight: 700;
      white-space: nowrap;
  }
  
  .trustpilot-logo span {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #00b67a;
      color: #ffffff;
      font-size: 11px;
      margin-right: 5px;
  }
  /* =====================================================
   TAB RATING
===================================================== */
  
  .tab-rating {
      text-align: left;
  }
  
  .tab-rating-top {
      display: flex;
      align-items: center;
      gap: 4px;
  }
  
  .tab-rating .stars {
      color: #ffb400;
      font-size: 13px;
      letter-spacing: 1px;
  }
  
  .tab-rating .rating-number {
      color: #536782;
      font-size: 11px;
      font-weight: 700;
  }
  
  .tab-rating small {
      display: block;
      font-size: 9px;
      line-height: 12px;
      color: #8491a5;
      margin-top: 2px;
  }
  /* =====================================================
   SLIDER WRAPPER
===================================================== */
  
  .reviews-slider-wrapper {
      position: relative;
      width: 100%;
  }
  /* =====================================================
   SLIDER
===================================================== */
  
  .reviews-slider {
      width: 100%;
      overflow: hidden;
  }
  
  .reviews-track {
      display: flex;
      gap: 16px;
      width: max-content;
      transition: transform .55s ease;
      will-change: transform;
  }
  /* =====================================================
   REVIEW CARD
===================================================== */
  
  .review-card {
      flex: 0 0 calc((1268px - 48px) / 4);
      height: 250px;
      border: 1px solid #e0e8f1;
      border-radius: 12px;
      background: #ffffff;
      padding: 26px 20px 20px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 3px rgba(27, 53, 82, 0.02);
      transition: box-shadow .25s ease, transform .25s ease;
  }
  
  .review-card:hover {
      box-shadow: 0 6px 18px rgba(35, 60, 90, 0.07);
      transform: translateY(-2px);
  }
  /* =====================================================
   CLIENT INFO
===================================================== */
  
  .client-info {
      display: flex;
      align-items: center;
      gap: 15px;
  }
  /* =====================================================
   AVATAR
===================================================== */
  
  .client-avatar {
      width: 53px;
      height: 53px;
      min-width: 53px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 400;
      color: #31537c;
  }
  
  .avatar-blue {
      background: #e5efff;
  }
  
  .avatar-green {
      background: #e1f5eb;
  }
  
  .avatar-purple {
      background: #eee5ff;
  }
  
  .avatar-yellow {
      background: #fff0ce;
  }
  
  .avatar-pink {
      background: #ffe8ee;
  }
  /* =====================================================
   CLIENT DETAILS
===================================================== */
  
  .client-details {
      min-width: 0;
  }
  
  .client-name {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      line-height: 19px;
      font-weight: 700;
      color: #253957;
      margin-bottom: 7px;
  }
  
  .verified {
      color: #a7b4c6;
      font-size: 9px;
      font-weight: 400;
  }
  /* =====================================================
   CLIENT RATING
===================================================== */
  
  .client-rating {
      display: flex;
      align-items: center;
      gap: 7px;
  }
  
  .client-rating .stars {
      color: #ffb400;
      font-size: 16px;
      line-height: 14px;
      letter-spacing: 0;
  }
  
  .review-date {
      color: #71829d;
      font-size: 11px;
      white-space: nowrap;
  }
  /* =====================================================
   REVIEW TEXT
===================================================== */
  
  .review-text {
      margin-top: 25px;
      font-size: 15px;
      line-height: 25px;
      color: #3c506e;
  }
  /* HELPFUL */
  
  .helpful {
      display: flex;
      align-items: center;
      gap: 17px;
      color: #71829d;
      font-size: 13px;
  }
  
  .heart {
      color: #7187a4;
      font-size: 21px;
      line-height: 1;
      font-family: Arial, sans-serif;
  }
  /* DIVIDER */
  
  .footer-divider {
      width: 1px;
      height: 27px;
      background: #d8e0ea;
      margin: 0 19px;
  }
  
  @media (min-width: 1101px) and (max-width: 1250px) {
      h2.main-title {
          margin-left: 30px;
      }
  }
  /* ONLY FOR 1194px RANGE */
  /* REPLY */
  
  .reply {
      color: #0074e8;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
  }
  /* =====================================================
   SLIDER ARROWS
===================================================== */
  
  .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid #e5ebf3;
      background: #ffffff;
      box-shadow: 0 4px 14px rgba(36, 65, 100, 0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0878e8;
      font-size: 37px;
      line-height: 1;
      cursor: pointer;
      z-index: 20;
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  
  .slider-arrow:hover {
      background: #f5faff;
      transform: translateY(-50%) scale(1.06);
      box-shadow: 0 5px 16px rgba(8, 120, 232, 0.15);
  }
  
  .arrow-left {
      left: -25px;
  }
  
  .arrow-right {
      right: -25px;
  }
  /* =====================================================
   BOTTOM TEXT
===================================================== */
  
  .reviews-bottom {
      margin-top: 76px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 17px;
      color: #71829d;
      font-size: 16px;
  }
  
  .bottom-divider {
      width: 1px;
      height: 22px;
      background: #d9e1eb;
  }
  
  .all-reviews {
      color: #0074e8;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
  }
  
  .all-reviews span {
      font-size: 18px;
      margin-left: 3px;
  }
  /* =====================================================
   TABLET
===================================================== */
  
  @media (max-width: 1300px) {
      .reviews-section {
          max-width: calc(100% - 40px);
      }
      .review-card {
          flex-basis: calc((100vw - 40px - 48px) / 4);
      }
  }
  /* =====================================================
   3 CARDS
===================================================== */
  
  @media (max-width: 1050px) {
      .review-card {
          flex-basis: calc((100vw - 40px - 32px) / 3);
      }
  }
  /* =====================================================
   2 CARDS
===================================================== */
  
  @media (max-width: 780px) {
      .reviews-section {
          max-width: calc(100% - 30px);
      }
      .review-card {
          flex-basis: calc((100vw - 30px - 16px) / 2);
      }
      .slider-arrow {
          width: 42px;
          height: 42px;
          font-size: 31px;
      }
      .arrow-left {
          left: -12px;
      }
      .arrow-right {
          right: -12px;
      }
  }
  /* =====================================================
   MOBILE
===================================================== */
  
  @media (max-width: 560px) {
      .reviews-section {
          max-width: 100%;
          padding: 0 15px 20px;
          margin-top: 25px;
      }
      .reviews-header {
          margin-bottom: 25px;
      }
      .reviews-header h2 {
          font-size: 21px;
          line-height: 27px;
      }
      .reviews-header p {
          font-size: 12px;
          line-height: 17px;
          padding: 0 20px;
          margin-bottom: 18px;
      }
      /* MOBILE TABS */
      .review-tabs {
          gap: 8px;
      }
      .review-tab {
          width: calc(50% - 4px);
          min-height: 60px;
          padding: 8px 6px;
          gap: 7px;
      }
      .google-logo {
          font-size: 16px;
      }
      .trustpilot-logo {
          font-size: 11px;
      }
      .trustpilot-logo span {
          width: 16px;
          height: 16px;
          font-size: 10px;
      }
      .tab-rating .stars {
          font-size: 9px;
          letter-spacing: 0;
      }
      .tab-rating .rating-number {
          font-size: 10px;
      }
      .tab-rating small {
          font-size: 8px;
      }
      /* ONE CARD */
      .review-card {
          flex-basis: calc(100vw - 30px);
          /* height: 320px; */
          padding: 24px 18px 18px;
      }
      /* ARROWS */
      .slider-arrow {
          width: 40px;
          height: 40px;
          font-size: 28px;
      }
      .arrow-left {
          left: -5px;
      }
      .arrow-right {
          right: -5px;
      }
      /* BOTTOM */
      .reviews-bottom {
          margin-top: 45px;
          font-size: 11px;
          gap: 10px;
      }
      .all-reviews {
          font-size: 11px;
      }
  }
  /* =====================================================
   VERY SMALL MOBILE
===================================================== */
  
  @media (max-width: 380px) {
      .review-tab {
          flex-direction: column;
          gap: 2px;
          padding: 7px 3px;
      }
      .tab-rating {
          text-align: center;
      }
      .tab-rating small {
          display: none;
      }
      .review-card {
          height: 325px;
      }
  }
  /* SECTION 14 Stay Updated with the Best Flight Deals  */