   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Segoe UI', 'Poppins', Roboto, sans-serif;
      overflow-x: hidden;
      color: #1a3a4f;
      background: #f0f9ff;
      width: 100%;
      max-width: 100%;
    }
    html {
      overflow-x: hidden;
      width: 100%;
    }
    :root {
      --sky-primary: #0d6efd;
      --sky-deep: #0284c7;
      --sky-light: #7abfff;
      --accent-orange: #ff9f4a;
    }
    h1, h2, h3, h4, h5 {
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
      color: #0b4b6e;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 70px;
      height: 4px;
      background: var(--sky-primary);
      margin-top: 8px;
      border-radius: 4px;
    }
    .btn-sky {
      background-color: var(--sky-primary);
      border-color: var(--sky-primary);
      transition: all 0.3s ease;
      font-weight: 600;
      padding: 10px 28px;
      border-radius: 40px;
      color: white;
    }
    .btn-sky:hover {
      background-color: var(--sky-deep);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(13,110,253,0.35);
      color: white;
    }
    .btn-outline-sky {
      border-radius: 40px;
      font-weight: 600;
      border: 2px solid white;
      color: white;
      background: transparent;
    }
    .btn-outline-sky:hover {
      background: white;
      color: var(--sky-primary);
      border-color: white;
    }
    
    /* NAVBAR */
    .custom-nav {
      background: rgba(252, 249, 249, 0.96);
      backdrop-filter: blur(14px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 10px 0;
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.5rem;
      font-weight: 800;
    }
    .logo-icon {
      font-size: 1.8rem;
    }
    .nav-link {
      font-weight: 600;
      margin: 0 6px;
      transition: 0.2s;
      color: #080808 !important;
    }
    .nav-link:hover, .nav-link.active {
      color: #2e1b9a !important;
      transform: translateY(-2px);
    }
    .navbar-toggler {
      border: 2px solid #0d6efd;
      padding: 6px 10px;
      border-radius: 8px;
      background: #0d6efd;
    }
    .navbar-toggler-icon {
      filter: brightness(0) invert(1);
    }

    /* HERO SECTION - NO HORIZONTAL SCROLL */
    .hero-image-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-bg-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
      padding: 20px;
      max-width: 90%;
      margin: 0 auto;
    }
    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    @media (max-width:768px) {
      .hero-image-section { height: 90vh; }
      .hero-content h1 { font-size: 2rem; }
      .hero-content p { font-size: 1rem; }
      .hero-buttons .btn { padding: 10px 20px; font-size: 14px; }
      .section-title { font-size: 1.8rem; }
    }
    
    /* TOUR CARDS - Enhanced Fully Responsive */
    .tour-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      transition: all 0.35s ease;
      box-shadow: 0 12px 28px rgba(0,0,0,0.06);
      height: 100%;
      border: 1px solid rgba(13,110,253,0.15);
    }
    .tour-card:hover { transform: translateY(-8px); box-shadow: 0 25px 35px -12px rgba(0, 110, 230, 0.25); }
    .tour-img-box {
      position: relative;
      width: 100%;
      height: 250px;
      overflow: hidden;
      border-radius: 15px 15px 0 0;
    }
    .tour-img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.6s ease-in-out, transform 0.5s ease;
    }
    .tour-img.active { opacity: 1; }
    .tour-card:hover .tour-img { transform: scale(1.05); }
    .tour-card:hover .tour-img:nth-child(2) { opacity: 1; }
    .tour-card:hover .tour-img:nth-child(1) { opacity: 0; }
    .tour-card:hover .tour-img:nth-child(3) { animation: showThird 4s infinite; }
    @keyframes showThird {
      0% { opacity: 0; }
      50% { opacity: 1; }
      100% { opacity: 0; }
    }
    .tour-badge {
      display: inline-block;
      background: #e3f2fd;
      color: var(--sky-primary);
      font-size: 0.7rem;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 8px;
      font-weight: 600;
    }
    .btn-sm-sky {
      background: var(--sky-primary);
      border: none;
      border-radius: 40px;
      padding: 8px 20px;
      font-weight: 600;
      color: white;
      font-size: 0.85rem;
      transition: 0.2s;
    }
    .btn-sm-sky:hover { background: var(--sky-deep); color: white; transform: translateY(-2px); }
    
    /* why choose boxes */
    .choose-box {
      background: white;
      padding: 25px 12px;
      border-radius: 35px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.04);
      transition: all 0.25s;
      border: 1px solid #e2f0ff;
      height: 100%;
    }
    .choose-box i { font-size: 2.5rem; color: var(--sky-primary); margin-bottom: 0.8rem; }
    .choose-box h5 { font-weight: 700; font-size: 1.1rem; color: #1b6588; }
    .choose-box:hover { transform: scale(1.02); border-color: var(--sky-light); }
    
    /* counter section */
    .counter-section {
      background: linear-gradient(rgba(2, 62, 108, 0.88), rgba(0, 85, 120, 0.92)), url('https://images.unsplash.com/photo-1584680226833-0f680cd66ccf?q=80&w=2070&auto=format') center/cover fixed;
      padding: 70px 0;
      color: white;
    }
    .counter-section h2 { font-size: 2.5rem; font-weight: 800; }
    @media (max-width: 576px) { .counter-section h2 { font-size: 1.8rem; } }
    
    /* testimonials */
    .testimonial-card {
      background: white;
      padding: 1.5rem;
      border-radius: 28px;
      box-shadow: 0 12px 20px rgba(0,0,0,0.05);
      border-bottom: 4px solid var(--sky-primary);
      height: 100%;
    }
    .stars { color: #ffb347; margin-bottom: 12px; }
    
    /* HUMAN RIGHTS SECTION */
    .human-rights-section {
      background: linear-gradient(135deg, #e8f4fd, #d4eaff);
      padding: 50px 0;
    }
    .rights-card {
      text-align: center;
      padding: 20px;
      background: white;
      border-radius: 24px;
      transition: 0.3s;
      height: 100%;
      box-shadow: 0 6px 14px rgba(0,0,0,0.03);
    }
    .rights-card i { font-size: 2.2rem; color: var(--sky-primary); margin-bottom: 12px; }
    .rights-card h5 { font-size: 1.1rem; color: #035c8f; }
    
    /* footer */
    .footer {
      background: #043956;
      color: #e2f0fa;
      padding-top: 3rem;
      padding-bottom: 2rem;
    }
    .footer h3, .footer h4 { color: #ffe1aa; font-size: 1.3rem; }
    .footer-links { list-style: none; padding-left: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: #c4e2ff; text-decoration: none; transition: 0.2s; }
    .footer-links a:hover { color: #ffda99; padding-left: 5px; }
    .social-icons a {
      background: #1b6b93;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      margin-right: 10px;
      color: white;
      transition: 0.2s;
    }
    .social-icons a:hover { background: #ffaa33; color: #043956; }
    
    /* FLOATING BUTTONS */
    .float-call {
      position: fixed;
      bottom: 30px;
      left: 22px;
      background: #1e88e5;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: white;
      box-shadow: 0 6px 18px rgba(30,136,229,0.5);
      z-index: 999;
      text-decoration: none;
      animation: pulse-sky 1.5s infinite;
    }
    .float-whatsapp {
      position: fixed;
      bottom: 30px;
      right: 22px;
      background: #25D366;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      box-shadow: 0 6px 18px rgba(37,211,102,0.45);
      z-index: 999;
      text-decoration: none;
      animation: pulse-green 1.5s infinite;
    }
    @keyframes pulse-sky {
      0% { box-shadow: 0 0 0 0 rgba(30,136,229,0.6); }
      70% { box-shadow: 0 0 0 12px rgba(30,136,229,0); }
      100% { box-shadow: 0 0 0 0 rgba(30,136,229,0); }
    }
    @keyframes pulse-green {
      0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
      70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }
    
    /* MOBILE BOOKING BAR - No overflow */
    .mobile-booking-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #02315ed9;
      backdrop-filter: blur(14px);
      display: flex;
      justify-content: space-around;
      padding: 8px 10px;
      z-index: 1000;
      border-top: 1px solid #5f9fd0;
    }
    .mobile-booking-bar a {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.7rem;
      font-weight: 600;
      color: white;
      text-decoration: none;
      gap: 3px;
    }
    .mobile-booking-bar i { font-size: 1.3rem; }
    @media (max-width: 991px) {
      .float-call, .float-whatsapp { bottom: 75px; width: 48px; height: 48px; font-size: 24px; }
    }
    @media (min-width: 992px) { .mobile-booking-bar { display: none; } }
    
    .bg-light-custom { background: #eef5fc; }
    
    /* Fix all images, containers overflow */
    img, iframe, .container, .container-fluid, .row, [class*="col-"] {
      max-width: 100%;
    }
    .row {
      margin-left: 0;
      margin-right: 0;
    }
    .container {
      padding-left: 15px;
      padding-right: 15px;
    }
    /* Responsive text adjustment */
    @media (max-width: 576px) {
      .hero-buttons .btn-lg { padding: 8px 16px; font-size: 0.85rem; }
      .section-title:after { width: 50px; }
      .tour-img-box { height: 200px; }
      .choose-box { padding: 20px 8px; }
      .choose-box i { font-size: 2rem; }
    }
.footer-text{
  color: #dcdcdc;
  font-size: 14px;
  line-height: 1.8;
}

.design-by{
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
}

.design-by a{
  color: #00c3ff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.design-by a:hover{
  color: #ffffff;
  letter-spacing: 1px;
}

    /* HERO SECTION */
   .hero-image-section{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1{
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p{
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons .btn{
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
}

/* Mobile Responsive */
@media(max-width:768px){

  .hero-image-section{
    height: 90vh;
  }

  .hero-content h1{
    font-size: 2rem;
  }

  .hero-content p{
    font-size: 1rem;
  }

  .hero-buttons .btn{
    padding: 10px 20px;
    font-size: 14px;
  }

}
    
    /* TOUR CARDS - Enhanced */
    .tour-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      transition: all 0.35s ease;
      box-shadow: 0 12px 28px rgba(0,0,0,0.06);
      height: 100%;
      border: 1px solid rgba(13,110,253,0.15);
    }
    .tour-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 35px -12px rgba(0, 110, 230, 0.25);
    }
    .tour-card img {
      width: 100%;
      /* height: 200px; */
      object-fit: cover;
      transition: 0.4s;
    }
    .tour-card:hover img {
      transform: scale(1.03);
    }
    .tour-card h4 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #0c5e8c;
    }
    .tour-card p {
      font-size: 0.85rem;
      color: #5a6e7a;
    }
    .tour-card h5 {
      color: var(--sky-primary);
      font-weight: 800;
      font-size: 1.25rem;
    }
    .btn-sm-sky {
      background: var(--sky-primary);
      border: none;
      border-radius: 40px;
      padding: 8px 20px;
      font-weight: 600;
      color: white;
      font-size: 0.85rem;
      transition: 0.2s;
    }
    .btn-sm-sky:hover {
      background: var(--sky-deep);
      color: white;
      transform: translateY(-2px);
    }
    .tour-badge {
      display: inline-block;
      background: #e3f2fd;
      color: var(--sky-primary);
      font-size: 0.7rem;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    /* TOUR IMAGE HOVER EFFECT */
.tour-img-box{
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.tour-img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 0.5s ease;
}

.tour-img.active{
  opacity: 1;
}

.tour-card:hover .tour-img{
  transform: scale(1.05);
}

/* Hover Image Change */
.tour-card:hover .tour-img:nth-child(2){
  opacity: 1;
}

.tour-card:hover .tour-img:nth-child(1){
  opacity: 0;
}

/* Second Hover Animation */
.tour-card:hover .tour-img:nth-child(3){
  animation: showThird 4s infinite;
}

@keyframes showThird{
  0%{
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
    
    /* why choose boxes */
    .choose-box {
      background: white;
      padding: 25px 12px;
      border-radius: 35px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.04);
      transition: all 0.25s;
      border: 1px solid #e2f0ff;
    }
    .choose-box i {
      font-size: 2.5rem;
      color: var(--sky-primary);
      margin-bottom: 0.8rem;
    }
    .choose-box h5 {
      font-weight: 700;
      font-size: 1.1rem;
      color: #1b6588;
    }
    .choose-box:hover {
      transform: scale(1.02);
      border-color: var(--sky-light);
    }
    
    /* counter section */
    .counter-section {
      background: linear-gradient(rgba(2, 62, 108, 0.88), rgba(0, 85, 120, 0.92)), url('https://images.unsplash.com/photo-1584680226833-0f680cd66ccf?q=80&w=2070&auto=format') center/cover fixed;
      padding: 70px 0;
      color: white;
    }
    .counter-section h2 {
      font-size: 2.5rem;
      font-weight: 800;
    }
    
    /* testimonials */
    .testimonial-card {
      background: white;
      padding: 1.5rem;
      border-radius: 28px;
      box-shadow: 0 12px 20px rgba(0,0,0,0.05);
      border-bottom: 4px solid var(--sky-primary);
      height: 100%;
    }
    .stars {
      color: #ffb347;
      margin-bottom: 12px;
    }
    
    /* HUMAN RIGHTS SECTION */
    .human-rights-section {
      background: linear-gradient(135deg, #e8f4fd, #d4eaff);
      padding: 50px 0;
      border-top: 1px solid #bee0ff;
      border-bottom: 1px solid #bee0ff;
    }
    .rights-card {
      text-align: center;
      padding: 20px;
      background: white;
      border-radius: 24px;
      transition: 0.3s;
      height: 100%;
      box-shadow: 0 6px 14px rgba(0,0,0,0.03);
    }
    .rights-card i {
      font-size: 2.2rem;
      color: var(--sky-primary);
      margin-bottom: 12px;
    }
    .rights-card h5 {
      font-size: 1.1rem;
      color: #035c8f;
    }
    
    /* footer */
    .footer {
      background: #043956;
      color: #e2f0fa;
      padding-top: 3rem;
      padding-bottom: 2rem;
    }
    .footer h3, .footer h4 {
      color: #ffe1aa;
      font-size: 1.3rem;
    }
    .footer-links {
      list-style: none;
      padding-left: 0;
    }
    .footer-links li {
      margin-bottom: 8px;
    }
    .footer-links a {
      color: #c4e2ff;
      text-decoration: none;
      transition: 0.2s;
    }
    .footer-links a:hover {
      color: #ffda99;
      padding-left: 5px;
    }
    .social-icons a {
      background: #1b6b93;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      margin-right: 10px;
      color: white;
      transition: 0.2s;
    }
    .social-icons a:hover {
      background: #ffaa33;
      color: #043956;
    }
    
    /* FLOATING BUTTONS */
    .float-call {
      position: fixed;
      bottom: 30px;
      left: 22px;
      background: #1e88e5;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: white;
      box-shadow: 0 6px 18px rgba(30,136,229,0.5);
      transition: 0.2s;
      z-index: 999;
      text-decoration: none;
      animation: pulse-sky 1.5s infinite;
    }
    .float-call:hover {
      background: #0b5e9e;
      transform: scale(1.08);
      color: white;
    }
    .float-whatsapp {
      position: fixed;
      bottom: 30px;
      right: 22px;
      background: #25D366;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      box-shadow: 0 6px 18px rgba(37,211,102,0.45);
      transition: 0.2s;
      z-index: 999;
      text-decoration: none;
      animation: pulse-green 1.5s infinite;
    }
    .float-whatsapp:hover {
      background: #20b859;
      transform: scale(1.08);
    }
    @keyframes pulse-sky {
      0% { box-shadow: 0 0 0 0 rgba(30,136,229,0.6); }
      70% { box-shadow: 0 0 0 12px rgba(30,136,229,0); }
      100% { box-shadow: 0 0 0 0 rgba(30,136,229,0); }
    }
    @keyframes pulse-green {
      0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
      70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }
    
    /* mobile booking bar */
    .mobile-booking-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #02315ed9;
      backdrop-filter: blur(14px);
      display: flex;
      justify-content: space-around;
      padding: 8px 10px;
      z-index: 1000;
      border-top: 1px solid #5f9fd0;
    }
    .mobile-booking-bar a {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.7rem;
      font-weight: 600;
      color: white;
      text-decoration: none;
      gap: 3px;
    }
    .mobile-booking-bar i {
      font-size: 1.3rem;
    }
    @media (max-width: 991px) {
      .float-call, .float-whatsapp { bottom: 75px; width: 48px; height: 48px; font-size: 24px; }
    }
    @media (min-width: 992px) {
      .mobile-booking-bar { display: none; }
    }
    .bg-light-custom {
      background: #eef5fc;
    }

    /* about page */
    /* PAGE BANNER */
    .page-banner {
      background: linear-gradient(135deg, rgba(2, 62, 108, 0.85), rgba(0, 85, 120, 0.9)), url('assets/images/custome tour.jpg');
      background-size: cover;
      background-position: center;
      padding: 150px 0 80px;
      text-align: center;
      color: white;
    }
    .page-banner h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
    }
    .page-banner p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    @media (max-width: 768px) {
      .page-banner { padding: 120px 0 60px; }
      .page-banner h1 { font-size: 2.2rem; }
    }
    
    /* About Page Content */
    .about-page {
      padding: 80px 0;
    }
    .about-content h2 {
      font-size: 2rem;
      color: #0b4b6e;
      margin-bottom: 20px;
    }
    .about-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: #2c5a7a;
      margin-bottom: 20px;
    }
    .feature-box {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      margin-bottom: 25px;
      padding: 15px;
      background: white;
      border-radius: 20px;
      transition: 0.3s;
      border: 1px solid #e0f0ff;
    }
    .feature-box:hover {
      transform: translateX(5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      border-color: var(--sky-light);
    }
    .feature-box i {
      font-size: 2rem;
      color: var(--sky-primary);
      min-width: 50px;
    }
    .feature-box h5 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: #035c8f;
    }
    .feature-box p {
      margin-bottom: 0;
      font-size: 0.85rem;
    }
    
    /* Why Choose Boxes */
    .why-section {
      background: #e8f4fd;
      padding: 70px 0;
    }
    .why-box {
      background: white;
      text-align: center;
      padding: 35px 20px;
      border-radius: 30px;
      transition: 0.3s;
      height: 100%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      border: 1px solid #d9ecff;
    }
    .why-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 35px rgba(13,110,253,0.15);
      border-color: var(--sky-light);
    }
    .why-box i {
      font-size: 2.8rem;
      color: var(--sky-primary);
      margin-bottom: 20px;
    }
    .why-box h4 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: #0b4b6e;
    }
    .why-box p {
      color: #5a7e9c;
      font-size: 0.9rem;
    }
    
    /* Counter Section */
    .counter-section {
      background: linear-gradient(rgba(2, 62, 108, 0.88), rgba(0, 85, 120, 0.92)), url('https://images.unsplash.com/photo-1584680226833-0f680cd66ccf?q=80&w=2070&auto=format') center/cover fixed;
      padding: 70px 0;
      color: white;
    }
    .counter-section h2 {
      font-size: 2.8rem;
      font-weight: 800;
    }
    .counter-section p {
      font-size: 1.1rem;
    }
    @media (max-width: 576px) {
      .counter-section h2 { font-size: 2rem; }
    }
    
    /* Promise / Service Boxes */
    .promise-box {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      transition: 0.3s;
      height: 100%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      border: 1px solid #e0f0ff;
    }
    .promise-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    }
    .promise-box img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .promise-box h4 {
      padding: 20px 20px 10px;
      font-size: 1.2rem;
      color: #035c8f;
    }
    .promise-box p {
      padding: 0 20px 25px;
      color: #5a7e9c;
    }
    
    /* CTA Section */
    .about-cta {
      background: linear-gradient(135deg, var(--sky-primary), var(--sky-deep));
      padding: 70px 20px;
      text-align: center;
      color: white;
    }
    .about-cta h2 {
      font-size: 2.2rem;
      margin-bottom: 15px;
    }
    .about-cta p {
      font-size: 1.1rem;
      margin-bottom: 25px;
      opacity: 0.9;
    }
    .about-cta .btn {
      background: white;
      color: var(--sky-primary);
      border: none;
      font-weight: 700;
      padding: 12px 35px;
    }
    .about-cta .btn:hover {
      background: #ffde9c;
      transform: scale(1.05);
      color: #035c8f;
    }

    /* vehicles page */
     /* PAGE BANNER */
    .page-banner {
      background: linear-gradient(135deg, rgba(2, 62, 108, 0.85), rgba(0, 85, 120, 0.9));
      background-size: cover;
      background-position: center;
      padding: 150px 0 80px;
      text-align: center;
      color: white;
    }
    .page-banner h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
    }
    .page-banner p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    @media (max-width: 768px) {
      .page-banner { padding: 120px 0 60px; }
      .page-banner h1 { font-size: 2.2rem; }
    }
    
    /* VEHICLE CARDS */
    .vehicle-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      transition: all 0.35s ease;
      box-shadow: 0 12px 28px rgba(0,0,0,0.06);
      height: 100%;
      border: 1px solid rgba(13,110,253,0.15);
      position: relative;
    }
    .vehicle-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 40px -12px rgba(0, 110, 230, 0.25);
    }
    .vehicle-img {
      height: 300px;
      overflow: hidden;
    }
    .vehicle-img img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: 0.5s;
    }
    .vehicle-card:hover .vehicle-img img {
      transform: scale(1.05);
    }
    .vehicle-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--sky-primary);
      color: white;
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 700;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .vehicle-content {
      padding: 20px;
    }
    .vehicle-content h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
      color: #0b4b6e;
    }
    .vehicle-content .price {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--sky-primary);
      margin: 10px 0;
    }
    .vehicle-content .price small {
      font-size: 0.8rem;
      font-weight: normal;
      color: #6c757d;
    }
    .vehicle-features {
      list-style: none;
      padding-left: 0;
      margin: 15px 0;
    }
    .vehicle-features li {
      padding: 5px 0;
      font-size: 0.85rem;
      color: #5a7e9c;
    }
    .vehicle-features li i {
      color: var(--sky-primary);
      width: 24px;
      margin-right: 8px;
    }
    
    /* FEATURED VEHICLE SECTION */
    .featured-section {
      background: linear-gradient(135deg, #e8f4fd, #d9ecff);
      padding: 70px 0;
    }
    .featured-card {
      background: white;
      border-radius: 35px;
      overflow: hidden;
      box-shadow: 0 20px 35px rgba(0,0,0,0.08);
    }
    .featured-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
    .featured-card .featured-content {
      padding: 30px;
    }
    .featured-card h2 {
      color: #0b4b6e;
      font-size: 1.8rem;
    }
    
    /* WHY CHOOSE FLEET */
    .fleet-features {
      background: white;
      padding: 60px 0;
    }
    .fleet-icon-box {
      text-align: center;
      padding: 25px;
      background: #f0f9ff;
      border-radius: 25px;
      transition: 0.3s;
      height: 100%;
    }
    .fleet-icon-box:hover {
      transform: translateY(-5px);
      background: #e3f2fd;
    }
    .fleet-icon-box i {
      font-size: 2.5rem;
      color: var(--sky-primary);
      margin-bottom: 15px;
    }
    .fleet-icon-box h5 {
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: #035c8f;
    }
    
    /* CTA SECTION */
    .vehicle-cta {
      background: linear-gradient(135deg, var(--sky-primary), var(--sky-deep));
      padding: 60px 20px;
      text-align: center;
      color: white;
    }
    .vehicle-cta h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }
    .vehicle-cta .btn {
      background: white;
      color: var(--sky-primary);
      border: none;
      font-weight: 700;
      padding: 12px 35px;
      margin: 10px;
    }
    .vehicle-cta .btn-outline-light {
      background: transparent;
      border: 2px solid white;
      color: white;
    }
    .vehicle-cta .btn-outline-light:hover {
      background: white;
      color: var(--sky-primary);
    }
    .vehicle-cta .btn:hover {
      transform: scale(1.05);
    }

    /* Passenger Info Style */
.passenger-info-simple{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 195, 255, 0.12);
  color: #00c3ff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 18px;
  border: 1px solid rgba(0, 195, 255, 0.25);
}

.passenger-info-simple i{
  font-size: 15px;
}

/* Book Now Button Style */
.btn-sky{
  display: inline-block;
  background: linear-gradient(135deg, #00c3ff, #007bff);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.25);
}

.btn-sky:hover{
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 123, 255, 0.35);
}

/* Mobile */
@media (max-width:576px){

  .passenger-info-simple{
    font-size: 13px;
    padding: 7px 14px;
  }

  .btn-sky{
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }

}

    /* contact page */
    /* PAGE BANNER */
    .page-banner {
      background: linear-gradient(135deg, rgba(2, 62, 108, 0.85), rgba(0, 85, 120, 0.9));
      background-size: cover;
      background-position: center;
      padding: 150px 0 80px;
      text-align: center;
      color: white;
    }
    .page-banner h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
    }
    .page-banner p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    @media (max-width: 768px) {
      .page-banner { padding: 120px 0 60px; }
      .page-banner h1 { font-size: 2.2rem; }
    }
    
    /* Contact Info Cards */
    .contact-card {
      background: white;
      border-radius: 28px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      border: 1px solid rgba(13,110,253,0.15);
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 35px rgba(13,110,253,0.15);
      border-color: var(--sky-light);
    }
    .contact-card i {
      font-size: 2.5rem;
      color: var(--sky-primary);
      margin-bottom: 20px;
    }
    .contact-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: #0b4b6e;
    }
    .contact-card p {
      color: #5a7e9c;
      margin-bottom: 5px;
      font-size: 1rem;
    }
    .contact-card .contact-link {
      display: inline-block;
      margin-top: 15px;
      color: var(--sky-primary);
      font-weight: 600;
      text-decoration: none;
    }
    .contact-card .contact-link:hover {
      color: var(--sky-deep);
    }
    
    /* Contact Form Section */
    .contact-form-section {
      padding: 80px 0;
      background: #e8f4fd;
    }
    .form-card {
      background: white;
      border-radius: 35px;
      padding: 40px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }
    .form-control, .form-select {
      border-radius: 12px;
      padding: 12px 18px;
      border: 1px solid #d0e2f0;
      font-size: 0.95rem;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--sky-primary);
      box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
    }
    .form-label {
      font-weight: 600;
      color: #0b4b6e;
      margin-bottom: 8px;
    }
    
    /* Map Section */
    .map-section {
      padding: 60px 0;
      background: white;
    }
    .map-container {
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    .map-container iframe {
      width: 100%;
      height: 400px;
      border: none;
    }
    
    /* Business Hours */
    .hours-section {
      background: white;
      padding: 60px 0;
    }
    .hours-card {
      background: #f0f9ff;
      border-radius: 25px;
      padding: 30px;
      text-align: center;
    }
    .hours-card i {
      font-size: 2rem;
      color: var(--sky-primary);
      margin-bottom: 15px;
    }
    .hours-list {
      list-style: none;
      padding-left: 0;
      margin-top: 20px;
    }
    .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #d9ecff;
    }
    .hours-list li span:first-child {
      font-weight: 600;
      color: #0b4b6e;
    }
    .hours-list li span:last-child {
      color: #5a7e9c;
    }
    
/*tour page*/
     /* Tour Banner */
    .tour-detail-banner {
      position: relative;
      height: 55vh;
      min-height: 320px;
      overflow: hidden;
      margin-top: 70px;
    }
    .banner-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
    }
    .tour-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #022b36cc, #021217b3);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 0 1rem;
    }
    .tour-overlay h1 {
      font-size: 2.4rem;
      font-weight: 800;
      text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
    }
    .tour-overlay p {
      font-size: 1.2rem;
      background: #00000066;
      padding: 6px 16px;
      border-radius: 40px;
      backdrop-filter: blur(4px);
    }
    .btn-sky {
      background: #00a8c6;
      border: none;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: bold;
      color: white;
      transition: 0.2s;
    }
    .btn-sky:hover {
      background: #008ba8;
      transform: scale(1.02);
      color: white;
    }

    /* section title */
    .section-title {
      font-weight: 700;
      border-left: 6px solid #00a8c6;
      padding-left: 18px;
    }
    .bg-light-custom {
      background: #eef2f5;
    }

    /* place cards styling */
    .place-card {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      background: white;
      border-radius: 28px;
      margin-bottom: 1.8rem;
      padding: 0.9rem;
      box-shadow: 0 6px 16px rgba(0,0,0,0.03);
      transition: all 0.25s ease;
      border: 1px solid #e2edf2;
    }
    .place-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12);
    }
    .place-img {
      flex: 0 0 150px;
      height: 130px;
      border-radius: 24px;
      overflow: hidden;
    }
    .place-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.3s;
    }
    .place-card:hover .place-img img {
      transform: scale(1.03);
    }
    .place-content {
      flex: 1;
    }
    .place-badge {
      background: #e3f2f5;
      color: #0b5e7a;
      font-size: 0.75rem;
      padding: 4px 12px;
      border-radius: 30px;
      display: inline-block;
      margin-bottom: 10px;
    }
    .place-content h4 {
      font-size: 1.35rem;
      margin-bottom: 8px;
      font-weight: 700;
      color: #1f4e6c;
    }

    /* RIGHT SIDEBAR with TWO CARDS */
    .booking-sidebar {
      position: sticky;
      top: 100px;
    }
    .booking-box {
      background: white;
      border-radius: 32px;
      padding: 1.6rem;
      box-shadow: 0 20px 35px -8px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
      border: 1px solid #dcf0f5;
    }
    .price {
      font-size: 2.5rem;
      font-weight: 800;
      color: #0e5e7e;
    }
    .ac-note {
      background: #fef7e0;
      padding: 6px 12px;
      border-radius: 28px;
      display: inline-block;
      font-size: 0.85rem;
    }
    .whatsapp-btn-large, .call-btn-large {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 12px;
      border-radius: 60px;
      font-weight: 700;
      text-decoration: none;
      margin-top: 12px;
      transition: 0.2s;
    }
    .whatsapp-btn-large {
      background: #25D366;
      color: white;
    }
    .call-btn-large {
      background: #0b5f7a;
      color: white;
    }
    .whatsapp-btn-large:hover, .call-btn-large:hover {
      filter: brightness(0.92);
      color: white;
    }

    /* ========== 2 NEW CARDS STYLES ========== */
    .info-card-modern {
      background: white;
      border-radius: 28px;
      padding: 1.3rem 1.4rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 12px 22px -8px rgba(0,0,0,0.08);
      transition: transform 0.2s, box-shadow 0.2s;
      border: 1px solid #e0f0f5;
    }
    .info-card-modern:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 28px -10px rgba(0, 104, 128, 0.15);
    }
    .card-icon {
      font-size: 2rem;
      color: #00a8c6;
      margin-bottom: 10px;
    }
    .info-card-modern h5 {
      font-weight: 800;
      font-size: 1.2rem;
      color: #134b63;
      margin-bottom: 10px;
    }
    .info-card-modern p {
      color: #2c5a6e;
      font-size: 0.9rem;
      line-height: 1.4;
      margin-bottom: 0;
    }
    .help-list {
      list-style: none;
      padding-left: 0;
      margin-top: 12px;
    }
    .help-list li {
      margin-bottom: 8px;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .help-list li i {
      width: 22px;
      color: #009bb8;
    }

    /* Included section */
    .included-section {
      background: #e4f3f7;
      padding: 2.5rem 1rem;
      margin-top: 1rem;
    }
    .include-item {
      background: white;
      border-radius: 60px;
      padding: 12px 12px;
      margin: 8px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.02);
    }
    .include-item i {
      font-size: 2rem;
      color: #008aa8;
    }

    /* footer */
    .footer {
      background: #0a2f3b;
      color: #e6f7fc;
      padding: 2.5rem 0 1rem;
    }
    .footer-links {
      list-style: none;
      padding-left: 0;
    }
    .footer-links li a {
      color: #c2e9f0;
      text-decoration: none;
    }
    .social-icons a {
      background: #1f657c;
      display: inline-flex;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      color: white;
      transition: 0.2s;
    }

    
    @media (min-width: 992px) {
      .mobile-booking-bar { display: none; }
      .float-call, .float-whatsapp { display: flex; }
    }
    @media (max-width: 768px) {
      .place-card {
        flex-direction: column;
      }
      .place-img {
        width: 100%;
        height: 180px;
      }
      .tour-overlay h1 {
        font-size: 1.8rem;
      }
    }