:root {
  --primary: #ffc107;
  --primary-dark: #e0a800;
  --dark: #0f172a;
  --light: #f8fafc;
  --glass: rgba(255, 255, 255, 0.1);
  --accent: #3b82f6;
  --light-gray: #f8fafc;
  --whatsapp-green: #0aa342;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

/* ================= TOP BAR ================= */
.top-bar {
  font-size: 13px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

/* ================= NAVBAR ================= */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 600;
  margin: 0 10px;
  color: var(--dark) !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ================= HERO SLIDER ================= */
.hero-slider,
.carousel-item {
  height: 100vh;
  min-height: 600px;
}

.carousel-item {
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.8),
    rgba(15, 23, 42, 0.2)
  );
}

.hero-content {
  z-index: 10;
  max-width: 800px;
}

.hero-tag {
  background: var(--primary);
  color: var(--dark);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

/* ================= BUTTONS ================= */
.btn-main {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-main:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--dark);
}

/* Add these styles to your <style> block */

/* .car-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 20px;
  overflow: hidden;
}
.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}
.car-card img {
  height: 220px;
  object-fit: cover;
}
.letter-spacing-2 {
  letter-spacing: 2px;
}
.fw-800 {
  font-weight: 800;
} */
/* ================= FLEET SECTION ================= */
/* Hero Section */
.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1599661046827-dacff0c0f09a?q=80&w=2000");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  color: white;
}
.fleet-section {
  background-color: var(--light-gray);
}

.service-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.card-img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-container img {
  transform: scale(1.1);
}

/* Feature Badges */
.feature-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 5px;
  margin-bottom: 5px;
}

.feature-badge i {
  color: var(--primary);
  margin-right: 4px;
}

/* Action Buttons */
.btn-action-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-call-new,
.btn-book-new {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-call-new {
  background: var(--dark);
  color: white;
}

.btn-call-new:hover {
  background: #1e293b;
  color: var(--primary);
}

.btn-book-new {
  background: var(--whatsapp-green);
  color: white;
}

.btn-book-new:hover {
  background: #1eb956;
  color: white;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.ls-2 {
  letter-spacing: 2px;
}
/* Add these styles to your <style> block */
.ls-2 {
  letter-spacing: 2px;
}

.about-img-wrapper {
  position: relative;
  z-index: 2;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--dark);
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

.about-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary),
    var(--primary) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.2;
  z-index: 1;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #fff3cd; /* Light warning/gold bg */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Add these styles to your <style> block */
.pkg-card {
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
}
.pkg-card:hover {
  transform: translateY(-8px);
}
.pkg-img-container {
  position: relative;
  height: 220px;
}
.pkg-img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.pkg-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.pkg-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 15px;
  border-radius: 10px;
  font-weight: 800;
  color: var(--dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.pkg-price span {
  font-size: 11px;
  color: #666;
  font-weight: 400;
}
.pkg-list li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}
/* Add these styles to your <style> block */
.testimonial-card {
  border: 1px solid #eee !important;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #f8f9fa;
  z-index: 0;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #fff3cd;
  color: #856404;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

#testimonialCarousel .carousel-item {
  height: auto !important; /* Overriding the hero height */
  min-height: auto;
}

/* Add these styles to your <style> block */
footer {
  background-color: #0f172a !important; /* Deep navy/black */
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.ls-1 {
  letter-spacing: 1px;
}

/* ================= FLOATING CTA ================= */
.floating-cta {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
}

.cta-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-top: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  transform: scale(1.1) rotate(10deg);
  color: #fff;
}

.whatsapp {
  background: #25d366;
}
.call {
  background: var(--accent);
}

/* ================= BANNER STYLING ================= */
#safari-promo {
  height: 500px;
  background-color: #000;
}

#safari-promo .banner-bg {
  position: absolute;
  inset: 0;
  /* This image features the camel silhouette seen in your reference */
  background-image: url("https://images.unsplash.com/photo-1473580044384-7ba9967e16a0?q=80&w=2000");
  background-size: cover;
  background-position: center 80%;
  transition: transform 0.1s ease-out;
}

#safari-promo .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

#safari-promo .banner-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-family:
    "Playfair Display", serif; /* Use Google Fonts: Playfair Display */
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 0;
}

#safari-promo .banner-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
}

#safari-promo .bottom-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

/* Custom Buttons for Banner */
.btn-primary-custom {
  background: #ffc107;
  color: #000;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  transition: 0.3s;
}

.btn-outline-light-custom {
  border: 1px solid #fff;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}
.btn-outline-light-custom:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

/* ================= CAB CTA STYLES ================= */
.cab-cta-section {
  height: 400px;
  background-color: #000;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  /* Silhouette image of camels/desert ridge */
  background-image: url("https://images.unsplash.com/photo-1473580044384-7ba9967e16a0?q=80&w=2000");
  background-size: cover;
  background-position: center 80%;
  filter: brightness(0.6);
  transition: transform 0.5s ease-out;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.italic-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 0;
}

.cta-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
  margin: 0;
}

.cta-line {
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 8px;
}

/* Decorative Arrows */
.cta-arrows span,
.cta-arrows-right span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-45deg);
  margin-bottom: 5px;
}

.cta-arrows-right {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

/* Buttons */
.btn-cta-gold {
  background: #ffc107;
  color: #000;
  padding: 15px 40px;
  border-radius: 4px; /* Matches the sharper lines in your image */
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-cta-whatsapp {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta-gold:hover {
  background: #fff;
  transform: translateY(-3px);
}
.btn-cta-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

/* Arrow Icons */
.arrows-left,
.arrows-right {
  position: absolute;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -10px;
}
.arrows-left {
  left: 40px;
  bottom: 60px;
}
.arrows-right {
  right: 40px;
  bottom: 60px;
}
/* ================= FAQ CUSTOM STYLES ================= */
.accordion-custom .accordion-item {
  border: none;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  background-color: #fff;
  color: var(--dark);
  padding: 20px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: #fffbeb; /* Light yellow tint when open */
  color: var(--primary-dark);
}

.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.accordion-custom .accordion-body {
  background-color: #fff;
  color: #64748b;
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-category-label {
  letter-spacing: 1px;
  border-left: 3px solid var(--primary);
  padding-left: 10px;
}
/* ================= ANIMATIONS ================= */
.carousel-item.active .hero-tag {
  animation: fadeInLeft 0.8s both;
}
.carousel-item.active .hero-title {
  animation: fadeInLeft 1s both 0.2s;
}
.carousel-item.active .hero-desc {
  animation: fadeInLeft 1.2s both 0.4s;
}
.carousel-item.active .btn-group-custom {
  animation: fadeInUp 1s both 0.6s;
}

/* Tempo Travellor  */
/* ================= HERO SECTION ================= */
.page-header {
  background:
    linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
    url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?q=80&w=2000");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
  text-align: center;
  border-bottom: 5px solid var(--primary);
}

/* ================= TEMPO CARD STYLING ================= */
.tempo-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.tempo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tempo-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tempo-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badges */
.badge-premium,
.badge-luxury {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.badge-premium {
  background: var(--primary);
  color: var(--dark);
}
.badge-luxury {
  background: var(--dark);
  color: #fff;
}

.tempo-card-body {
  padding: 25px;
  flex-grow: 1;
}

.tempo-title {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.tempo-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Action Bar */
.action-bar {
  display: flex;
  border-top: 1px solid #f1f5f9;
}

.action-link {
  flex: 1;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.3s;
}

.call-btn {
  background: var(--dark);
  color: #fff;
}
.call-btn:hover {
  background: var(--dark);
  color: var(--primary);
}

.wa-btn {
  background: var(--primary);
  color: #fff;
}
.wa-btn:hover {
  background: #1eb956;
  color: #fff;
}

.ls-2 {
  letter-spacing: 2px;
}
/* Our Cabs Services */
/* ================= FLEET SECTION ================= */
.fleet-section {
  background-color: var(--light-gray);
}

.service-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.card-img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-container img {
  transform: scale(1.1);
}

/* Feature Badges */
.feature-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 5px;
  margin-bottom: 5px;
}

.feature-badge i {
  color: var(--primary);
  margin-right: 4px;
}

/* Action Buttons */
.btn-action-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-call-new,
.btn-book-new {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-call-new {
  background: var(--dark);
  color: white;
}

.btn-call-new:hover {
  background: #1e293b;
  color: var(--primary);
}

.btn-book-new {
  background: var(--whatsapp-green);
  color: white;
}

.btn-book-new:hover {
  background: #1eb956;
  color: white;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.ls-2 {
  letter-spacing: 2px;
}
/* ================= CONTACT HERO ================= */
.contact-hero {
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
    url("https://images.unsplash.com/photo-1599661046827-dacff0c0f09a?q=80&w=2000");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
  text-align: center;
}

/* ================= INFO CARDS ================= */
.info-box {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
  border: 1px solid #f1f5f9;
}
.info-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* ================= FORM STYLING ================= */
.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.form-control {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 15px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.map-container {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.btn-send {
  background: var(--dark);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  width: 100%;
  transition: 0.3s;
}
.btn-send:hover {
  background: var(--primary);
  color: var(--dark);
}
/* rout plan location */
.route-section {
  padding: 60px 0;
  background-color: #f1eac1;
}

.section-subtitle {
  color: #ec2923; /* Rajasthan Crimson */
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
}

.section-title span {
  color: #ec2923;
}

/* Route Button Styling */
.route-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(
    90deg,
    #004e92 0%,
    #000428 100%
  ); /* Royal Blue Gradient */
  color: white !important;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Alternative Desert Theme Hover */
.route-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #d9534f 0%, #96281b 100%);
  box-shadow: 0 8px 15px rgba(217, 83, 79, 0.3);
}

.row-gap-3 {
  row-gap: 1.5rem;
}

/* offer ticker */
.offer-ticker {
  display: flex;
  align-items: center;
  background: #d91e18; /* Royal Red Theme */
  color: #fff;
  font-family: "Arial", sans-serif;
  overflow: hidden;
  height: 40px;
  border-bottom: 2px solid #f39c12;
}

.ticker-label {
  background: #f39c12; /* Golden/Amber Label */
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
}

.ticker-wrap {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-move 25s linear infinite;
}

.ticker span {
  display: inline-block;
  padding-right: 50px;
  font-size: 14px;
  font-weight: 500;
}

@keyframes ticker-move {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Pause on hover so users can read/click */
.offer-ticker:hover .ticker {
  animation-play-state: paused;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-slider,
  .carousel-item {
    height: 80vh;
  }
  .hero-content {
    text-align: center;
  }
  .hero-desc {
    border-left: none;
    padding-left: 0;
  }
  .btn-group-custom {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
