/* ===========================
   THEME VARIABLES
   =========================== */
:root {
  --primary: #1da6d8;
  /* sky blue */
  --primary-soft: #e3f7fd;
  --secondary: #b23343;
  /* light maroon */
  --secondary-soft: #fde8eb;
  --dark: #1f2937;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-body: #ffffff;
  --bg-light-alt: #f5f7fb;
  --footer-bg: #0b1220;
  --footer-border: #151b2c;
  --footer-text: #e5e7eb;
  --footer-muted: #9ca3af;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* ===========================
   GLOBAL RESET
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
}

p {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

a {
  text-decoration: none;
}












/* ===========================
   SECTION BASICS
   =========================== */
.section-padding {
  padding-block: 80px;
  background-color: #f0f0f0;
}

@media (max-width: 575.98px) {
  .section-padding {
    padding-block: 60px;
  }
}

.bg-light-alt {
  background-color: var(--bg-light-alt);
}


.section-title .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.section-title h2 {
  margin-top: 0.75rem;
  font-weight: 700;
}





/* Theme Color */
:root {
  --theme-color: #4f4f4f;
}









.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.icon-list i {
  color: var(--primary);
  margin-top: 0.15rem;
}




/* ===========================
   ACHIEVEMENTS
   =========================== */
.achievements-section {
  background: radial-gradient(circle at top left, var(--secondary), #111827);
  position: relative;
  overflow: hidden;
}

.achievements-section::before,
.achievements-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 166, 216, 0.45), transparent 65%);
  opacity: 0.5;
}

.achievements-section::before {
  top: -90px;
  left: -80px;
}

.achievements-section::after {
  bottom: -120px;
  right: -100px;
}

.achievements-section h2,
.achievements-section .subtitle,
.achievements-section p {
  color: #ffffff;
}

.achievement-card {
  position: relative;
  z-index: 2;
}

.achievement-card .counter {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
}

.achievement-card .suffix {
  font-size: 1.3rem;
  font-weight: 700;
  margin-left: 0.1rem;
  color: #ffffff;
}

.achievement-card p {
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e5e7eb;
}






/* Contact Section */
.premium-contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f2f8ff, #ffffff);
}

/* Section subtitle */
.contact-subtitle {
  font-size: 15px;
  color: #444;
  margin-top: 8px;
}

/* Info Panel */
.contact-info-panel {
  background: #ffffff;
  color: #000000;
  padding: 40px 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(30, 136, 229, 0.15);
  border-left: 5px solid #ff8c00;
  /* orange accent */
}

.contact-info-panel h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000000;
}

.contact-info-panel p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #333;
}

/* Info Items */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item i {
  font-size: 18px;
  margin-top: 4px;
  color: #1e88e5;
  /* light blue icons */
}

.info-item a {
  color: #000000;
  text-decoration: none;
}

.info-item a:hover {
  color: #1e88e5;
}

/* Form Panel */
.contact-form-panel {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-panel h4 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 20px;
}

/* Inputs */
.contact-form-panel .form-control {
  border-radius: 30px;
  padding: 12px 18px;
  font-size: 14px;
  border: 1px solid #dcdcdc;
}

.contact-form-panel .form-control:focus {
  border-color: #1e88e5;
  /* light blue focus */
  box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.15);
}

/* Button */
.contact-btn {
  background: linear-gradient(135deg, #ff8c00, #ff8c00);
  /* orange CTA */
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 22px;
  }
}






/* ===========================
   MAP
   =========================== */
.map-section {
  position: relative;
  background: linear-gradient(120deg, #0f172a, #082f49);
  color: #ffffff;
}

.map-section .section-title .subtitle,
.map-section .section-title h2 {
  color: #ffffff;
}

.map-container {
  position: relative;
  height: 320px;
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(29, 166, 216, 0.28), transparent 60%);
  pointer-events: none;
}


/* ===========================
   ANIMATIONS – REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */
@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
  }

  .hero-content .lead {
    margin-inline: auto;
  }

  .hero-content .d-flex {
    justify-content: center;
  }
}




/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366;
}

/* Call Button */
.call-btn {
  background-color: #007bff;
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.rental-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: .3s ease;
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.rental-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.rental-badge {
  background: #0d6efd15;
  color: #0d6efd;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.rent-btn {
  display: inline-block;
  background: #4f4f4f;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
























.img-fluideded {
  width: 100%;
  height: 380px;
}

.gallery-section {
  padding: 20px 0;
  background: linear-gradient(160deg, #f3f3f3, #f3f3f3);
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .gallery-item img {
    height: 190px;
  }
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 170px;
  }
}








/* ========================= PREMIUM HEADER / NAVBAR ========================= */
.premium-header {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
}


/* Logo */
.brand-logo-img {
  height: 80px;
  width: 140px;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f4b400;
}

/* Underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f4b400;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Call Button */
.nav-call-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ff8c00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.4);
}

.nav-call-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Mobile Menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fafafa;
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .nav-call-btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
}










/* =========================
   TOP BAR – PREMIUM (ORANGE + WHITE)
========================= */

.top-bar {
  background: #ffffff;
  /* WHITE BACKGROUND */
  color: #111111;
  /* BLACK TEXT */
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f1f1;
}

/* Left Info */
.top-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333333;
  /* DARK TEXT */
}

.top-left i {
  color: #ff9800;
  /* ORANGE ICON */
  font-size: 14px;
}

/* Center Urgent */
.top-center {
  color: #111111;
  font-size: 14px;
  font-weight: 600;
}

.top-center .urgent-call {
  color: #ff9800;
  /* ORANGE CALL */
  font-weight: 700;
  margin-left: 6px;
  text-decoration: none;
  position: relative;
}

.top-center .urgent-call::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #ff9800;
  /* ORANGE UNDERLINE */
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.top-center .urgent-call:hover::after {
  transform: scaleX(1);
}

/* Right Social */
.follow-text {
  font-size: 13px;
  color: #555555;
}

.top-social {
  color: #111111;
  /* BLACK ICON */
  font-size: 14px;
  transition: all 0.3s ease;
}

.top-social:hover {
  color: #ff9800;
  /* ORANGE HOVER */
  transform: translateY(-2px);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 767px) {
  .top-bar {
    text-align: center;
    font-size: 13px;
  }

  .top-center {
    font-size: 13px;
  }
}










.hero-section {
  position: relative;
}

.hero-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-one {
  background-image: url('../img/b1.png');
}

.slide-two {
  background-image: url('../img/b.png');
}

.head {
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 650px;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: #ff9800;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #ff9800;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #f1f1f1;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.hero-btn-primary {
  background: #ff9800;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
}

.hero-btn-primary:hover {
  background: #e68900;
}

.hero-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 11px 30px;
  border-radius: 30px;
  text-decoration: none;
}

.hero-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-slide {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}

















:root {
  --primary-blue: #0d6efd;
  --dark-blue: #003eaa;
  --accent-orange: #ff8c00;
  --light-orange: #fff3e0;
}

/* Section */
.about-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f9fbff, #fff);
}

/* Heading */
.section-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.num {
  color: white;
}

.section-heading h2 span {
  color: var(--primary-blue);
}

.section-heading p {
  color: #666;
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 16px;
}

/* Image */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 470px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-orange), #ff6a00);
  color: #fff;
  padding: 15px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.45);
}

.experience-badge h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.experience-badge span {
  font-size: 13px;
}

/* Content */
.about-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.about-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e6fffc;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  font-size: 14px;
  transition: 0.3s;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item i {
  color: var(--accent-orange);
  font-size: 18px;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ff8c00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.4);
}

.about-btn i {
  margin-right: 6px;
}

.about-btn:hover {
  background: linear-gradient(135deg,
      var(--accent-orange),
      var(--primary-blue));
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .about-image img {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
}

















/* ===== Fleet Section ===== */
.services-section {
  padding: 90px 0;
  background: #ffffff;
  /* WHITE SECTION */
}

/* Heading */
.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: #111111;
  /* BLACK TEXT */
}

.section-heading span {
  color: #ff8c00;
  /* ORANGE HIGHLIGHT */
}

.section-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #444444;
}

/* ===== Service Card ===== */
.service-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid #ffe1bf;
  /* LIGHT ORANGE BORDER */
}

.service-img,
.service-name,
.service-desc,
.service-cta {
  position: relative;
  z-index: 2;
}

/* Hover Effect */
.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 55px rgba(255, 140, 0, 0.25);
}

/* Image */
.service-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

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

.service-box:hover img {
  transform: scale(1.08);
}

/* Title */
.service-name {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  /* BLACK */
  margin-bottom: 8px;
}

/* Description */
.service-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* CTA Button */
.service-cta {
  display: inline-block;
  padding: 11px 32px;
  border-radius: 50px;
  background: #ff8c00;
  /* ORANGE BUTTON */
  color: #ffffff;
  /* WHITE TEXT */
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.45);
}

.service-cta:hover {
  background: #111111;
  /* BLACK HOVER */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 767px) {
  .section-heading {
    font-size: 32px;
  }

  .service-img img {
    height: 200px;
  }
}







/* Why Choose Us Section */
.why-choose-section {
  padding: 60px 0;
  background-color: #e6f4ff;
  font-family: 'Poppins', sans-serif;
}

.why-choose-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0099FF;
  /* Blue from logo */
}

.why-choose-section .section-title span {
  color: #FF7F00;
  /* Orange accent */
}

.why-choose-section .why-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.why-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-card .why-icon {
  font-size: 40px;
  color: #0099FF;
  /* Blue for icons */
  margin-bottom: 20px;
}

.why-card h5 {
  font-size: 20px;
  font-weight: 600;
  color: #0099FF;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Optional: Accent lines for premium feel */
.why-card h5::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #FF7F00;
  /* Orange line */
  margin: 10px auto 0;
  border-radius: 2px;
}














/* ===== Footer ===== */
.premium-footer {
  background: #ffffff;
  border-top: 2px solid #ffe0b3;
  /* LIGHT ORANGE BORDER */
  font-size: 14px;
}

/* Main */
.footer-main {
  padding: 70px 0 50px;
}

/* Logo */
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  /* BLACK */
  margin-bottom: 12px;
}

/* Description */
.footer-desc {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Icons */
.footer-social a {
  width: 38px;
  height: 38px;
  background: #ff8c00;
  /* ORANGE */
  color: #ffffff;
  /* WHITE ICON */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 15px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(255, 140, 0, 0.4);
}

.footer-social a:hover {
  background: #111111;
  /* BLACK HOVER */
  color: #ffffff;
  transform: translateY(-4px);
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  /* BLACK */
  margin-bottom: 15px;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff8c00;
  /* ORANGE HOVER */
  padding-left: 6px;
}

/* Contact */
.footer-contact li {
  margin-bottom: 10px;
  color: #555555;
}

.footer-contact i {
  color: #ff8c00;
  /* ORANGE ICON */
  margin-right: 8px;
}

.footer-contact a {
  color: #555555;
  text-decoration: none;
}

/* Bottom */
.footer-bottom {
  background: linear-gradient(90deg, #ff8c00, #ffb347);
  /* ORANGE GRADIENT */
  padding: 15px 0;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-main {
    padding: 50px 0 35px;
  }

  .footer-logo {
    font-size: 20px;
  }
}















.scroll-car-section {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  border-bottom: 2px solid #ffe0b3;
  /* LIGHT ORANGE BORDER */
}

/* CONTENT */
.car-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  /* BLACK */
}

.car-content h2 span {
  color: #ff8c00;
  /* ORANGE HIGHLIGHT */
}

.car-content p {
  margin: 15px 0;
  color: #555555;
  font-size: 15px;
}

.car-content ul {
  padding-left: 0;
  margin-bottom: 25px;
}

.car-content ul li {
  list-style: none;
  margin-bottom: 8px;
  font-weight: 500;
  color: #222222;
}

/* BUTTON */
.car-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ff8c00;
  /* ORANGE */
  color: #ffffff;
  /* WHITE TEXT */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.4);
}

.car-btn:hover {
  background: #000000;
  /* BLACK HOVER */
  color: #ffffff;
  transform: translateY(-3px);
}

/* IMAGE AREA */
.car-image-wrapper {
  position: relative;
  height: 250px;
}

.car-image {
  max-width: 100%;
  position: absolute;
  right: -500px;
  /* start outside */
  bottom: 0;
  transition: transform 0.8s ease;
}

/* Active state (JS will add this) */
.scroll-car-section.active .car-image {
  transform: translateX(-500px);
}

/* Reverse animation */
.scroll-car-section.reverse .car-image {
  transform: translateX(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .car-image-wrapper {
    height: 170px;
  }

  .car-content h2 {
    font-size: 32px;
  }
}















.package-section {
  padding: 60px 0;
  background: #e6f4ff;
  font-family: 'Poppins', sans-serif;
}

.section-header h2 {
  font-size: 36px;
  color: #0d2c54;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  font-size: 16px;
}

/* Card */
.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card.highlight {
  border: 2px solid #ff9800;
}

/* Image */
.package-img {
  position: relative;
}

.package-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.package-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ff9800;
  color: #fff;
  padding: 5px 14px;
  font-size: 13px;
  border-radius: 20px;
}

/* Body */
.package-body {
  padding: 25px;
}

.package-body h4 {
  font-size: 20px;
  color: #0d2c54;
  margin-bottom: 8px;
}

.route {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.package-icons {
  display: flex;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 15px;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: #0d2c54;
  margin-bottom: 18px;
}

.price small {
  font-size: 14px;
  font-weight: normal;
  color: #666;
}

/* Button */
.btn-enquire {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: #0d2c54;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-enquire:hover {
  background: #ff9800;
}

/* Mobile */
@media (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
  }

  .package-img img {
    height: 340px;
    object-fit: cover;
  }
}










/* Video Gallery Section */
.video-gallery-section {
  padding: 80px 0;
  background: #f9fbff;
}

/* Video Card */
.video-card {
  position: relative;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Video Element */
.video-card video {
  width: 100%;
  height: 220px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* Hover Effect (Desktop only) */
@media (min-width: 992px) {
  .video-card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
  }
}













:root {
  --accent: #f28b1a;
  /* orange */
  --text: #111;
  --muted: #6b6b6b;
  --cardRadius: 16px;
}

.tour-section {
  padding: 28px 18px 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(242, 139, 26, .08), transparent 38%),
    radial-gradient(circle at 90% 0%, rgba(0, 0, 0, .04), transparent 35%),
    #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.tour-head {
  text-align: center;
  margin-bottom: 18px;
}

.tour-top {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 14px;
  margin-bottom: 6px;
}

.tour-title {
  color: var(--text);
  font-size: 30px;
  line-height: 1.1;
  margin: 0;
  font-weight: 800;
}

.tour-title-accent {
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: 700;
}

.tour-underline {
  width: 70px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 999px;
}

.tour-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tour-card {
  position: relative;
  border-radius: var(--cardRadius);
  overflow: hidden;
  background: #eee;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  border: 2px solid rgba(0, 0, 0, .08);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .25s ease;
}

.tour-card::after {
  /* soft dark overlay to match style */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .30), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.tour-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: calc(100% - 26px);
  text-align: center;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  font-weight: 800;
  padding: 12px 10px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
  border-bottom: 3px solid var(--accent);
  z-index: 2;
}

.tour-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
}

.tour-card:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 991px) {
	.sticky-top{
		position:relative;
	}
}
@media (max-width: 980px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .tour-title {
    font-size: 24px;
  }

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