  html, body {
  width: 100%;
  overflow-x: hidden;
}

 
 
 body {
      margin: 0;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

/* ===== MOBILE VIEW FIX ===== */
/* ===== TOP BAR ===== */
.top-bar {
  background-color: #0B1D3A;
  color: #fff;
  font-size: 15px;
  padding: 6px 10px;
}

/* CONTACT CENTER */
.contact-center {
  min-height: 100%;
}

/* CONTACT ITEMS */
.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-right: 1px solid #444;
}

.top-item:last-child {
  border-right: none;
}

/* LINKS */
.top-item a {
  color: #fff;
  text-decoration: none;
}

.top-item a:hover {
  color: #25d366;
}

/* ICON COLORS */
.call i {
  color: #fff;
  font-size: 18px;
}

.whatsapp i {
  color: #25d366;
  font-size: 22px;
}

.email i {
  color: #ff3b3b;
  font-size: 18px;
}

/* SOCIAL ICONS */
.social-icons a {
  margin-left: 12px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  padding-right: 12px;
  border-right: 1px solid #fff;
}

.social-icons a:last-child {
  border-right: none;
}

.social-icons a:hover {
  color: #25d366;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .top-item {
    border-right: none;
  }
}

/* ===== MOBILE VIEW FIX ===== */
@media (max-width: 767px) {

  /* Left align & stack */
  .contact-center {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex-direction: column;
  }

  .top-item {
    width: 100%;
    padding: 6px 0;
    justify-content: flex-start;
  }

  /* Hide social icons */
  .social-icons {
    display: none !important;
  }
  

  /* Smaller text */
  .top-bar span,
  .top-bar strong,
  .top-bar a {
    font-size: 14px;
  }
}

/* ===== HIDE TOP BAR ON MOBILE ===== */
@media (max-width: 767px) {
  .top-item {
    display: none !important;
  }
  .top-bar
  {
    padding: 20px;
  }
}

    /* HERO BANNER */
   .hero-banner {
  width: 100%;
  min-height: 100svh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("images/bannermai.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
@media (max-width:550px)
{
  .hero-banner
  {
    width: 100%;
  min-height: 50svh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("images/wb-0-10.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  }
}
    /* NAVBAR */
 .main-navbar {
  position: relative;
  z-index: 999;
}
.dropdown-item
{
  font-weight: 600;
}

.navbar-brand img {
  max-width: 120px;
}

.nav-link {
  font-weight: 600;
  color: #0b1d3a !important;
  padding: 0 18px !important;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #0369a1 !important;
}

/* Dropdown Design */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: fadeDown 0.25s ease;
  
}

.dropdown-item:hover {
  background: #f0f9ff;
  color: #0369a1;
}

/* Animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
.offcanvas {
  width: 280px;
}

.offcanvas .nav-link {
  padding: 12px 0 !important;
}




    .hero-title::after {
  content: "|";
  margin-left: 6px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
/* HERO BUTTON BASE */
.hero-btn {
  background: linear-gradient(135deg, #1A76D1, #0d47a1);
  color: #fff;
  padding: 14px 38px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* HOVER LIFT */
.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 118, 209, 0.45);
  color: #fff;
}

/* SHINE EFFECT */
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.hero-btn:hover::before {
  left: 125%;
}

/* PULSE ANIMATION */
.animated-btn {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 118, 209, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(26, 118, 209, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 118, 209, 0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-btn {
    padding: 10px 26px;
    font-size: 0.95rem;
  }
}
/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: #f8f9fa;
}

/* IMAGE */
.about-image img {
  border-radius: 12px;
  
}

/* CONTENT */
.about-content {
  padding-left: 20px;
}

.about-subtitle {
  color: #1A76D1;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text {
  color: black;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
  
}

/* BUTTON */
.about-btn {
  background-color: #1A76D1;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #0d47a1;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 118, 209, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    text-align: center;
  }

  .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 1.7rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
}

/* ===== ALT MARQUEE SECTION ===== */
.marquee-alt-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 40px 0;
  overflow: hidden;
}

/* WRAPPER */
.marquee-alt-wrapper {
  overflow: hidden;
}

/* TRACK */
.marquee-alt-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: marqueeAlt 25s linear infinite;
  margin-top: 15px;
}

/* CARD STYLE */
.marquee-card {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* HOVER FLOAT */
.marquee-card:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

/* ANIMATION */
@keyframes marqueeAlt {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.marquee-alt-wrapper:hover .marquee-alt-track {
  animation-play-state: paused;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .marquee-card {
    padding: 12px 26px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .marquee-alt-section {
    padding: 30px 0;
  }

  .marquee-card {
    font-size: 0.9rem;
  }
}
/* ===== SERVICES SECTION ===== */
.cab-services {
  background: #f8f9fa;
}

/* TITLES */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
}

/* CARD */
.cab-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  height: 100%;
}

/* IMAGE */
.cab-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* BODY */
.cab-card-body {
  padding: 22px;
}

.cab-card-body h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.cab-card-body p {
  color: #555;
  font-size: 0.95rem;
}

.cab-meta {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A76D1;
}

/* HOVER ANIMATION */
.cab-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.cab-card:hover img {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .cab-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.7rem;
  }
}
/* ===== SECTION ===== */
/* ===== SECTION ===== */
.only-cabs-section {
  background: #f8fafc;
}

/* TITLES */
.cabs-title {
  font-size: 2.6rem;
  font-weight: 700;
}

.cabs-subtitle {
  color: black;
  font-size:18px;
}

/* CARD */
.cab-only-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px ;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

/* IMAGE */
.cab-only-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

/* TEXT */
.cab-only-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.cab-only-card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 10px;
}

.cab-only-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A76D1;
}

/* HOVER ANIMATION */
.cab-only-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.cab-only-card:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cabs-title {
    font-size: 2rem;
  }

  .cab-only-card img {
    height: 150px;
  }
}
/* ===== SECTION ===== */
.cab-strip-section {
  background: #f8fafc;
}

/* TITLES */
.strip-title {
  font-size: 2.6rem;
  font-weight: 700;
}

.strip-subtitle {
  color: #64748b;
}

/* STRIP */
.cab-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

/* REVERSE */
.cab-strip.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.cab-strip-img img {
  width: 420px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* CONTENT */
.cab-strip-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.cab-strip-content p {
  font-size: 1rem;
  color: #475569;
  max-width: 500px;
}

/* TAGS */
.cab-tags {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cab-tags span {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

/* HOVER ANIMATION */
.cab-strip-img img {
  transition: transform 0.5s ease;
}

.cab-strip:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cab-strip {
    flex-direction: column;
    text-align: center;
  }

  .cab-strip.reverse {
    flex-direction: column;
  }

  .cab-strip-img img {
    width: 100%;
    height: 240px;
  }

  .cab-strip-content p {
    max-width: 100%;
  }

  .cab-tags {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .strip-title {
    font-size: 2rem;
  }
}
/* ===== TRUST SECTION ===== */
.trust-section {
  background: #0B1D3A;

}

/* TITLES */
.trust-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: white;
}

.trust-subtitle {
  color: white;
  font-size: 1rem;
}

/* TRUST BOX */
.trust-box {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.trust-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #0369a1;
  transition: transform 0.4s ease;
}

/* TEXT */
.trust-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-box p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* HOVER ANIMATION */
.trust-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.trust-box:hover .trust-icon {
  transform: scale(1.15) rotate(5deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trust-title {
    font-size: 2rem;
  }
  .trust-box p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  text-align: start;
}
}
/* SECTION */
.offer-exact-section {
  background: url("images/back.png")
    center/cover no-repeat;
  position: relative;
  padding: 90px 0;
}



/* HEADER */
.offer-header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.offer-small-title {
  letter-spacing: 2px;
  font-weight: 700;
  color: #777;
}

.offer-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
}

.offer-main-title span {
  color: #555;
}

.offer-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 15px;
}

/* CARD */
.offer-card {
  background: #fff;
  border-radius: 18px;
  padding: 42px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  transition: all 0.45s ease;
  position: relative;
}

/* ICON */
.offer-icon {
  font-size: 50px;
  color: #444;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

/* TEXT */
.offer-card h5 {
  font-weight: 700;
  margin-bottom: 14px;
  color: #222;
}

.offer-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.offer-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.22);
}

.offer-card:hover .offer-icon {
  transform: scale(1.2) rotate(5deg);
}

/* ===== ANIMATIONS ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .offer-main-title {
    font-size: 2.2rem;
  }
}
/* SECTION */
.testimonial-wall {
  background: #f8fafc;
  padding: 90px 0;
  overflow: hidden;
}

/* HEADER */
.wall-tag {
  letter-spacing: 2px;
  font-weight: 700;
  color: #1A76D1;
}

.wall-title {
  font-size: 2.6rem;
  font-weight: 700;
}

.wall-subtitle {
  color: #64748b;
}

/* SCROLL */
.testimonial-scroll {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollTestimonials 35s linear infinite;
}

/* CARD */
.trust-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* HEAD */
.trust-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.trust-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.trust-head h6 {
  font-weight: 700;
  margin: 0;
}

.trust-head span {
  font-size: 0.8rem;
  color: #1A76D1;
  font-weight: 600;
}

/* STARS */
.stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* TEXT */
.trust-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* ANIMATION */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.testimonial-scroll:hover .testimonial-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wall-title {
    font-size: 2rem;
  }

  .trust-card {
    width: 280px;
  }
}
.offer-timeline-section {
 
  padding: 90px 0;
}

/* HEADER */
.timeline-header {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.timeline-tag {
  letter-spacing: 2px;
  font-weight: 700;
  color: #1A76D1;
}

.timeline-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
}

.timeline-title span {
  color: #1A76D1;
}

.timeline-desc {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 15px;
}

/* TIMELINE */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #1A76D1;
  transform: translateX(-50%);
  opacity: 0.25;
}

/* ITEM */
.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 80px;
}

/* LEFT & RIGHT */
.timeline-item.left {
  justify-content: flex-end;
  padding-right: 50%;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-left: 50%;
}

/* ICON MARKER (PERFECT CENTER) */
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: #1A76D1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(26,118,209,0.45);
  z-index: 2;
}

/* CONTENT CARD */
.timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.timeline-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* HOVER */
.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .timeline::before {
    left: 28px;
  }

  .timeline-item {
    padding-left: 70px !important;
    padding-right: 0 !important;
    justify-content: flex-start;
  }

  .timeline-marker {
    left: 28px;
    top: 30px;
    transform: translateX(-50%);
  }

  .timeline-content {
    max-width: 100%;
  }

  .timeline-title {
    font-size: 2rem;
  }
}
/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: #0B1D3A;
}

/* TITLES */
.gallery-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: white;
}

.gallery-subtitle {
  color: white;
}

/* GALLERY ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
  }

  .gallery-item img {
    height: 220px;
  }
}
.form-section {
  padding: 90px 0;
  background: #f8fafc;
}

/* IMAGE SIDE */
.form-image {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
 
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORM BOX */
.form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* TITLE */
.form-box h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.form-box p {
  color: #64748b;
  margin-bottom: 30px;
}

/* INPUT */
.form-control {
  height: 48px;
  border-radius: 10px;
}

textarea.form-control {
  height: 120px;
}

/* BUTTON */
.form-btn {
  background: #1A76D1;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.form-btn:hover {
  background: #0d5bb5;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26,118,209,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-box {
    padding: 30px 20px;
  }
}
/* CTA STRIP */
.cta-strip {
  background: #ef1f25; /* exact red tone */
  padding: 40px 0;
  color: #fff;
}

/* LEFT TEXT */
.cta-text {
  padding-right: 20px;
}

.cta-line-1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-line-2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* RIGHT ACTION */
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* BUTTON */
.cta-btn {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 26px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #ef1f25;
}

/* PHONE NUMBER */
.cta-number {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .cta-action {
    align-items: center;
    margin-top: 20px;
  }

  .cta-line-1,
  .cta-line-2 {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .cta-line-1,
  .cta-line-2 {
    font-size: 18px;
  }

  .cta-number {
    font-size: 22px;
  }
}
/* CTA STRIP */
.cta-strip {
  background: #1d0f77; /* exact red tone */
  padding: 40px 0;
  color: #fff;
}

/* LEFT TEXT */
.cta-text {
  padding-right: 20px;
}

.cta-line-1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-line-2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* RIGHT ACTION */
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* BUTTON */
.cta-btn {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 26px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #ef1f25;
}

/* PHONE NUMBER */
.cta-number {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .cta-action {
    align-items: center;
    margin-top: 20px;
  }

  .cta-line-1,
  .cta-line-2 {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .cta-line-1,
  .cta-line-2 {
    font-size: 18px;
  }

  .cta-number {
    font-size: 22px;
  }
}
/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 0;
}

/* BRAND */
.footer-brand img {
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  margin-right: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #1A76D1;
}

/* TITLES */
.footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

/* CONTACT */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #38bdf8;
  font-size: 18px;
  margin-top: 4px;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #38bdf8;
}

/* BOTTOM */
.footer-bottom {
  background: #020617;
  margin-top: 50px;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-brand,
  .footer-title {
    text-align: start;
  }

  .footer-social {
    justify-content: start;
  }

  .footer-contact li {
    justify-content: start;
    text-align: start;
  }
  .footer-links
  {
    text-align: start;
  }
}
/* ===== UNIQUE HERO BANNER ===== */
.uh-banner-wrapper {
  background: url("images/aboutban.jpg")
    center / cover no-repeat;
  min-height: 80vh;
  position: relative;
  display: flex;
}

/* DARK BLUE OVERLAY */
.uh-banner-overlay {
  background: rgba(34, 34, 35, 0.82);
  width: 100%;
  display: flex;
  align-items: center;
}

/* CONTENT */
.uh-banner-content {
  max-width: 820px;
  margin: 0 auto;
  color: #ffffff;
}

/* TITLE */
.uh-banner-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* SUBTITLE */
.uh-banner-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 35px;
}

/* BUTTON */
.uh-banner-button {
  display: inline-block;
  padding: 14px 38px;
  background: #1A76D1;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uh-banner-button:hover {
  background: #0d5bb5;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(26, 118, 209, 0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .uh-banner-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  

  .uh-banner-title {
    font-size: 2rem;
  }

  .uh-banner-subtitle {
    font-size: 1rem;
  }
}
/* ===== WHO WE ARE – ALT DESIGN ===== */
.uh2-who-wrapper {
  background: linear-gradient(135deg, #0f172a 40%, #f8fafc 40%);
  padding: 100px 0;
}

/* PANEL */
.uh2-who-panel {
  background: #ffffff;
  border-radius: 22px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* ACCENT */
.uh2-who-accent {
  background: #1A76D1;
  color: #fff;
  padding: 60px 40px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.uh2-who-accent h3 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
}

/* CONTENT */
.uh2-who-content {
  padding: 60px;
}

.uh2-who-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.uh2-who-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* POINTS */
.uh2-who-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.uh2-who-points div {
  background: #f1f5f9;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  color: #0f172a;
  position: relative;
}

.uh2-who-points div::before {
  content: "✓";
  color: #1A76D1;
  font-weight: 800;
  margin-right: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .uh2-who-panel {
    flex-direction: column;
  }

  .uh2-who-accent {
    min-width: 100%;
    padding: 40px;
  }

  .uh2-who-content {
    padding: 40px;
  }

  .uh2-who-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .uh2-who-wrapper {
    padding: 70px 0;
  }

  .uh2-who-points {
    grid-template-columns: 1fr;
  }

  .uh2-who-content h2 {
    font-size: 1.9rem;
  }
}
/* ===== VMC PANEL DESIGN ===== */
.uh-vmc3-wrapper {
  background: #e4eef9;
  padding: 100px 0;
}

/* HEADER */
.uh-vmc3-header {
  max-width: 820px;
  margin: 0 auto 70px;
}

.uh-vmc3-tag {
  letter-spacing: 2px;
  font-weight: 700;
  color: #1A76D1;
  margin-bottom: 10px;
}

.uh-vmc3-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.uh-vmc3-desc {
  color: #475569;
  font-size: 1.05rem;
}

/* PANEL */
.uh-vmc3-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 35px;
  height: 100%;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

/* ACTIVE PANEL */
.uh-vmc3-panel-active {
  border: 2px solid #1A76D1;
  transform: translateY(-12px);
}

/* ICON */
.uh-vmc3-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uh-vmc3-icon i {
  font-size: 34px;
  color: #1A76D1;
}

/* TEXT */
.uh-vmc3-panel h4 {
  font-weight: 800;
  margin-bottom: 15px;
}

.uh-vmc3-panel p {
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}

/* VALUES */
.uh-vmc3-values {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
}

.uh-vmc3-values li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #334155;
}

.uh-vmc3-values i {
  color: #1A76D1;
}

/* HOVER */
.uh-vmc3-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .uh-vmc3-title {
    font-size: 2.3rem;
  }

  .uh-vmc3-panel-active {
    transform: none;
  }
}

@media (max-width: 576px) {
  .uh-vmc3-wrapper {
    padding: 80px 0;
  }

  .uh-vmc3-title {
    font-size: 2rem;
  }
}
/* ===== FAQ SECTION ===== */
.uh-faq-wrapper {
  background: #f8fafc;
  padding: 100px 0;
}

/* HEADER */
.uh-faq-header {
  max-width: 760px;
  margin: 0 auto 50px;
}

.uh-faq-tag {
  letter-spacing: 2px;
  font-weight: 700;
  color: #1A76D1;
  margin-bottom: 10px;
}

.uh-faq-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.uh-faq-desc {
  color: white;
  font-size: 1.05rem;
}

/* FAQ LIST */
.uh-faq-list {
  max-width: 820px;
  margin: 0 auto;
}

/* ITEM */
.uh-faq-item {
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* QUESTION */
.uh-faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

/* ICON */
.uh-faq-icon {
  font-size: 26px;
  font-weight: 700;
  color: #1A76D1;
  transition: transform 0.3s ease;
}

/* ANSWER */
.uh-faq-answer {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* ACTIVE STATE */
.uh-faq-item.active .uh-faq-answer {
  padding: 18px 26px 26px;
  max-height: 300px;
}

.uh-faq-item.active .uh-faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .uh-faq-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .uh-faq-wrapper {
    padding: 80px 0;
  }

  .uh-faq-title {
    font-size: 2rem;
  }

  .uh-faq-question {
    font-size: 1rem;
  }
}
/* ===== SERVICES SECTION ===== */
.uh-service-wrapper {
  background: #f8fafc;
  padding: 100px 0;
}

/* IMAGE */
.uh-service-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.uh-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.uh-service-content {
  max-width: 540px;
}

/* TAG */
.uh-service-tag {
  letter-spacing: 2px;
  font-weight: 700;
  color: #1A76D1;
  margin-bottom: 12px;
}

/* TITLE */
.uh-service-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* DESC */
.uh-service-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* LIST */
.uh-service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.uh-service-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.uh-service-item i {
  font-size: 28px;
  color: #1A76D1;
  margin-top: 5px;
}

.uh-service-item h6 {
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.uh-service-item p {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .uh-service-title {
    font-size: 2.3rem;
  }

  .uh-service-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .uh-service-wrapper {
    padding: 80px 0;
  }

  .uh-service-title {
    font-size: 2rem;
  }
}
/* ===== SERVICES CARD SECTION ===== */
.uh-svc-wrapper {
  background: #f8fafc;
  padding: 100px 0;
}

/* HEADER */
.uh-svc-header {
  max-width: 820px;
  margin: 0 auto 60px;
}

.uh-svc-tag {
  letter-spacing: 2px;
  font-weight: 700;
  color: #1A76D1;
  margin-bottom: 10px;
}

.uh-svc-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.uh-svc-desc {
  font-size: 1.05rem;
  color: #475569;
}

/* CARD */
.uh-svc-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

/* ICON */
.uh-svc-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uh-svc-icon i {
  font-size: 30px;
  color: #1A76D1;
}

/* TEXT */
.uh-svc-card h5 {
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}

.uh-svc-card p {
  font-size: 18px;
  color:black;
  line-height: 1.6;
}

/* HOVER */
.uh-svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .uh-svc-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .uh-svc-wrapper {
    padding: 80px 0;
  }

  .uh-svc-title {
    font-size: 2rem;
  }
}
/* ===== FORM SECTION ===== */
.uh-form-wrapper {
  background: #031c35;
  padding: 100px 0;
}

/* HEADER */
.uh-form-header {
  max-width: 760px;
  margin: 0 auto 50px;

}

.uh-form-tag {
  letter-spacing: 2px;
  font-weight: 700;
    color: white;
  margin-bottom: 10px;
}

.uh-form-title {
  font-size: 2.8rem;
  font-weight: 800;
    color: white;
  margin-bottom: 12px;
}

.uh-form-desc {
  color: white;
  font-size: 1.05rem;
}

/* FORM BOX */
.uh-form-box {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* INPUTS */
.uh-form-input,
.uh-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  outline: none;
}

.uh-form-textarea {
  min-height: 140px;
  resize: none;
}

.uh-form-input:focus,
.uh-form-textarea:focus {
  border-color: #1A76D1;
  box-shadow: 0 0 0 3px rgba(26,118,209,0.15);
}

/* BUTTON */
.uh-form-btn {
  background: #1A76D1;
  color: #ffffff;
  padding: 14px 50px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.uh-form-btn:hover {
  background: #0d5bb5;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(26,118,209,0.45);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .uh-form-title {
    font-size: 2.3rem;
  }

  .uh-form-box {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .uh-form-wrapper {
    padding: 80px 0;
  }

  .uh-form-title {
    font-size: 2rem;
  }

  .uh-form-box {
    padding: 35px 20px;
  }
}
/* ===== CONTACT INFO SECTION ===== */
.uh-contact-info-section {
  padding: 80px 0;
  background: #ffffff;
}

/* CARD */
.uh-contact-card {
  border: 1px solid #d6dde6;
  height: 100%;
  background: #fff;
}

/* TITLE BAR */
.uh-contact-title {
  background: #000;
  color: white;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 10px;
  font-size: 20px;
}

/* BODY */
.uh-contact-body {
  padding: 30px 25px;
}

/* GRID FOR PHONE */
.uh-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ROW */
.uh-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: #111;
}

/* ICON */
.uh-contact-row i {
  color:#031c35;
  font-size: 20px;
  margin-top: 4px;
}

/* TEXT */
.uh-contact-row p {
  margin: 0;
  line-height: 1.6;
}

.uh-contact-row span {
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .uh-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .uh-contact-title {
    font-size: 18px;
  }

  .uh-contact-body {
    padding: 25px 20px;
  }
}
/* FLOAT CONTAINER */
.uh-float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

/* PHONE BUTTON */
.uh-phone-btn {
  width: 52px;
  height: 52px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.uh-phone-btn:hover {
  background: #020617;
  transform: scale(1.1);
}

/* WHATSAPP BUTTON */
.uh-whatsapp-btn {
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: all 0.3s ease;
}

.uh-whatsapp-btn:hover {
  transform: scale(1.1);
}

/* SCROLL TO TOP */
.uh-scrolltop-btn {
  width: 48px;
  height: 48px;
  background: #031c35;
  color: #ffffff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(26,118,209,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.uh-scrolltop-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.uh-scrolltop-btn:hover {
  background: #0d5bb5;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 576px) {
  .uh-float-actions {
    right: 15px;
    bottom: 15px;
  }

  .uh-phone-btn,
  .uh-whatsapp-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .uh-scrolltop-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
/* ===== PRELOADER V2 ===== */
.uh-preloader-v2 {
  position: fixed;
  inset: 0;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.uh-preloader-v2.hide {
  opacity: 0;
  visibility: hidden;
}

/* INNER */
.uh-preloader-inner {
  text-align: center;
  color: #fff;
}

/* ROAD LINE */
.uh-road-line {
  width: 220px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #38bdf8,
    transparent
  );
  margin: 0 auto 25px;
  animation: roadSlide 1s ease-in-out infinite;
}

/* BRAND TEXT */
.uh-preloader-brand {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
  animation: textFadeUp 1s ease both;
}

.uh-preloader-brand span {
  color: #38bdf8;
}

/* SUB TEXT */
.uh-preloader-sub {
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #cbd5e1;
  animation: textFadeUp 1.3s ease both;
}

/* ===== ANIMATIONS ===== */
@keyframes roadSlide {
  0% {
    opacity: 0.2;
    transform: scaleX(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.2;
    transform: scaleX(0.5);
  }
}

@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .uh-preloader-brand {
    font-size: 2.2rem;
  }

  .uh-road-line {
    width: 160px;
  }
}
/* ===== Section Spacing ===== */
.car-rental-section {
    overflow: hidden;
}

/* ===== Image Wrapper Fix ===== */
.car-rental-section .position-relative {
    padding: 40px 40px 80px 0;
}

/* ===== Main Image ===== */
.main-img {
    width: 85%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    animation: floatMain 4s ease-in-out infinite;
}

/* ===== Small Image ===== */
.small-img {
    position: absolute;
    width: 55%;
    bottom: 0;
    right: 0;
    border: 6px solid #fff;
    border-radius: 20px;
    z-index: 3;
    animation: floatSmall 5s ease-in-out infinite;
}

/* ===== Smooth Hover ===== */
.main-img:hover,
.small-img:hover {
    transform: scale(1.05);
    transition: 0.4s ease;
}

/* ===== Floating Keyframe Animation ===== */
@keyframes floatMain {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes floatSmall {
    0% { transform: translateY(0px); }
    50% { transform: translateY(12px); }
    100% { transform: translateY(0px); }
}

/* ===== Responsive Fix ===== */
@media (max-width: 991px) {

    .car-rental-section .position-relative {
        padding: 0;
    }

    .main-img {
        width: 100%;
        animation: none;
        padding: 10px;
    }

    .small-img {
        position: relative;
        width: 100%;
        margin-top: 20px;
        animation: none;
        padding: 10px;
    }
}
/* Section Background */
.pricing-section {
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
}

/* Table Wrapper */
.custom-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Table */
.custom-table {
    margin: 0;
    background: #ffffff;
}

/* Header */
.custom-table thead {
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
}

.custom-table thead th {
    font-weight: 600;
    padding: 18px;
    font-size: 14px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Body */
.custom-table tbody td {
    padding: 18px 14px;
    font-size: 15px;
    border-top: 1px solid #f2f2f2;
}

/* Car Name Styling */
.car-name {
    font-weight: 700;
    color: #0d6efd;
    font-size: 16px;
}

/* Price Highlight */
.price {
    font-weight: 600;
    color: #198754;
}

/* Outstation Highlight */
.highlight-price {
    font-weight: 700;
    color: #dc3545;
}

/* Hover Effect */
.custom-table tbody tr {
    transition: all 0.3s ease;
}

.custom-table tbody tr:hover {
    background: #eaf4ff;
    transform: scale(1.01);
}

/* Responsive */
@media (max-width: 991px) {
    .custom-table thead th {
        font-size: 12px;
        padding: 12px;
    }

    .custom-table tbody td {
        font-size: 13px;
    }
}
/* Ensure table scrolls on small screens */
.custom-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Prevent text breaking layout */
.custom-table th,
.custom-table td {
    white-space: nowrap;
}

/* Tablet View */
@media (max-width: 991px) {

    .custom-wrapper {
        border-radius: 12px;
    }

    .custom-table thead th {
        font-size: 12px;
        padding: 12px;
    }

    .custom-table tbody td {
        font-size: 13px;
        padding: 12px 10px;
    }

    .car-name {
        font-size: 14px;
    }
}

/* Mobile View */
@media (max-width: 576px) {

    .custom-table {
        font-size: 12px;
        min-width: 600px; /* forces scroll instead of breaking */
    }

    .custom-table thead th {
        font-size: 11px;
        padding: 10px;
    }

    .custom-table tbody td {
        padding: 10px 8px;
    }

    .custom-wrapper {
        box-shadow: none;
    }
}

.card img {
  height: 220px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-6px);
  transition: 0.3s;
}
.uh-bus-wrapper {
  background: url("images/vovlvo.jpg")
    center / cover no-repeat;
  min-height: 80vh;
  position: relative;
  display: flex;
}
.uh-van-wrapper {
  background: url("images/ur.jpg")
    center / cover no-repeat;
  min-height: 80vh;
  position: relative;
  display: flex;
}
.uh-lux-wrapper {
  background: url("images/ben.jpg")
    center / cover no-repeat;
  min-height: 80vh;
  position: relative;
  display: flex;
}
@media(max-width:550px)
{
  .uh-lux-wrapper {
  background: url("images/ben.jpg")
    center / cover no-repeat;
  min-height: 50vh;
  position: relative;
  display: flex;
}
.uh-bus-wrapper {
  background: url("images/vovlvo.jpg")
    center / cover no-repeat;
  min-height: 50vh;
  position: relative;
  display: flex;
}
.uh-van-wrapper {
  background: url("images/ur.jpg")
    center / cover no-repeat;
  min-height: 50vh;
  position: relative;
  display: flex;
}
.uh-banner-wrapper {
  min-height: 50vh;
  position: relative;
  display: flex;
}
}
.tariff-section {
  background: #f8fbff;
}

.tariff-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.tariff-table thead {
  background: #0B1D3A;
  color: #fff;
  font-size: 15px;
}

.tariff-table tbody tr {
  transition: 0.3s;
}

.tariff-table tbody tr:hover {
  background: #f1f7ff;
}

.tariff-table td,
.tariff-table th {
  padding: 14px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tariff-table {
    font-size: 13px;
  }
}
/* Card Container */
.uh-contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  height: 100%;
}

.uh-contact-card:hover {
  transform: translateY(-5px);
}

/* Title */
.uh-contact-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 15px;
}

/* Grid */
.uh-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Row */
.uh-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #333;
}

/* Icon */
.uh-contact-row i {
  font-size: 18px;
  color: #0f2027;
  min-width: 20px;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
  .uh-contact-card {
    padding: 18px;
  }

  .uh-contact-row {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .uh-contact-card {
    text-align: left;
    padding: 16px;
  }

  .uh-contact-title {
    font-size: 13px;
  }

  .uh-contact-row {
    font-size: 14px;
    gap: 10px;
  }

  .uh-contact-row i {
    font-size: 16px;
  }
}
.mobile-contact a {
  text-decoration: none;
  color: #0B1D3A;
  font-size: 15px;
}

.mobile-contact a:hover {
  color: #0d6efd;
}

.mobile-contact i {
  font-size: 16px;
}
