/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  scroll-behavior: smooth;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #fff;
  border-bottom: 3px solid #cab331;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #7ab300;
  text-transform: lowercase;
}

.logo span {
  color: #555;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  border-bottom: 2px solid #2a00b3;
  padding-bottom: 4px;
}

/* ---------- HERO SECTION ---------- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 40px 60px;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-left {
  flex: 2;
  position: relative;
}

.hero-left img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  max-width: 90%;
}

.hero-text .category {
  color: #ffcc00;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: 24px;
  margin: 8px 0;
}

.hero-text .author {
  font-size: 14px;
  color: #ddd;
}

/* ---------- HERO RIGHT ---------- */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-right .card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-right .card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
}

.overlay h2 {
  font-size: 18px;
  line-height: 1.3;
}

/* ---------- MAIN CONTAINER ---------- */
.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  gap: 30px;
}


       .carousel-container {
            max-width: 1000px;
            width: 100%;
            position: relative;
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            height: 100%;
            position: relative;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: white;
        }

        .slide-category {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #ffa500;
            margin-bottom: 10px;
        }

        .slide-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .slide-author {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Navigation Arrows */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: 20px;
        }

        .carousel-nav.next {
            right: 20px;
        }

        /* Dots Indicator */
        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: #ffa500;
            width: 28px;
            border-radius: 5px;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            .carousel-wrapper {
                height: 300px;
            }

            .slide-title {
                font-size: 20px;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .carousel-nav.prev {
                left: 10px;
            }

            .carousel-nav.next {
                right: 10px;
            }
        }

/* ---------- TOURISM SECTION ---------- */
.tourism {
  flex: 3;
}

.tourism h2 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.underline {
  width: 80px;
  height: 3px;
  background: #000;
  margin: 8px 0 20px;
}

.cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.tourism .card {
  width: 31%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.tourism .card:hover {
  transform: translateY(-5px);
}

.tourism .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tourism .card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px;
}

.tourism .card .date {
  color: #666;
  font-size: 14px;
  margin: 0 10px;
}

.tourism .card .desc {
  font-size: 15px;
  color: #444;
  margin: 10px;
  line-height: 1.5;
}

/* ---------- EXTRA BLOGS (MONSOON SECTION) ---------- */
.blog-section {
  flex: 3;
}

.blog-section .card {
  margin-bottom: 30px;
}

.blog-section .card img {
  width: 100%;
  border-radius: 5px;
  height: 250px;
  object-fit: cover;
}

.blog-section .card h3 {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 600;
}

.blog-section .date {
  color: #666;
  font-size: 14px;
  margin: 5px 0;
}

.blog-section .desc {
  color: #444;
  font-size: 15px;
}

.load-btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
  transition: 0.3s ease;
}

.load-btn:hover {
  background: #d32f2f;
}

.subheading {
  margin-top: 40px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
}

/* ---------- SIDEBAR ---------- */
.sidebar {
  flex: 1.2;
  background: #8a32ef;
  color: #fff;
  padding: 25px;
  border-radius: 5px;
}

/* Bus Booking */
.sidebar h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.sidebar p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.search-box h4 {
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
}

.search-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 3px;
  outline: none;
}

.search-box button {
  width: 100%;
  background: #8b0071;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 3px;
}

.search-box button:hover {
  background: #580070;
}

/* ---------- SOCIAL ICONS ---------- */
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin: 25px 0;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 22px;
  color: white;
  border-radius: 3px;
  background: #9a2fd3;
  cursor: pointer;
  transition: background 0.3s;
}

.icon:hover {
  background: #b300a7;
}

/* ---------- POPULAR SECTION ---------- */
.popular-section h3 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}

.popular-card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.popular-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.popular-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.6);
}


body {
  font-family: "Open Sans", sans-serif;
  background-color: #f8f8f8;
  margin: 0;
  padding: 0;
}

.destination-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 3px solid #000;
  display: inline-block;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* Layout */
.content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 25px;
}

/* Main Article */
.main-article {
  display: flex;
  flex-direction: column;
}

.main-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
}

.main-article h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0 5px;
}

.author {
  font-size: 14px;
  color: #555;
}

/* Related Articles */
.related-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.article-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.article-item:hover {
  transform: translateX(5px);
}

.article-item img {
  width: 80px;
  height: 60px;
  border-radius: 3px;
  object-fit: cover;
}

.article-item h4 {
  font-size: 15px;
  margin: 0;
  color: #111;
}

.article-item p {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

/* Sidebar Ad */
.sidebar {
  text-align: center;
}

.ad-banner {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  .sidebar {
    margin-top: 30px;
  }
}


/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  background: #b30000;
  color: #ffffff;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 30px;
  }

  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-right .card {
    flex: 1 1 48%;
  }

  .container {
    flex-direction: column;
    padding: 20px;
  }

  .tourism .card {
    width: 100%;
  }

  .sidebar {
    order: -1;
  }

  header {
    padding: 15px 30px;
  }

  .popular-card img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  nav ul {
    display: none;
  }

  .hero-text h1 {
    font-size: 18px;
  }

  .overlay h2 {
    font-size: 16px;
  }

  .sidebar {
    margin-top: 30px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
  padding: 2rem;
}

.road-trips h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.underline {
  width: 120px;
  height: 3px;
  background: #000;
  margin-bottom: 2rem;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem;
  line-height: 1.4;
}

.card .date {
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 1rem;
}

.card .excerpt {
  font-size: 0.9rem;
  color: #444;
  margin: 0.7rem 1rem 1.2rem;
  line-height: 1.6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #222;
}

.blog-section {
  padding: 50px 80px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.blog-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1rem 1rem 0.5rem;
  line-height: 1.4;
}

.blog-card .date {
  font-size: 0.9rem;
  color: #666;
  margin: 0 1rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card .desc {
  font-size: 0.92rem;
  color: #333;
  margin: 0 1rem 1.5rem;
  line-height: 1.5;
}

/* Load More Button */
.load-btn {
  display: block;
  margin: 2.5rem auto 0;
  background: #000;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.load-btn:hover {
  background: #7300e6;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 40px 20px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #222;
}

/* Section Title */
.top-attractions {
  padding: 60px 80px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.underline {
  width: 70px;
  height: 2px;
  background-color: #000;
  margin-bottom: 30px;
}

/* Grid Layout */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Card Styles */
.blog-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem 1rem 0.5rem;
  line-height: 1.4;
}

.blog-card .date {
  font-size: 0.9rem;
  color: #555;
  margin: 0 1rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card .desc {
  font-size: 0.92rem;
  color: #333;
  margin: 0 1rem 1.5rem;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .top-attractions {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .blog-card img {
    height: 200px;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #222;
}

/* Section Title */
.top-attractions {
  padding: 60px 80px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-line {
  width: 90px;
  height: 2px;
  background-color: #000;
  margin-bottom: 30px;
}

/* Card Layout */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem 1rem 0.5rem;
  line-height: 1.4;
}

.date {
  font-size: 0.9rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 1rem 0.6rem;
}

.desc {
  font-size: 0.92rem;
  color: #333;
  margin: 0 1rem 1.5rem;
  line-height: 1.5;
}

/* Load More Button */
#loadMoreBtn {
  display: block;
  margin: 30px auto 0;
  padding: 12px 28px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: 0.3s;
  border-radius: 2px;
}

#loadMoreBtn:hover {
  background-color: #333;
}

/* Hidden Cards */
.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .top-attractions {
    padding: 40px 40px;
  }
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 200px;
  }

  #loadMoreBtn {
    padding: 10px 20px;
  }
}
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 40px;
  background-color: #fff;
  color: #111;
}

.travel-section {
  max-width: 1150px;
  margin: auto;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 3px solid #000;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 4px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 15px;
  line-height: 1.4;
}

.card .date {
  font-size: 0.8rem;
  color: #777;
  margin: 0 15px;
  text-transform: uppercase;
}

.card .excerpt {
  font-size: 0.9rem;
  color: #333;
  margin: 10px 15px 20px;
  line-height: 1.5;
}

.hidden {
  display: none;
}

.load-btn {
  display: block;
  margin: 30px auto 0;
  padding: 12px 25px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.load-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 1.2rem;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

body {
  background: #fff;
  color: #111;
  line-height: 1.6;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 3px solid #000;
  display: inline-block;
}

.seasonal-content {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

/* LEFT CONTENT */
.seasonal-left {
  flex: 2.5;
}

.main-article img {
  width: 100%;
  border-radius: 4px;
  height: auto;
  margin-bottom: 10px;
}

.main-article h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.author {
  font-size: 0.9rem;
  color: #555;
}

.related-articles {
  margin-top: 15px;
}

.small-article {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.small-article img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.small-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.date {
  display: block;
  font-size: 0.85rem;
  color: #555;
}

/* SIDEBAR */
.sidebar {
  flex: 1;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
}

.sidebar h3 {
  margin-bottom: 10px;
  border-bottom: 2px solid #000000;
  display: inline-block;
  padding-bottom: 5px;
}

.newsletter input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
}

.newsletter button {
  background: #00d486;
  color: rgb(255, 255, 255);
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
}

.newsletter button:hover {
  background: #0041b1;
}

.latest-video {
  margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .seasonal-content {
    flex-direction: column;
  }

  .sidebar {
    order: -1;
  }
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

/* OFFERS SECTION */
.offers-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.offer-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  width: 30%;
  min-width: 280px;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-card img {
  width: 100%;
  height: auto;
}

.offer-content {
  padding: 10px 15px;
}

.offer-content h3 {
  font-size: 16px;
  margin: 0;
}

.offer-content span {
  color: rgb(174, 0, 255);
  font-weight: bold;
}

/* TABS SECTION */
.routes-section {
  background: #f2f2f2;
  padding: 30px 20px;
}

.tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 2px solid #ddd;
  flex-wrap: wrap;
}

.tab {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 15px;
}

.tab.active {
  border-bottom: 3px solid rgb(153, 0, 255);
  color: rgb(255, 0, 195);
}

.tab-content {
  display: none;
  padding-top: 15px;
  text-align: left;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.tab-content li {
  flex: 1 1 30%;
  position: relative;
  padding-left: 15px;
}

.tab-content li::before {
  content: "•";
  color: rgb(255, 0, 179);
  position: absolute;
  left: 0;
}

/* FOOTER */
footer {
  background: #e9e9e9;
  text-align: center;
  padding: 15px 10px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #333;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.pci-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pci-logo img {
  width: 80px;
}

@media (max-width: 768px) {
  .offer-card {
    width: 100%;
  }
  .tab-content li {
    flex: 1 1 45%;
  }
}


/* ---------- NAVIGATION STYLES ---------- */
/* Desktop nav (visible by default) */
.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  position: relative;
  transition: background .2s;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
  transition: transform .25s, top .25s;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

/* anchor menu to the nav container so position follows size */
.main-nav .nav-inner {
  position: relative; /* menu dropdown will be placed relative to this */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* keep hamburger inline so it moves with header */
.nav-toggle {
  position: relative;
  z-index: 60;
}

/* Mobile: hide nav-list by default, show only when .main-nav has .open */
@media (max-width: 600px) {
   .nav-toggle { display: block; }

  .main-nav .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px); /* place directly below .nav-inner (dynamic) */
    right: 16px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-radius: 6px;
    overflow: hidden;
    min-width: 180px;
    z-index: 50;
  }
   .main-nav .nav-list li a {
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .main-nav.open .nav-list {
    display: flex;
  }
  .main-nav .nav-list li:last-child a { border-bottom: 0; }

  /* show nav when toggled open */
  .main-nav.open .nav-list {
    display: flex;
  }

  /* toggle hamburger to X when open */
  .main-nav.open .hamburger {
    background: transparent;
  }
  .main-nav.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  .main-nav.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }
}

@media (max-width: 450px) {
  header { padding: 12px 14px; } /* optional: reduce header padding for tiny screens */

  .main-nav .nav-list {
    left: 8px;       /* use both left/right to stretch and stay aligned */
    right: 8px;
    top: calc(100% + 6px);
    min-width: auto;
    border-radius: 8px;
  }

  .main-nav .nav-list li a {
    padding: 14px 18px;
  }
}
/* ...existing code... */




