@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{
    background-color: #f2f5ec;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
strong,
label {
  font-family: "Poppins", sans-serif !important;
}



/* Top Bar Styles */
.top-bar {
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: linear-gradient(to right, var(--primary-color), rgb(255 224 66));
    color: white;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.theme-section > .container{
  z-index: 1;
}
.breadcrumb-container a:hover {
    color: #fdd018 !important;
    text-decoration: none;
}

.top-bar a {
  color: #109ace;
  transition: color 0.15s;
}

.top-bar a:hover {
  color: var(--accent-color);
}

/* Header Styles */
.main-header {
    position: relative;
    bottom: 16px;
    z-index: 20;
    margin-top: 15px;
 
}

.main-header2 {
  position: fixed;
  z-index: 20;
  width: 100%;
  background-color: var(--primary-color);
  margin-top: -1.25rem;

}

.logo-container {
  width: 240px;
}

.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;
}

.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;
  background-color: #0a98d2;
}

.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 !imporatnt;
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu-btn i{
    color:white !important;
}

.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;
    height: 100vh;
    overflow: hidden;
    /* This ensures no scrollbars appear */
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes the video cover the container */
    object-position: center;
    /* This centers the video */
    z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 2rem 0;
}

.hero-search-container {
  flex: 0 0 auto;
}

/* 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;
  max-width: 953px;
  margin: 0 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: 2rem;
  flex: 0 0 auto;
}

.hero-title {
  color:white;
  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: 14px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        height: 350px;
        margin-top: 40px;
        max-width: 953px;
        margin: 20px 25px;
  }

  .hero-text {
    text-align: center;
    margin-top: 2rem;
  }

  .hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }

}

@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;
                font-weight: 600;
                color: white;
  }

  .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: 3rem auto;
  padding: 0 1rem;
  position: relative;
}

.promo-container {
  height: 350px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  position: relative;
  animation: promoGlow 3s ease-in-out infinite alternate;
}

@keyframes promoGlow {
  0% {
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  }

  100% {
    box-shadow: 0 25px 50px rgba(240, 147, 251, 0.4);
  }
}

.promo-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.promo-left {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.promo-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(11 149 206), rgba(255, 255, 255, 0.05));
  border-radius: 20px 0 0 20px;
}
/* YouTube Testimonial Section CSS */
.unique-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ------------------- Container ------------------- */
.unique-container {
  background-color:#d0fe73a1 !important;
  border-radius:10px;
  width: 100%;
  padding: 30px;
}

.unique-container .inner-container {
  width: min(1200px, 95%);
}

/* ------------------- Heading & Title ------------------- */
.unique-container .heading {
  margin-bottom: 25px;
  position: absolute;
}

.unique-container .title {
  font-size: 28px;
  font-weight: 800;
  display: flex;
  gap: 8px;
  align-items: center;
}

.unique-container .title .tripper {
    color: #1696cd;
}

.unique-container .title .hub {
    color: #fcdf43;
        background: #649a9e;
        padding: 6px 10px;
        border-radius: 8px;}

.unique-container .subtitle {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

/* ------------------- YouTube Box ------------------- */
.unique-container .yt-box {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 104px;
  background: #fdfdfd;
  box-shadow: 0 30px 36px rgba(0, 0, 0, 0.15), 0 0 31px rgba(0, 0, 0, 0.10), 0 0 51px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* ------------------- Carousel ------------------- */
.unique-container .carousel {
  position: relative;
  overflow: hidden;
}

.unique-container .track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.unique-container .slide {
  flex: 0 0 33.333%;
  padding: 10px;
}

/* ------------------- Responsive Slides ------------------- */
@media (max-width: 900px) {
  .unique-container .slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 900px) {
  .youtube-style-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    max-width: 1300px;
    padding-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .unique-container .slide {
    flex: 0 0 100%;
  }
}

/* ------------------- Thumbnails ------------------- */
.unique-container .thumb {
  width: 100%;
  height: 200px;
  background: #000;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

/* ------------------- Play Icon ------------------- */
.unique-container .play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ------------------- Captions ------------------- */
.unique-container .caption {
  margin-top: 8px;
  font-size: 14px;
  color: #222;
}

/* ------------------- Carousel Buttons ------------------- */
.unique-container .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;

}

.unique-container .btn.prev {
  left: 10px;
}

.unique-container .btn.next {
  right: 10px;
}

@media (max-width: 600px) {
  .unique-container .btn {
    display: none;
  }
}

/* ------------------- Fullscreen Player ------------------- */
.unique-container #fsPlayer {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.unique-container #fsPlayer iframe {
  width: 100%;
  height: 100%;
}
.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promo-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.promo-highlight {
  background: linear-gradient(45deg, #ffca19, #f97316, #fb7185);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 2.8rem;
  display: inline-block;
  animation: highlightGlow 2s ease-in-out infinite;
}

@keyframes highlightGlow {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }
}

.promo-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.promo-btn {
  background: linear-gradient(45deg, #ffca19, #f97316);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(255, 197, 25, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.promo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.promo-btn:hover {
  background: linear-gradient(45deg, #f97316, #ffca19);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 197, 25, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.promo-btn:hover::before {
  left: 100%;
}

.promo-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.promo-image-container {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.5s ease;
  filter: brightness(1.1) saturate(1.2);
}

.promo-container:hover .promo-image {
  transform: scale(1.2);
  filter: brightness(1.2) saturate(1.3);
}

@media (min-width: 768px) {
  .promo-title {
    font-size: 2.2rem;
  }

  .promo-container {
    margin-top: 10px;
    height: 350px;
    display: flex;
    border-radius: 20px;
    flex-direction: row;
  }

  .promo-left {
    flex: 1;
    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 20px !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: 24px;
  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: 28px 16px;

  background: radial-gradient(circle at 20% 50%, rgba(209, 0, 76, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 107, 139, 0.07) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(209, 0, 76, 0.05) 0%, transparent 50%);

}

.domestic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.domestic-header h2 {
  font-size: 24px;
  /* Bada aur readable */
  font-weight: 700;
  /* Bold for emphasis */
  color: #0a2342;
  /* Dark blue */
  margin: 0 0 12px 0;
  /* Bottom spacing */
  padding-bottom: 6px;
  /* Underline space */
  border-bottom: 3px solid transparent;
  /* Initial border transparent */
  background-image: linear-gradient(90deg, #fdba35, #f97316, #fb7185);
  /* Gradient colors */
  background-repeat: no-repeat;
  background-size: 0% 3px;
  /* Start hidden */
  background-position: left bottom;
  transition: background-size 0.5s ease;
  /* Smooth animation */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hover effect: underline animates from left to right */
.domestic-header h2:hover {
  background-size: 100% 3px;
}
.international-header h2:hover {
  background-size: 100% 3px;
}

.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: radial-gradient(circle at 20% 50%, rgba(209, 0, 76, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 107, 139, 0.07) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(209, 0, 76, 0.05) 0%, transparent 50%);
  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: 24px;
      /* Bada aur readable */
      font-weight: 700;
      /* Bold for emphasis */
      color: #0a2342;
      /* Dark blue */
      margin: 0 0 12px 0;
      /* Bottom spacing */
      padding-bottom: 6px;
      /* Underline space */
      border-bottom: 3px solid transparent;
      /* Initial border transparent */
      background-image: linear-gradient(90deg, #fdba35, #f97316, #fb7185);
      /* Gradient colors */
      background-repeat: no-repeat;
      background-size: 0% 3px;
      /* Start hidden */
      background-position: left bottom;
      transition: background-size 0.5s ease;
      /* Smooth animation */
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.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: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #fda085 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.theme-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.theme-section>.container {
  position: relative;
  z-index: 2;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.theme-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.theme-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #f093fb, #f5576c);
  border-radius: 2px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.theme-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.theme-card:hover::before {
  opacity: 1;
}

.theme-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.9) saturate(1.1);
}

.theme-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.theme-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.theme-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

.theme-overlay {
  position: absolute;
  bottom: 5px;
  left: 50px;
  right: 45px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(240, 147, 251, 0.8));
  padding: 9px 0px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.theme-card:hover .theme-overlay {
  background: linear-gradient(135deg, rgba(245, 87, 108, 0.9), rgba(253, 160, 133, 0.9));
  transform: translateY(-5px);
}

/* 🔹 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: #f2f5ec;
}

.weekend-trips h2 {
  font-size: 2rem;
  font-weight: 500;
}

.highlight {
  color: #00aaff;
  font-weight: bold;
  margin-right: 8px;
}

.see-more-btn {
  background: #0a98d2;
  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 image + dark overlay */
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('https://media.cntraveler.com/photos/643d5d0a5722b1af03793a06/16:9/w_2560%2Cc_limit/Dal%2520Lake_GettyImages-1323846766.jpg') no-repeat center center;

    background-size: cover;
    width: 100%;
    height: 45vh;
    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: 26px 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 {
  padding: 13px;
  border-radius: 1px 89px 8px 0px;
  box-shadow: 17px 10px 27px 2px #7ac0dd;
}

.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: #f2f2f2;
  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: #f2f2f2;
  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: 10px 8%;
  background: #f2f2f2;
  font-family: 'Poppins', sans-serif;
  position: relative;
  bottom: 23px;
}

/* 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: #0a98d2;
  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: #0a98d2;
  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: #0a98d2;
  color: white !important;
}

.details-link {
  color: #0a98d2;
  text-decoration: none;
  border: 1px solid #0a98d2;
  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: 10px 10px;
  border-radius: 6px;
  font-size: 20px;
  display: inline-block;
  width: 45px;
  height: 55px;
  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 20px !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;
background-color: #0a98d2;
    padding: 16px;
    border-radius: 23px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  background: #ffffff;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
}

.form-row {
  display: flex;
  gap: 20px;
}

.btn-submit {
  background-color: #fdd018;
  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;
  }
}

.about-section {
  position: relative;
  padding: 80px 0 120px;
  background: #f8fbfd;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;
  padding: 0 20px;
}

.about-image img {
  height: 547px;
  width: 100%;
  border-radius: 16px 0 0 71px;
  object-fit: cover;
}

/* Responsive for smaller screens (mobile) */
@media (max-width: 768px) {
  .about-image img {
    height: auto;
    /* Automatic height */
    max-height: 300px;
    /* Max height to keep it smaller */
    border-radius: 16px 16px 0 0;
    /* Rounded corners on top for mobile */
    width: 100%;
    /* Full width */
    object-fit: cover;
  }
}

.about-tag {
  color: #ffca19;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 20px;
}

.about-feature .icon {
  width: 50px;
  height: 50px;
  background: #0a98d2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}


/* Bottom Color Strip */
.about-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(to right, #06b6d4 50%, #ffca19 50%);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-feature {
    justify-content: center;
  }
}

/* Map */
.map-container {
  width: 100%;
  border-top: 2px solid #e0e0e0;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  border: 0;
  height: 450px;
  display: block;
}

.offers-section {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

/* Container */
.offers-container {
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD BASE */
.offer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background-size: cover;
    background-position: center;
    color: white;
}

/* CARD BACKGROUNDS */
.group-offer {
    background-image: url("./images/banner1.png");
    height:317px;
}

.honeymoon-offer {
    background-image: url("./images/banner2.png");
    height: 317px;
}





/* CONTENT TOP LAYER */
.offer-content {
    position: relative;
    z-index: 2;
    bottom: 45px;
        left: 209px;
}



.offer-content-honey{
    position: relative;
    z-index: 2;
    position: absolute;
        bottom: 17px;
            left: 203px;
        color: #fff;
}
.offer-bt {
    padding: 9px 16px;
    background: #0a98d2;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

/* TEXT STYLE */
.offer-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.offer-discount {
        margin: 8px 0;
            font-size: 36px;
            font-weight: 700;
            color: #f4dd49;
}

.offer-text {
    margin: 6px 0 20px 0;
    font-size: 15px;
    line-height: 1.4;
}

/* BUTTON */
.offer-btn {
        padding: 9px 10px;
        background: #0a98d2;
        color: #ffffff;
        border: none;
        border-radius: 18px;
        font-size: 15px;
        text-decoration: none;
        font-weight: 600;
        cursor: pointer;
}

.offer-btn:hover {
    opacity: 0.9;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .offers-container {
        grid-template-columns: 1fr;
    }

    .offer-card {
        height: 300px;
    }
}