@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 
        :root {
            --primary-color: #0a98d2;
            --secondary-color: #000000;
            --accent-color: #fbbf24;
            --text-dark:black;
        }

        body, h1, h2, h3, h4, h5 , h6 , p , span, div, strong, label{
             font-family: "Poppins", sans-serif !important;
        }
        
        body {
            padding-top: 20px;
        }
        
        /* Top Bar Styles */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 50;
            background: linear-gradient(to right, var(--primary-color), rgba(0, 0, 0, 0.8));
            color: white;
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-bar a {
            color: white;
            transition: color 0.15s;
        }
        
        .top-bar a:hover {
            color: var(--accent-color);
        }
        
        /* Header Styles */
        .main-header {
            position: relative;
            z-index: 20;
            margin-top: 0px;
            margin-top: 1rem;
            background: transparent;
        }
        .main-header2 {
            position: fixed;
            z-index: 20;
            width: 100%;
            background-color: var(--primary-color);
            margin-top: -1.25rem;
            
        }
        
        .logo-container {
            width: 180px;
        }
        
        .desktop-nav {
            display: flex;
            gap: 2.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            background-color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .desktop-nav2 {
            display: flex;
            gap: 2.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
        }
        
        .desktop-nav a {
            color: white;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .desktop-nav a:hover {
            color: var(--accent-color);
        }
        .desktop-nav2 a {
            color: white;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .desktop-nav2 a:hover {
            color: var(--accent-color);
        }
        
        /* Mobile Menu Styles */
        .mobile-menu-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.9);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            z-index: 40;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-menu-overlay.active {
            transform: translateX(0);
        }
        
        .mobile-menu-overlay a {
            color: white;
            text-decoration: none;
        }
        
        .mobile-menu-overlay a:hover {
            color: var(--accent-color);
        }
        
        .close-menu-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Responsive adjustments */
        @media (max-width: 767px) {
            .desktop-nav {
                display: none;
            }
        }
        
        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }
        
        
        
        
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: url('images/bg.png') no-repeat center center;
            background-size: cover;
            color: white;
        }
        
        
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* Search Bar */
        .search-bar {
            background-color: white;
            border-radius: 4rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 0.2rem 0.5rem;
            display: flex;
            flex-direction: column;
            height: 80px;
            margin-top: 90px;
            max-width: 953px;
            margin: 105px auto;
        }
        
        .search-field {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .search-field-icon {
            background-color: white;
            border: 1px solid var(--primary-color);
            border-radius: 0.5rem;
            padding: 0.75rem;
            color: var(--primary-color);
            margin-right: 0.75rem;
        }
        
        .search-field-content {
            flex: 1;
        }
        
        .search-field-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }
        
        .search-field-input {
            border: none;
            outline: none;
            font-size: 0.875rem;
            color: var(--text-dark);
            width: 100%;
        }
        
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .search-button:hover {
            background-color: #2563eb;
        }
        
        /* Hero Text */
        .hero-text {
            text-align: center;
            margin-top: -4rem;
        }
        
        .hero-title {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Section Styling */
        .section {
            padding: 4rem 0;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .section-subtitle {
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .search-bar {
                background-color: white;
            border-radius: 0px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0.5rem;
            display: flex;
            flex-direction: column;
            height: 200px;
            margin-top: 40px;
            max-width: 953px;
            margin: 20px auto;
            }
            .hero-text {
            text-align: center;
            margin-top: 2rem;
        }

        }    
        @media (min-width: 768px) {
            .search-bar {
                flex-direction: row;
                align-items: center;
                padding: 1rem 1.5rem;

            }
            
            .search-field {
                margin-bottom: 0;
                margin-right: 1rem;
                flex: 1;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
            }
        }
        
        /* Custom Select Styling */
        .custom-select {
            position: relative;
        }
        
        .custom-select select {
            appearance: none;
            background-color: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 0.5rem 2rem 0.5rem 0.75rem;
            font-size: 0.875rem;
            color: var(--text-dark);
            width: 100%;
            cursor: pointer;
        }
        
        .custom-select::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            right: 0.75rem;
            transform: translateY(-50%);
            pointer-events: none;
            color: #9ca3af;
        }

        

        
        
        .promo-banner {
            max-width: 1300px;
            margin: 0 auto;
            border-radius: 0px;
            padding-bottom: 3rem;
        }
        
        .promo-container {
            height: 300px;
            background-color: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .promo-left {
            background-color: whitesmoke;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .promo-title {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .promo-highlight {
            color: var(--primary-color);
        }
        
        .promo-text {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        
        .promo-btn {
            background-color: var(--primary-color);
            color: white;
            font-weight: 500;
            padding: 0.5rem 1.25rem;
            border-radius: 0.25rem;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.2s;
            max-width: 160px;
            text-align: center;
        }
        
        .promo-btn:hover {
            background-color: #2563eb;
            color: white;
        }
        
        .promo-image-container {
            position: relative;
            height: 16rem;
            overflow: hidden;
        }
        
        .promo-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @media (min-width: 768px) {
            .promo-title {
                font-size: 1.875rem;
            }
            
            .promo-container {
                margin-top: 10px;
                height: 300px;
                display: flex;
                border-radius: 0px;
                flex-direction: row;
            }
            
            .promo-left {
                flex: 1;
                background: whitesmoke;
                padding: 3rem;
            }
            
            .promo-image-container {
                flex: 1;
                height: auto;
            }
        }
    
    

    .why-choose {
  padding: 100px 160px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: left;
  font-size: 25px;
  font-weight: 500;
  color: #0a2342;
  margin-bottom: 40px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.choose-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.choose-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.choose-icon {
  font-size: 40px;
  color: #009cde;
  margin-bottom: 20px;
}

.choose-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0a2342;
  margin-bottom: 15px;
}

.choose-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ✅ Responsive Design */
@media (max-width: 991px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    text-align: center;
  }

  .choose-card {
    text-align: center;
  }

  .choose-icon {
    margin: 0 auto 15px;
  }
}

@media (max-width: 576px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .choose-card {
    padding: 25px 20px;
    width: 300px;
  }
  .why-choose{

    padding: 17px 40px !important;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

  .choose-card h4 {
    font-size: 18px;
  }

  .choose-card p {
    font-size: 14px;
  }
}



.special-offers {
  background: #f1f8ff;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  color: #0a2342;
  margin-bottom: 30px;
}

.offer-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  filter: brightness(0.75);
  transition: all 0.3s ease;
}

.offer-card:hover img {
  filter: brightness(0.9);
  transform: scale(1.03);
}

.offer-content {
  position: absolute;
  bottom: 90px;
  left: 20px;
  color: #fff;
}

.offer-content h5 {
  font-size: 15px;
  font-weight: 600;
  color: #fdbb2d;
  margin-bottom: 8px;
}

.offer-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.offer-content p {
  font-size: 14px;
  color: #e0e0e0;
  margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .offer-card img {
    height: 220px;
  }

  .section-title {
    text-align: center;
  }

  .offer-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .offer-card img {
    height: 200px;
  }

  .offer-content {
    left: 15px;
    bottom: 15px;
  }

  .offer-content h3 {
    font-size: 16px;
  }
}


.domestic-section {
  padding: 0px 0;
  margin-top: 50px;
  background: #fff;
  
}

.domestic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.domestic-header h2 {
  font-size: 20px;
  font-weight: 500;
  color: #0a2342;
  margin: 0;
}

.view-all {
  font-size: 16px;
  color: #009cde;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #007bb8;
}

.domestic-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.domestic-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.domestic-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.domestic-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  z-index: 2;
}

.domestic-content h5 {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 5px;
}

.domestic-content h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

/* Responsive Header Center */
@media (max-width: 768px) {
  .domestic-header {
    text-align: center;
  }

  .domestic-header h2 {
    width: 100%;
    margin-bottom: 10px;
  }

  .view-all {
    width: 100%;
    text-align: center;
  }
}

.international-section {
  padding: 60px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.international-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.international-header h2 {
  font-size: 20px;
  font-weight: 500;
  color: #0a2342;
  margin: 0;
}

.view-all {
  font-size: 16px;
  color: #009cde;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #007bb8;
}

.international-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.international-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.international-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.international-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  z-index: 2;
}

.international-content h5 {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 5px;
}

.international-content h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

/* Responsive Header Center */
@media (max-width: 768px) {
  .international-header {
    text-align: center;
  }

  .international-header h2 {
    width: 100%;
    margin-bottom: 10px;
  }

  .view-all {
    width: 100%;
    text-align: center;
  }
}

.theme-section {
  background: #f4f8ff;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.theme-title {
  font-size: 30px;
  font-weight: 600;
  color: #0a2342;
  margin-bottom: 40px;
  text-align: left;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.theme-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.theme-card img {
  width: 100%;
  height: 230px;
  filter: brightness(0.8);
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.theme-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.theme-card:hover img {
  transform: scale(1.08);
  
}

.theme-overlay {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
}

/* 🔹 Responsive */
@media (max-width: 992px) {
  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .theme-card img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .theme-grid {
        
  }

  .theme-card img {
    height: 200px;
  }

  .theme-title {
    text-align: center;
  }
}

.weekend-trips {
  background: #fff;
}
.weekend-trips h2 {
  font-size: 2rem;
  font-weight: 500;
}
.highlight {
  color: #00aaff;
  font-weight: bold;
  margin-right: 8px;
}
.see-more-btn {
  background: #00aaff;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-weight: 600;
  transition: 0.3s;
}
.see-more-btn:hover {
  background: #0088cc;
}

.trip-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.trip-card:hover {
  transform: scale(1.03);
}
.trip-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.trip-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.trip-info p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.trip-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.trip-info span {
  font-size: 16px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .trip-card img {
    height: 280px;
    width: 100%;
  }
  .swiper-slide{
   width: 200px !important;

  }
  .trip-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
  .weekend-trips h2 {
    font-size: 1.5rem;
  }
}

.testimonials {
  background: #fff;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #1e1e1e;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.03);
}

.video-card iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
}

/* Swiper Pagination Dots */
.swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #0056b3;
  opacity: 1;
}

.footer {
  background-color: #0a0d3b;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 40px 0;
}

.footer-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-top-bar p {
  margin: 0;
  color: #d9d9d9;
}

.footer-top-bar a {
  color: #00aaff;
  text-decoration: none;
}

.book-now-btn {
  background: #00aaff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.book-now-btn:hover {
  background: #008ed4;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.newsletter-form button {
  background: #00aaff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #008ed4;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #d9d9d9;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00aaff;
}

.contact-phone {
  color: #00aaff;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 14px;
}

.payment-icons img {
  width: 45px;
  margin-left: 8px;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-buttons a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.float-whatsapp {
  background-color: #25d366;
}

.float-call {
  background-color: #007bff;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-top-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .payment-icons img {
    margin: 5px;
  }
}
/* Page Banner */
.page-banner {
  position: relative;
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content h1 {
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.breadcrumb-wrapper {
  background: #fff;
  padding: 15px 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.breadcrumb-wrapper p {
  margin: 0;
  text-align: left;
  color: #333;
}

.breadcrumb-wrapper a {
  color: #007acc;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-wrapper a:hover {
  text-decoration: underline;
}

.breadcrumb-wrapper span {
  color: #000;
  font-weight: 00;
}

/* Responsive */
@media (max-width: 992px) {
  .page-banner {
    height: 280px;
  }
  .banner-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .page-banner {
    height: 220px;
  }
  .banner-content h1 {
    font-size: 32px;
  }
  .breadcrumb-wrapper {
    text-align: center;
  }
}

.about-section {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.about-image-wrapper {
  position: relative;
  display: inline-block;
}

.about-image-wrapper .main-img {
  border-radius: 30px;
  width: 100%;
  height: auto;
}

.about-image-wrapper .circle-img {
  position: absolute;
  bottom: 55px;
  left: -40px;
  border-radius: 50%;
  overflow: hidden;
  width: 180px;
  height: 180px;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.years-experience {
  position: absolute;
  top: 0px;
  right: 0;
  background: #009FE3;
  color: #fff;
  padding: 12px 25px;
  border-radius: 0px 8px 0px 70px;
  text-align: center;
}

.years-experience h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.years-experience p {
  font-size: 14px;
  margin: 0;
}

.happy-clients {
  position: absolute;
  bottom: 0px;
  right: 0;
  background: #064E3B;
  color: #fff;
  padding: 12px 25px;
  border-radius: 70px 0 10px 0px;
  text-align: center;
}

.happy-clients h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.happy-clients p {
  font-size: 14px;
  margin: 0;
}

.about-content .section-subtitle {
  color: #007acc;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}

.about-content .section-title {
  font-size: 30px;
  margin-top: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-content p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.about-content .btn-primary {
  background: #009FE3;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 8px;
  transition: 0.3s;
}

.about-content .btn-primary:hover {
  background: #0077b6;
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    text-align: center;
  }

  .about-image-wrapper .circle-img {
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
  }

  .about-image-wrapper .years-experience,
  .about-image-wrapper .happy-clients {
    font-size: 14px;
    padding: 8px 18px;
  }
}

@media (max-width: 576px) {
  .about-content .section-title {
    font-size: 30px;
  }

  .about-image-wrapper .circle-img {
    width: 130px;
    height: 130px;
    border: 5px solid #fff;
  }
}
/* ==============================
   India Tour Banner Section
============================== */
.india-banner-section {
  position: relative;
  width: 100%;
  height: 50vh;
  background: url('https://t3.ftcdn.net/jpg/03/22/52/98/360_F_322529875_xskoq6Pg8vzxnDR3FNigstBWZAC2g14U.jpg') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.india-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.india-banner-content {
  position: relative;
  z-index: 2;
}

.india-banner-content h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* ==============================
   Breadcrumb Section
============================== */
.india-breadcrumb-section {
  background: #fff;
  padding: 6px 8%;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #444;
}

.india-breadcrumb-section a {
  color: #0091d5;
  text-decoration: none;
  font-weight: 500;
}

.india-breadcrumb-section a:hover {
  text-decoration: underline;
}

/* ==============================
   Responsive Design
============================== */
@media (max-width: 992px) {
  .india-banner-section {
    height: 50vh;
  }

  .india-banner-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .india-banner-section {
    height: 40vh;
  }

  .india-banner-content h1 {
    font-size: 1.8rem;
  }

  .india-breadcrumb-section {
    padding: 10px 5%;
    font-size: 14px;
  }
}

/* ==============================
   Explore India Section
============================== */
.explore-india-section {
  padding: 0px 5%;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.explore-india-title {
  font-size: 2rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 15px;
}

.explore-india-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  font-weight: 400;
  max-width: 1211px;
}

/* ==============================
   Responsive Design
============================== */
@media (max-width: 992px) {
  .explore-india-section {
    padding: 50px 8%;
  }

  .explore-india-title {
    font-size: 1.8rem;
  }

  .explore-india-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .explore-india-section {
    padding: 40px 6%;
    text-align: left;
  }

  .explore-india-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .explore-india-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===========================
   Packages Filter Section
=========================== */
.packages-container {
  display: flex;
  gap: 25px;
  padding: 60px 8%;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Sidebar */
.packages-filter-sidebar {
  flex: 0 0 303px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 20px;
  height: fit-content;
}

.filter-title {
  font-size: 18px;
  font-weight: 600;
  background: #007bff;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  margin: -20px -20px 20px -20px;
}

.filter-group h6 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.filter-group label {
  display: block;
  margin: 6px 0;
  font-size: 14px;
  color: #333;
}

.see-more {
  color: #007bff;
  font-size: 14px;
  text-decoration: none;
}

.price-range {
  width: 100%;
  margin: 10px 0;
}

/* Packages List */
.packages-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Single Card */
.package-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  flex-wrap: wrap;
}

.package-img {
  width: 250px;
  height: 215px;
  object-fit: cover;
  border-radius: 10px;
}

.package-info {
  flex: 1;
  min-width: 250px;
}

.package-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.package-location {
  color: #555;
  font-size: 14px;
  margin-bottom: 5px;
}

.package-rating, {
  font-size: 14px;
  color: #777;
}
.package-duration {
  font-size: 14px;
  color: black;
  font-weight: 600;
}



/* Price & Buttons */
.package-price-box {
  text-align: right;
  min-width: 200px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.new-price {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.new-price span {
  font-size: 14px;
  color: #555;
}

.enquiry-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 6px 18px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.contact-btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  justify-content: flex-end;
}

.whatsapp-btn,
.call-btn {
  width: 96px;
  height: 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.call-btn {
  background: #007bff;
  color: white !important;
}

.details-link {
    color: #007bff;
    text-decoration: none;
    border: 1px solid #007bff;
    padding: 6px 42px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    top: 14px;
   
   
}

.package-icons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.icon-box {
  text-align: center;
  color: #000;
}

.icon-box i {
  background-color: #00a2e8;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-size: 20px;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 22px;
}

.icon-box p {
  font-size: 15px;
  margin-top: 6px;
  font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
  .package-icons {
    gap: 15px;
  }

  .icon-box i {
    padding: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .whatsapp-btn,
.call-btn{
    width: 138px;
}

  .icon-box p {
    font-size: 14px;
  }
}


/* ===========================
   Responsive
=========================== */
@media (max-width: 992px) {
  .packages-container {
    flex-direction: column;
  }
  .details-link {
    padding: 6px 82px !important;
  }
  .package-card{
    padding: 22px !important;
  }

  .packages-filter-sidebar {
    width: 100%;
  }

  .package-card {
    flex-direction: column;
    text-align: center;
  }

  .package-img {
    width: 100%;
    height: 220px;
  }

  .package-price-box {
    text-align: center;
    width: 100%;
  }

  

  .contact-btns {
    justify-content: center;
  }
}
.contact-section {
  padding: 60px 20px;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-subtitle {
  color: #008dd2;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}

.contact-title {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icon {
  background-color: #008dd2;
  color: #fff;
  font-size: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info p {
  color: #333;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #008dd2;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #000;
}

/* Right Form */
.contact-form {
  flex: 1;
  min-width: 350px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  background: #fff7f2;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
}

.form-row {
  display: flex;
  gap: 20px;
}

.btn-submit {
  background-color: #00a2e8;
  color: #fff;
  border: none;
  padding: 14px 25px;
  font-weight: 600;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #008dd2;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
      .package-price-box {
        margin-top: -35px;
      }

  .form-row {
    flex-direction: column;
  }

  .contact-title {
    font-size: 28px;
  }
  .map-container iframe {
    height: 350px;
  }
}
/* Map */
.map-container {
  width: 100%;
  border-top: 2px solid #e0e0e0;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  border: 0;
  height: 450px;
  display: block;
}