.main-page-wrapper {
  width: 100%;
  overflow-x: hidden;
}

ul.egmenu {
  margin-top: 5%;
  font-size: 17px;
  height: 30px;
  width: 100%;
}

ul.egmenu>li {
  float: left;
  position: relative;
}

ul.egmenu ul {
  background: white;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
}

ul.egmenu a {
  cursor: pointer;
  display: block;
  color: blue;
  font-weight: bold;
  line-height: 30px;
  padding: 0 10px;
}

ul.egmenu li {
  list-style: none;
}

ul.egmenu li:hover {}

ul.egmenu li:hover ul {
  display: block;
}

@media all and (max-width: 480px) {
  ul.egmenu {
    height: auto;
    margin-top: 25%;
  }

  ul.egmenu>li {
    float: none;
    width: 100%;
  }

  ul.egmenu a {
    line-height: 40px;
  }

  ul.egmenu ul {
    position: relative;
  }
}

/* NEW PROJECT SECTION STYLES */
#project-section {
  padding: 80px 0;

  position: relative;
  overflow: hidden;
  width: 100%;
}

#project-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(27,58,130,0.03)"/></svg>');
  background-size: cover;
  z-index: 0;
}

.project-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

.project-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.project-header h2 {
  font-size: 42px;
  color: #1b3a82;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.project-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  border-radius: 2px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  width: 117%;
  margin-left: -97px;
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* FIXED CARD IMAGE STYLING */
.card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d7d9de;
  width: 100%;
}

.card-image img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

@media (max-width: 768px) {
  .card-image img {
    max-width: 100%;
    /* Take full width of container */
    max-height: 250px;
    /* Restrict height for better fit */
  }
}

/* 📱 Small phones */
@media (max-width: 480px) {
  .card-image img {
    max-width: 68%;
    max-height: 200px;
    /* Even smaller height */
  }
}

.project-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
}

.card-content h3 {
  font-size: 22px;
  color: #1b3a82;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.card-badge {
  display: inline-block;
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.project-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.highlight-item {
  background: #c1e2d2;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 40px;
  color: #1b3a82;
  margin-bottom: 15px;
}

.highlight-item h4 {
  font-size: 20px;
  color: #1b3a82;
  margin-bottom: 10px;
}

.highlight-item p {
  color: black;
  line-height: 1.5;
}

.project-updates {
  margin-top: 60px;
  width: 100%;
}

.update-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  width: 116%;
  margin-left: -99px;
  margin-bottom: -80px;
}

.update-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
}

.update-image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.update-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #project-section {
    padding: 50px 0;
  }

  .project-header h2 {
    font-size: 32px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    /* ✅ one column */
    gap: 30px;
    width: 100%;
    /* ✅ no overflow */
    margin-left: 0;
  }

  .project-highlights {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .update-images {
    grid-template-columns: 1fr;
    /* Single column */
    width: 100%;
    /* Reset full width */
    margin-left: 0;
    /* Reset margin */
    gap: 40px;
    /* Reduce gap */
    margin-top: 97px;
    /* Better spacing */
  }

  .card-image {
    height: 180px;
  }

  .project-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .card-image {
    height: 150px;
  }

  .project-container {
    padding: 0 10px;
  }

  .card-content {
    padding: 20px 15px;
  }

  .highlight-item {
    padding: 20px 15px;
  }
}

.site-footer {
  background-color: #577cdb;
  /* A soft, light blue */
  color: #e6f0ff;
  /* Use the dark blue from the logo for text */
  padding: 2.5rem 0;
  font-family: Arial, sans-serif;
}

/* Media Query for Tablets and smaller screens (max-width: 768px) */
@media (max-width: 768px) {
  .site-footer {
    /* Reduce vertical padding for tablets */
    padding: 2rem 0;
    /* Reduce top margin for tablets */
    margin-top: 2rem;
  }
}

/* Media Query for Mobile phones (max-width: 480px) */
@media (max-width: 480px) {
  .site-footer {
    /* Further reduce vertical padding for small phones */
    padding: 1.5rem 0;
    /* Further reduce top margin for mobile */
    margin-top: 1.5rem;
  }
}

/* abou us page css */

/* ===== CONTENT FIX ===== */
.main-content {
  padding-top: 60px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 20px 20px;
  text-align: center;
  background-color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  font-size: 46px;
  font-weight: 800;
  color: #2d246b;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #0f9d58, #2d246b);
  margin: 8px auto 0;
  border-radius: 2px;
}

.about-subtitle {
  font-size: 18px;
  color: #5a6a85;
  margin: 0 auto 40px;
  max-width: 800px;
  line-height: 1.6;
}

.story-card {
  background: linear-gradient(to bottom right, #f9f9f9, #eef6f6);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.story-card h2 {
  font-size: 24px;
  color: #2d246b;
  margin-bottom: 15px;
  font-weight: 700;
}

.story-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.story-card p:last-child {
  margin-bottom: 0;
}

/* ✅ Highlighted text */
.highlight {
  background: linear-gradient(120deg, #ffefba 0%, #ffffff 100%);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: #1b3a82;
}

/* ===== WHAT DRIVES US SECTION ===== */
.drives-section {
  padding: 20px 15px;

  background: #fff;
  text-align: center;
}

.drives-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.drives-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d246b;
  margin-bottom: 40px;
  position: relative;
}

.drives-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0f9d58, #2d246b);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.drives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.drive-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
  height: 100%;
}

.drive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d246b, #0f9d58);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  font-size: 22px;
}

.drive-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2d246b;
  margin-bottom: 10px;
}

.drive-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #5a6a85;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-title {
    font-size: 36px;
  }

  .drives-title {
    font-size: 28px;
  }

  .drives-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
  }

  .drives-title {
    font-size: 24px;
  }

  .drives-grid {
    grid-template-columns: 1fr;
  }
}

/* Import Poppins font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap");

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 70px 20px;

  font-family: "Poppins", sans-serif;
}

.stats-container {
  height: 100%;
  background: linear-gradient(90deg, #4a3fc2, #1ba96c);
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #fff;
  text-align: center;
}

.stat-box {
  flex: 1 1 220px;
  min-width: 200px;
}

.stat-icon {
  font-size: 30px;
  margin-bottom: 12px;
  color: #fff;
}

.stat-box h3 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
  margin: 0;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 992px) {
  .stat-box h3 {
    font-size: 32px;
  }

  .stat-box p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .stat-box h3 {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    flex-direction: column;
    padding: 25px 15px;
  }

  .stat-box h3 {
    font-size: 24px;
  }

  .stat-box p {
    font-size: 13px;
  }
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Social Icons Styling */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  gap: 1rem;
}

.social-links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  background: #fff;
  color: #182e6d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-links li a:hover {
  background: #16b251;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Copy Text */
.footer-copy {
  font-size: 1.7rem;
  color: #304db6;
  /* Gray from the logo for the copyright text */
  margin: 0;
}

.footer-copy a {
  color: #16b251;
  /* Vibrant green for the link */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.7rem;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-copy .fa-heart-o {
  color: #16b251;
  /* Vibrant green for the heart icon */
}

/* Tablets and below */
@media (max-width: 768px) {
  .footer-logo img {
    width: 120px;
    margin-bottom: 1rem;
  }

  .social-links li a {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .footer-copy {
    font-size: 1.4rem;
  }

  .footer-copy a {
    font-size: 1.4rem;
  }

  .footer-container {
    padding: 0 15px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }

  .footer-logo img {
    width: 100px;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-links li a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .footer-copy {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .footer-copy a {
    font-size: 1.2rem;
  }
}

/* 30-9-2025 */

/* ===== HEADER THEME (Unique Class Names) ===== */
.win-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  /* start as normal */
  transition: all 0.3s ease;
  z-index: 999;
}

/* Sticky header on scroll */
.win-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Optional: shrink logo when sticky */
.win-header.sticky .win-logo img {
  height: 60px;
  transition: height 0.3s;
}

.win-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

.win-logo img {
  height: 90px;
  width: auto;
}

/* NAVIGATION */
.win-nav {
  display: flex;
  gap: 20px;
  font-size: 20px;
}

.win-nav a {
  text-decoration: none;
  color: #1b3a82;
  /* Dark blue from logo */
  font-weight: 600;
  transition: 0.3s;
}

.win-nav a:hover {
  color: #0f9d58;
  /* Green from logo */
}

.win-nav .active a {
  color: #0f9d58;
  border-bottom: 2px solid #0f9d58;
  padding-bottom: 4px;
}

/* MOBILE TOGGLE */
.win-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #1b3a82;
}

/* ===== BANNER ===== */
.win-banner {
  background: linear-gradient(rgba(27, 58, 130, 0.8), rgba(15, 157, 88, 0.8)),
    url("images/banner.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.win-banner h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.win-banner p {
  font-size: 20px;
  margin-bottom: 20px;
}

.win-banner .btn {
  background: #0f9d58;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.win-banner .btn:hover {
  background: #1b3a82;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .win-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 15px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  .win-nav.show {
    display: flex;
  }

  .win-toggle {
    display: block;
  }

  .win-container {
    padding: 10px 15px;
  }
}

/* Dropdown Menu */
.win-nav .has-sub {
  position: relative;
}

.win-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.win-nav .sub-menu li {
  border-bottom: 1px solid #eee;
}

.win-nav .sub-menu li a {
  padding: 10px 15px;
  display: block;
}

.win-nav .has-sub:hover .sub-menu {
  display: block;
}

/* Mobile Toggle Fix */
.win-nav.show {
  display: block;
}

.win-nav {
  list-style: none;
  margin: 0;
}

@media (max-width: 768px) {
  .win-nav .has-sub .sub-menu {
    position: static;
    box-shadow: none;
    border-top: 1px solid #eee;
  }

  .win-nav .has-sub .sub-menu li {
    border-bottom: 0;
  }

  .win-nav .has-sub .sub-menu {
    display: none;
    flex-direction: column;
  }

  .win-nav .has-sub.open .sub-menu {
    display: flex;
  }

  .win-nav li {
    margin: 5px 0;
  }
}

/* Project Section Styles - FIXED MARGINS */
#project-section {
  padding: 80px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  margin-top: -100px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.theme-title {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideDownFade 0.8s ease 0.3s forwards;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.theme-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b3a82;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.theme-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
  animation: lineGrow 0.8s ease 0.8s forwards;
  transform-origin: center;
  transform: translateX(-50%) scaleX(0);
}

@keyframes lineGrow {
  from {
    transform: translateX(-50%) scaleX(0);
  }

  to {
    transform: translateX(-50%) scaleX(1);
  }
}

.destination-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.destination-card {
  perspective: 1000px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: cardAppear 0.6s ease forwards;
}

@keyframes cardAppear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stagger animation for cards */
.destination-card:nth-child(1) {
  animation-delay: 0.5s;
}

.destination-card:nth-child(2) {
  animation-delay: 0.6s;
}

.destination-card:nth-child(3) {
  animation-delay: 0.7s;
}

.destination-card:nth-child(4) {
  animation-delay: 0.8s;
}

.destination-card:nth-child(5) {
  animation-delay: 0.9s;
}

.destination-card:nth-child(6) {
  animation-delay: 1s;
}

.destination-card:nth-child(7) {
  animation-delay: 1.1s;
}

.destination-card:nth-child(8) {
  animation-delay: 1.2s;
}

.destination-card:nth-child(9) {
  animation-delay: 1.3s;
}

.destination-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.destination-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-img img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 25px 20px 15px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
  transform: translateY(0);
  opacity: 1;
}

.destination-overlay h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.destination-card:hover .destination-overlay h1 {
  transform: translateY(0);
  opacity: 1;
}

.destination-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.destination-card:hover .destination-overlay ul {
  transform: translateY(0);
  opacity: 1;
}

.destination-overlay li {
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.destination-overlay li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .destination-gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .theme-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  #project-section {
    padding: 60px 0;
    margin-top: 0;
  }

  .destination-gallery {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 20px;
  }

  .theme-title h2 {
    font-size: 1.8rem;
  }

  .theme-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .theme-title h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .destination-overlay h1 {
    font-size: 1.5rem;
  }
}

/* Footer Styles - FIXED MARGINS */
.site-footer {
  background-color: #577cdb;
  color: #e6f0ff;
  padding: 2.5rem 0;
  font-family: Arial, sans-serif;
  margin-top: 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Social Icons Styling */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  gap: 1rem;
}

.social-links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  background: #fff;
  color: #182e6d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-links li a:hover {
  background: #16b251;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Copy Text */
.footer-copy {
  font-size: 1.7rem;
  color: #304db6;
  margin: 0;
}

.footer-copy a {
  color: #16b251;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.7rem;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-copy .fa-heart-o {
  color: #16b251;
}

/* Tablets and below */
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 0;
    margin-top: 0;
  }

  .footer-logo img {
    width: 120px;
    margin-bottom: 1rem;
  }

  .social-links li a {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .footer-copy {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 0 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }

  .footer-copy a {
    font-size: 1.4rem;
    display: inline;
    word-break: break-all;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .site-footer {
    padding: 1.5rem 0;
    margin-top: 0;
  }

  .footer-container {
    padding: 0 0.5rem;
  }

  .footer-logo img {
    width: 100px;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-links li a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .footer-copy {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 0 5px;
  }

  .footer-copy a {
    font-size: 1.2rem;
  }
}

/* Container spacing - PROPER MARGIN MANAGEMENT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
    padding: 0 15px;
    margin-top: 0;
  }

  #project-section {
    margin-top: 0;
    padding: 70px 0;
  }
}

/* Mobile Landscape (≤ 768px) */
@media (max-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 10px;
    margin-top: -308px;
  }

  #project-section {
    margin-top: 0;
    padding: 50px 0;
  }
}

/* Mobile Portrait (≤ 576px) */
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
    margin-top: -318px;
  }

  /* Fix for project section spacing on mobile */
  #project-section {
    padding: 40px 0;
    margin-top: 0;
  }

  .destination-card {
    height: 250px;
    margin-bottom: 15px;
  }

  .destination-overlay {
    padding: 15px 15px 10px;
  }

  .destination-overlay h1 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .destination-overlay li {
    font-size: 0.9rem;
    padding: 3px 0;
  }

  .theme-title {
    margin-bottom: 25px;
  }
}

/* Extra Small Mobile (≤ 400px) */
@media (max-width: 400px) {
  .container {
    padding: 0 8px;
    margin-top: -230px;
  }

  #project-section {
    padding: 30px 0;
    margin-top: 0;
  }

  .destination-card {
    height: 220px;
  }

  .destination-overlay h1 {
    font-size: 1.2rem;
  }

  .destination-overlay li {
    font-size: 0.85rem;
  }

  .theme-title h2 {
    font-size: 1.3rem;
    padding-bottom: 10px;
  }

  .theme-title h2::after {
    width: 60px;
    height: 3px;
  }

  .theme-title {
    margin-bottom: 20px;
  }
}

/* Fix for very small screens */
@media (max-width: 320px) {
  .container {
    padding: 0 5px;
    margin-top: 0;
  }

  #project-section {
    padding: 25px 0;
    margin-top: 0;
  }

  .destination-gallery {
    gap: 15px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .destination-card {
    height: 200px;
  }

  .destination-overlay {
    padding: 10px 10px 5px;
  }

  .destination-overlay h1 {
    font-size: 1.1rem;
  }

  .destination-overlay li {
    font-size: 0.8rem;
    padding-left: 15px;
  }
}

/* Section spacing */
section {
  margin: 10px 0;
}
@media (max-width: 768px) {
    section {
        margin: -77px 0px;
    }
}

/* Header mobile fixes */
@media (max-width: 768px) {
  .win-container {
    padding: 10px 15px;
  }

  .win-logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .win-container {
    padding: 8px 10px;
  }

  .win-logo img {
    height: 50px;
  }

  .win-toggle {
    font-size: 20px;
  }
}

/* Banner mobile fixes */
@media (max-width: 576px) {
  .custom-caption {
    padding: 0 15px;
  }
}

@media (max-width: 400px) {
  .custom-caption {
    padding: 0 10px;
  }
}

/* Proper spacing between sections */
.section-spacing {
  margin: 80px 0;
}

@media (max-width: 768px) {
  .section-spacing {
    margin: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-spacing {
    margin: 40px 0;
  }
}

/* Ensure proper vertical rhythm */
.main-page-wrapper>*:not(header):not(footer) {
  margin-bottom: 0;
}

/* Fix any overlapping issues */
#project-section {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .banner-img {
    height: 350px !important;
    /* desktop height */
    object-fit: cover;
  }
}

/* blog details */

@media (max-width: 992px) {
  .blog-wrapper {
    flex-direction: column;
  }

  .blog-content,
  .sidebar {
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }
}

@media (max-width: 600px) {
  .blog-content h3 {
    font-size: 20px !important;
  }

  .blog-content p {
    font-size: 14px !important;
  }

  .sidebar h5 {
    font-size: 16px !important;
  }

  .sidebar h6 {
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {
  .blog-single-area {
    flex-direction: column !important;
  }

  .blog-single-area>div {
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }
}

/* login mobile responsive css */

@media (max-width: 768px) {
  .login-container {
    flex-direction: column !important;
  }

  .left-image,
  .right-form {
    width: 100% !important;
    padding: 20px !important;
  }

  .left-image img {
    height: auto !important;
    border-radius: 15px !important;
  }
}

@media (max-width: 480px) {
  .right-form {
    padding: 20px !important;
  }

  .right-form h3 {
    font-size: 18px !important;
  }

  .form-control {
    font-size: 14px !important;
    padding: 8px !important;
  }

  .theme-btn {
    padding: 10px !important;
    font-size: 14px !important;
  }
}

/* forget password css */

@media (max-width: 768px) {
  .reset-container {
    flex-direction: column;
  }

  .left-image,
  .right-form {
    width: 100% !important;
    padding: 20px !important;
  }

  .left-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px 12px 0 0 !important;
  }
}

/* gallery section css */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item .overlay a {
  color: #fff;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover .overlay a {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

/* Zoom hover effect */
.zoom-box:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Button hover */
#submitbtn:hover {
  background: #0c7c43;
  transform: scale(1.05);
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* home page css */

.feature-card:hover {
  background: #f0f4ff;
  /* light bluish background */
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.deal-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.deal-card:hover a {
  background: currentColor;
  color: #fff !important;
}

.deal-card:hover {
  background: #f0f4ff;
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.deal-card a:hover {
  background: #111;
  color: #fff;
}

/* Banner Styles - IMPROVED FOR MOBILE */
.custom-banner {

  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


.custom-slider-wrapper,
.custom-slider {
  width: 100%;
  height: 85vh;
  position: relative;
}

.custom-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-slide.active {
  opacity: 1;
  z-index: 1;
}

.custom-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  height: fit-content;
  /* object-fit: cover; */
  object-position: center center;
  z-index: 0;
}

.custom-caption {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.custom-caption h6 {
  font-size: 18px;
  font-weight: 600;
}

/* Enhanced Responsive banner heights */
@media (max-width: 1400px) {

  .custom-slider-wrapper,
  .custom-slider {
    height: 65vh;
  }
}

@media (max-width: 1200px) {

  .custom-slider-wrapper,
  .custom-slider {
    height: 60vh;
  }
}

@media (max-width: 992px) {

  .custom-slider-wrapper,
  .custom-slider {
    height: 55vh;
  }

  .custom-slide-bg {
    object-position: center 30%;
    height: 166px;
  }
}

@media (max-width: 768px) {

  .custom-slider-wrapper,
  .custom-slider {
    height: 30vh;
  }

  .custom-caption h6 {
    font-size: 16px;
    line-height: 22px;
  }

  .custom-slide-bg {
    object-position: center 25%;
    height: 166px;
  }
}

@media (max-width: 576px) {

  .custom-slider-wrapper,
  .custom-slider {
    height: 20vh;
  }

  .custom-caption h6 {
    font-size: 18px;
    line-height: 20px;
  }

  .custom-slide-bg {
    object-position: center 20%;
    height: 166px;
  }
}

@media (max-width: 400px) {

  .custom-slider-wrapper,
  .custom-slider {
    height: 0vh;
    min-height: 150px;
  }

  .custom-caption h6 {
    font-size: 14px;
    line-height: 18px;
  }

  .custom-slide-bg {
    object-position: center 15%;
    height: 155px;
  }
}

/* Extra small devices */
@media (max-width: 320px) {

  .custom-slider-wrapper,
  .custom-slider {
    height: 35vh;
    min-height: 200px;
  }

  .custom-slide-bg {
    object-position: center 10%;
  }
}

.theme-title {
  text-align: center;
  margin-bottom: 30px;
}

.theme-title h2 {
  font-size: 32px;
  color: #2d225f;
  margin: 0;
}

.destination-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.destination-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
}

.destination-img {
  position: relative;
}

.destination-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  /* smooth zoom transition */
}

.destination-card:hover .destination-img img {
  transform: scale(1.1);
  /* zoom in slightly */
}

.destination-img h1 {
  position: absolute;
  bottom: 50px;
  left: 16px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.destination-img ul {
  position: absolute;
  bottom: 25px;
  left: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.destination-img ul li::before {
  content: "\f133";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  margin-right: 6px;
}

.destination-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-content {
  padding: 16px;
  flex: 1;
  /* Makes this content area take up remaining space */
  display: flex;
  flex-direction: column;
}

.card-description {
  font-size: 18px;
  color: #555;
  margin-bottom: auto;
  /* Pushes button to bottom */
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, rgb(59, 130, 246), rgb(15, 157, 88));
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
  gap: 8px;
  margin-top: 16px;
  /* optional spacing from description */
}

/* Responsive */
@media (max-width: 992px) {
  .destination-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .destination-gallery {
    grid-template-columns: 1fr;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .destination-gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .theme-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  #project-section {
    padding: 60px 0;
    margin-top: 0;
  }

  .destination-gallery {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 20px;
  }

  .theme-title h2 {
    font-size: 1.8rem;
  }

  .theme-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .theme-title h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .destination-overlay h1 {
    font-size: 1.5rem;
  }
}

/*3/10/2025*/
/*all-packages page css*/

/* ===== PROJECT SECTION ===== */
#project-section {
  padding: 60px 0;
  background: #f9f9f9;
  margin-bottom: -100px;
}

.theme-title {
  text-align: center;
  margin-bottom: 40px;
}

.theme-title h2 {
  font-size: 36px;
  color: #1b3a82;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.theme-title h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.theme-title .description {
  font-size: 20px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FILTER BUTTONS STYLES */
.package-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.package-filter-buttons .filter-btn {
  background-color: #1b3a82;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.package-filter-buttons .filter-btn:hover {
  background-color: #0f9d58;
}

.package-filter-buttons .filter-btn.active {
  background-color: #0f9d58;
}

/* HORIZONTAL SCROLLING SECTIONS */
.package-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 28px;
  color: #1b3a82;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.category-title:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.horizontal-scroll-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.scroll-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding: 20px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #1b3a82 #f0f0f0;
}

.scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.scroll-wrapper::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background: #1b3a82;
  border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #0f9d58;
}

.package-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 320px;
  max-width: 320px;
  text-align: center;
  flex-shrink: 0;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-image {
  height: 200px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-info {
  padding: 20px;
}

.package-info h3 {
  font-size: 22px;
  color: #1b3a82;
  margin-bottom: 10px;
}

.package-info .duration {
  font-size: 18px;
  color: #0f9d58;
  font-weight: 600;
  margin-bottom: 15px;
}

.package-info .btn {
  display: inline-block;
  background: #0f9d58;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.package-info .btn:hover {
  background: #1b3a82;
}

/* Scroll Navigation Arrows */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27, 58, 130, 0.9);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.9;
}

.scroll-arrow:hover {
  background: #0f9d58;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.scroll-arrow.left {
  left: 10px;
}

.scroll-arrow.right {
  right: 10px;
}

.scroll-arrow.hidden {
  display: none;
}

.container {
  max-width: 1200px;
  margin: -63px auto;
  padding: 0 15px;
  width: 100%;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .horizontal-scroll-container {
    padding: 0 20px;
  }

  .package-card {
    min-width: 280px;
    max-width: 280px;
  }

  .package-filter-buttons {
    gap: 10px;
  }

  .package-filter-buttons .filter-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .scroll-arrow {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .scroll-arrow.left {
    left: 5px;
  }

  .scroll-arrow.right {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .package-filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .package-filter-buttons .filter-btn {
    width: 200px;
    margin-bottom: 10px;
  }

  .package-card {
    min-width: 260px;
    max-width: 260px;
  }

  .scroll-arrow {
    display: none;
    /* Hide arrows on very small screens */
  }
}

/*malaysia page css*/

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-header img {
  max-width: 300px;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }
}

/*Dubai page css*/
/* ===== CONTENT SECTION ===== */
.content-section {
  margin-top: 1px;
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-header img {
  max-width: 300px;
  margin: 0 auto 20px;
  display: block;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    margin-top: 1px;
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }
}

/*Thailand page css*/
/* ===== CONTENT SECTION ===== */
.content-section {
  margin-top: -3px;
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-header img {
  max-width: 300px;
  margin: 0 auto 20px;
  display: block;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    margin-top: 0px;
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }
}

/*Srilanka page css*/

/* ===== CONTENT SECTION ===== */
.content-section {
  margin-top: 0px;
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-header img {
  max-width: 300px;
  margin: 0 auto 20px;
  display: block;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    margin-top: 1px;
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }
}

/*Bhali page css*/

/* ===== CARD DESIGN ===== */
.content-section {
  margin-top: -6px;
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-header img {
  max-width: 300px;
  margin: 0 auto 20px;
  display: block;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    margin-top: 1px;
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }
}

/*Munnar css page */
/* ===== CARD DESIGN ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

/*Goa page css*/

/* ===== CARD DESIGN ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

/*Alleppey page css*/

/* ===== CARD DESIGN ===== */
.content-section {
  margin-top: -6px;
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    margin-top: 1px;
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

/*Pondicherry page css*/

/* ===== CARD DESIGN ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

/*Kollam page css*/

/* ===== CARD DESIGN ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

/*Gavi page css*/

/* ===== CARD DESIGN ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

/*Badipur page css*/
/* ===== BANNER STYLES ===== */
.banner-section {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 100px;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CARD DESIGN ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    margin-top: 80px;
    height: 300px;
  }

  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .banner-section {
    height: 250px;
  }
}

/*Wonderla page css*/

/* ===== BANNER STYLES ===== */
.banner-section {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 100px;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    margin-top: 80px;
    height: 300px;
  }

  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .banner-section {
    height: 250px;
  }
}

/*Camfire page css*/

/* ===== BANNER STYLES ===== */
.banner-section {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 100px;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.package-header {
  text-align: center;
  margin-bottom: 40px;
}

.package-title {
  color: #1b3a82;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-intro {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.itinerary-section {
  max-width: 1200px;
  margin: 0 auto;
}

.itinerary-title {
  text-align: center;
  color: #1b3a82;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.day-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.day-number {
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.3);
}

.day-title {
  color: #1b3a82;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.day-highlight {
  color: #0f9d58;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
  text-align: center;
}

.view-details {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 10px rgba(27, 58, 130, 0.2);
}

.view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 58, 130, 0.3);
}

/* Modal styling */
.modal-header {
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 20px;
}

.modal-title {
  font-weight: 700;
  font-size: 22px;
}

.close {
  color: white;
  opacity: 0.9;
  font-size: 28px;
}

.close:hover {
  color: white;
  opacity: 1;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

.btn-default {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-default:hover {
  background: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .day-card {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .day-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    margin-top: 80px;
    height: 300px;
  }

  .day-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .day-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .content-section {
    padding: 20px 15px;
  }

  .itinerary-title {
    font-size: 28px;
  }

  .package-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .banner-section {
    height: 250px;
  }
}

/*International page css*/

body,
html {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Keep your existing styles below */
ul.egmenu {
  margin-top: 5%;
  font-size: 17px;
  height: 30px;
  width: 100%;
}

ul.egmenu>li {
  float: left;
  position: relative;
}

ul.egmenu ul {
  background: white;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
}

ul.egmenu a {
  cursor: pointer;
  display: block;
  color: blue;
  font-weight: bold;
  line-height: 30px;
  padding: 0 10px;
}

ul.egmenu li {
  list-style: none;
}

ul.egmenu li:hover ul {
  display: block;
}

@media all and (max-width: 480px) {
  ul.egmenu {
    height: auto;
    margin-top: 25%;
  }

  ul.egmenu>li {
    float: none;
    width: 100%;
  }

  ul.egmenu a {
    line-height: 40px;
  }

  ul.egmenu ul {
    position: relative;
  }
}

@media all and (max-width: 480px) {
  strong {
    text-align: center;
  }
}

* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* Content padding to account for fixed header */
.main-content {
  padding-top: 100px;
  /* Adjust based on your header height */
}

/* ===== PROJECT SECTION REDESIGN ===== */
#project-section {
  padding: 60px 0;
  background: #f9f9f9;
  margin-bottom: -100px;
}

.theme-title {
  text-align: center;
  margin-bottom: 40px;
}

.theme-title h2 {
  font-size: 36px;
  color: #1b3a82;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.theme-title h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.theme-title .description {
  font-size: 20px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FILTER BUTTONS STYLES */
.package-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.package-filter-buttons .filter-btn {
  background-color: #1b3a82;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.package-filter-buttons .filter-btn:hover {
  background-color: #0f9d58;
}

.package-filter-buttons .filter-btn.active {
  background-color: #0f9d58;
}

.packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  /* MODIFICATION: Increased horizontal padding for the gap you requested */
  padding: 100 60px;
}

/* --- Base Container CSS (Desktop) --- */
/* Your existing code, which should be outside any media query */
.container {
  max-width: 1200px;
  /* Or whatever your design's max width is */
  margin: -63px auto;
  /* Centers the container */
  padding: 0 15px;
  /* Adds internal padding to prevent content from touching the edges */
  width: 100%;
  /* Ensures it fills 100% of the viewport up to the max-width */
  margin-bottom: 12px;
}

/* ---------------------------------------------------- */

@media (max-width: 992px) {
  .container {
    /* Keep max-width, but you might adjust horizontal padding if needed */
    padding: -33px 20px;
  }

  .theme-title {
    text-align: center;
    margin-top: 84px;
  }
}

.package-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 370px;
  text-align: center;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-image {
  height: 220px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-info {
  padding: 20px;
}

.package-info h3 {
  font-size: 22px;
  color: #1b3a82;
  margin-bottom: 10px;
}

.package-info .duration {
  font-size: 20px;
  color: #0f9d58;
  font-weight: 600;
  margin-bottom: 15px;
}

.package-info .btn {
  display: inline-block;
  background: #0f9d58;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.package-info .btn:hover {
  background: #1b3a82;
}

/* Tablets and below */
@media (max-width: 768px) {
  .footer-logo img {
    width: 120px;
    margin-bottom: 1rem;
  }

  .social-links li a {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .footer-copy {
    font-size: 1.4rem;
  }

  .footer-copy a {
    font-size: 1.4rem;
  }

  .main-content {
    padding-top: 80px;
    /* Adjust for mobile header height */
  }

  .packages-container {
    gap: 50px;
    margin-bottom: 65px;
  }

  .package-card {
    max-width: 100%;
  }

  .theme-title h2 {
    font-size: 28px;
    margin-top: -80px;
  }

  .theme-title .description {
    font-size: 16px;
    padding: 0 15px;
  }

  /* Mobile responsive for filter buttons */
  .package-filter-buttons {
    gap: 10px;
    margin-bottom: 30px;
  }

  .package-filter-buttons .filter-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .footer-container {
    padding: 0 0.5rem;
  }

  .footer-logo img {
    width: 100px;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-links li a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .footer-copy {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .footer-copy a {
    font-size: 1.2rem;
  }

  .package-info h3 {
    font-size: 20px;
  }

  .package-info .duration {
    font-size: 20px;
  }

  /* Mobile responsive for filter buttons */
  .package-filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .package-filter-buttons .filter-btn {
    width: 200px;
    margin-bottom: 10px;
  }
}

.banner-container {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#carousel-example-generic {
  width: 100%;
  margin: 0;
}

.carousel-inner .item img {
  width: 100%;
  /* Use calc to subtract the max header height (around 80px) */
  height: calc(130vh - 80px);
  object-fit: cover;
  display: block;
}

/* === NEW MOBILE BANNER CSS === */
/* This media query will override the desktop height for screens 768px and smaller */
@media (max-width: 768px) {
  .carousel-inner .item img {
    /* Set a fixed height in pixels or a smaller viewport height percentage for mobile */
    height: 400px;
    /* A fixed height is generally safer for responsiveness */
    /* Alternatively, use a smaller vh value: height: 60vh; */
  }
}

@media (max-width: 480px) {
  .carousel-inner .item img {
    /* Adjust even lower for very small phones */
    height: 300px;
  }
}

/*Holiday package page css*/
ul.egmenu {
  margin-top: 5%;
  font-size: 17px;
  height: 30px;
  width: 100%;
}

ul.egmenu>li {
  float: left;
  position: relative;
}

ul.egmenu ul {
  background: white;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
}

ul.egmenu a {
  cursor: pointer;
  display: block;
  color: blue;
  font-weight: bold;
  line-height: 30px;
  padding: 0 10px;
}

ul.egmenu li {
  list-style: none;
}

ul.egmenu li:hover {
  background: none;
}

ul.egmenu li:hover ul {
  display: block;
}

@media all and (max-width: 480px) {
  ul.egmenu {
    height: auto;
    margin-top: 25%;
  }

  ul.egmenu>li {
    float: none;
    width: 100%;
  }

  ul.egmenu a {
    line-height: 40px;
  }

  ul.egmenu ul {
    position: relative;
  }
}

.hover_bkgr_fricc {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.hover_bkgr_fricc .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hover_bkgr_fricc>div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 551px;
  min-height: 100px;
  vertical-align: middle;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 15px 5%;
}

.popupCloseButton {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.popupCloseButton:hover {
  background-color: #ccc;
}

.trigger_popup_fricc {
  cursor: pointer;
  font-size: 20px;
  margin: 20px;
  display: inline-block;
  font-weight: bold;
}

.hover_bkgr_fricc1 {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.hover_bkgr_fricc1 .helper1 {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hover_bkgr_fricc1>div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 551px;
  min-height: 100px;
  vertical-align: middle;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 15px 5%;
}

.popupCloseButton1 {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.popupCloseButton1:hover {
  background-color: #ccc;
}

.trigger_popup_fricc1 {
  cursor: pointer;
  font-size: 20px;
  margin: 20px;
  display: inline-block;
  font-weight: bold;
}

.hover_bkgr_fricc2 {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.hover_bkgr_fricc2 .helper2 {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hover_bkgr_fricc2>div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 551px;
  min-height: 100px;
  vertical-align: middle;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 15px 5%;
}

.popupCloseButton2 {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.popupCloseButton2:hover {
  background-color: #ccc;
}

.trigger_popup_fricc2 {
  cursor: pointer;
  font-size: 20px;
  margin: 20px;
  display: inline-block;
  font-weight: bold;
}

.hover_bkgr_fricc3 {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.hover_bkgr_fricc3 .helper3 {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hover_bkgr_fricc3>div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 551px;
  min-height: 100px;
  vertical-align: middle;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 15px 5%;
}

.popupCloseButton3 {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.popupCloseButton3:hover {
  background-color: #ccc;
}

.trigger_popup_fricc3 {
  cursor: pointer;
  font-size: 20px;
  margin: 20px;
  display: inline-block;
  font-weight: bold;
}

* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

p.big {
  line-height: 2;

  font-size: 27px;
  color: #499288;
}

p {
  font-family: Special Elite;
  color: #499288;
}

/* NEW STYLES FOR PROJECT SECTION ONLY */
.win2grow-packages {
  margin-top: 0%;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: -100px;
}

.win2grow-packages::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(27, 58, 130, 0.03);
  top: -150px;
  right: -150px;
}

.win2grow-packages::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(15, 157, 88, 0.03);
  bottom: -200px;
  left: -200px;
}

.win2grow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.win2grow-title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 80px;
}

.win2grow-title h3 {
  font-size: 2.5rem;
  color: #1b3a82;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.win2grow-title h3::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1b3a82, #0f9d58);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.win2grow-package-content {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

.win2grow-package-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.win2grow-package-list {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 95px 30px;
  background: linear-gradient(145deg, #1b3a82 0%, #0f4da5 100%);
}

.win2grow-package-features {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 30px;
  background: white;
}

.win2grow-package-row:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.win2grow-package-item {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border-left: 4px solid;
  transition: all 0.3s ease;
  cursor: pointer;
}

.win2grow-package-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.15);
}

.win2grow-silver-item {
  border-left-color: #c0c0c0;
}

.win2grow-gold-item {
  border-left-color: #ffdf00;
}

.win2grow-diamond-item {
  border-left-color: #b9f2ff;
}

.win2grow-platinum-item {
  border-left-color: #a9c3d0;
}

.win2grow-package-item p {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.win2grow-package-price {
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin-left: 10px;
}

.win2grow-features-title {
  font-size: 2rem;
  color: #1b3a82;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.win2grow-features-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1b3a82, #0f9d58);
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.win2grow-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.win2grow-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.win2grow-feature-item:last-child {
  border-bottom: none;
}

.win2grow-feature-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #1b3a82, #0f9d58);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.win2grow-feature-text {
  font-size: 1.4rem;
  color: #555;
  font-weight: 500;
  line-height: 1.4;
}

/* Popup button styles */
.win2grow-popup-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 9px 17px;
  border-radius: 25px;
  font-size: 1.4rem;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.win2grow-popup-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .win2grow-package-list,
  .win2grow-package-features {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .win2grow-package-list {
    border-radius: 15px 15px 0 0;
  }

  .win2grow-package-features {
    border-radius: 0 0 15px 15px;
  }
}

@media (max-width: 768px) {
  .win2grow-packages {
    margin-top: 25%;
    padding: 40px 0;
  }

  .win2grow-title h3 {
    font-size: 2rem;
  }

  .win2grow-package-list,
  .win2grow-package-features {
    padding: 30px 20px;
  }

  .win2grow-package-item p {
    font-size: 1.2rem;
  }

  .win2grow-package-price {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .win2grow-packages {
    margin-top: 0%;
    padding: 30px 0;
  }

  .win2grow-title h3 {
    font-size: 1.8rem;
  }

  .win2grow-package-item {
    padding: 15px;
  }

  .win2grow-package-item p {
    font-size: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .win2grow-package-price {
    margin-left: 0;
    margin-top: 5px;
  }

  .win2grow-feature-text {
    font-size: 1rem;
  }
}

/* Animation for package items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.win2grow-package-item {
  animation: fadeInUp 0.5s ease forwards;
}

.win2grow-package-item:nth-child(1) {
  animation-delay: 0.1s;
}

.win2grow-package-item:nth-child(2) {
  animation-delay: 0.2s;
}

.win2grow-package-item:nth-child(3) {
  animation-delay: 0.3s;
}

.win2grow-package-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* footer section mobile responsive  */

/* === 📱 Mobile Responsive === */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    /* Stack sections */
    text-align: center;
  }

  .footer-box {
    padding: 10px 0;
  }

  .footer-box h3 {
    font-size: 17px;
  }

  .footer-box a {
    font-size: 18px;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .site-footer {
    padding: 25px 15px;
  }

  .footer-box h3 {
    font-size: 16px;
  }
}

/* home page footer section code */
@media (max-width: 768px) {
  .responsive-footer>div {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    text-align: left !important;
  }

  .responsive-footer img {
    margin: 0 auto 15px !important;
  }

  .responsive-footer a,
  .responsive-footer div,
  .responsive-footer h3 {
    text-align: left !important;
  }
}

/* jdnasa second section mobile responsive */

/* ==== Destination Gallery Grid ==== */
.responsive-destination {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== Card Style ==== */
.destination-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==== Image Section ==== */
.destination-img {
  position: relative;
}

.destination-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #eee;
}

.destination-img h1 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.destination-img ul {
  position: absolute;
  top: 10px;
  right: 15px;
  list-style: none;
  /* background: rgba(255, 255, 255, 0.85); */
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  margin: 0;
}

/* ==== Content Section ==== */
.card-content {
  padding: 20px;
  text-align: center;
}

.card-description {
  color: #555;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card-button {
  display: inline-block;
  background: linear-gradient(to right, #1b3a82, #0f9d58);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s ease;
}

.card-button:hover {
  background: #003c9e;
}

/* ==== Responsive Media Query ==== */
@media (max-width: 768px) {
  .responsive-destination {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }

  .destination-card {
    width: 90%;
    margin: 0 auto;
  }

  .destination-img img {
    height: 200px;
  }

  .destination-img h1 {
    font-size: 20px;
    bottom: 10px;
    left: 10px;
  }

  .card-description {
    font-size: 18px;
  }

  .card-button {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* Basic reset */
.win-header {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 999;
}

.win-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.win-logo img {
  max-width: 200px;
}

.win-nav {
  list-style: none;
  display: flex;
  gap: 25px;
}

.win-nav li a {
  text-decoration: none;
  color: #003399;
  font-weight: 500;
  transition: 0.3s;
}

.win-nav li.active a {
  color: #009966;
  border-bottom: 2px solid #009966;
}

.win-nav li a:hover {
  color: #009966;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .mobile-header .win-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 9px;
    right: -20px;
    width: 320px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    text-align: left;
    padding: 0px 0;
    margin: -17px 0 0 0;
  }

  .mobile-header .win-nav.show {
    display: flex;
  }

  .mobile-header .win-nav li {
    padding: 0px 20px;
  }

  .mobile-header .win-toggle {
    display: block;
    cursor: pointer;
    font-size: 22px;
    color: #003399;
  }

  .mobile-header nav {
    position: relative;
  }

  .mobile-header .win-nav li a {
    display: block;
    color: #003399;
  }
}

/* Hide toggle on desktop */
.win-toggle {
  display: none;
}

/* Banner Base Style */
.custom-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-slider-wrapper {
  width: 100%;
  height: auto;
}

.custom-slider ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-slide {
  position: relative;
  width: 100%;
  height: auto;
}

.custom-slide-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* -------------------- */
/* 📱 MOBILE FIX BELOW */
/* -------------------- */
@media (max-width: 768px) {

  .custom-banner,
  .custom-slider-wrapper,
  .custom-slide {
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .custom-slide-bg {
    width: 100%;
    height: auto !important;
    object-fit: cover !important;
  }

  /* Remove any empty space under the slider */
  #home {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  body {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .footer-responsive {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-responsive>div {
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-responsive img {
    margin: 0 auto 15px;
  }

  .footer-responsive h3 {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  .footer-responsive p,
  .footer-responsive a {
    font-size: 16px !important;
    margin: 5px 0 !important;
    text-align: center !important;
  }

  .footer-responsive div[style*="max-width:1200px"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
  }

  .footer-responsive .fa-solid,
  .footer-responsive .fab {
    font-size: 18px !important;
  }

  .footer-responsive .social-icons {
    justify-content: center;
    margin-top: 10px;
  }
}

@keyframes float1 {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(40px);
  }
}

@keyframes float2 {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-40px);
  }
}