@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --nexus-blue: #0072b8;
    --nexus-dark: #004a82;
    --nexus-light: #f4f7fb;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --footer-bg: #0f172a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Font & Root remain same */
body { padding-top: 0 !important; overflow-x: hidden; font-family: "Inter", sans-serif; }

.header-sticky-wrapper {
    width: 100%;
}

.header-sticky-wrapper .navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
}
.offcanvas-header img{
    width:40px;
}
/* --- Hamburger Icon Container --- */
.custom-toggler {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--nexus-blue);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Premium Look: Beech wali line thodi chhoti */
.custom-toggler.collapsed .hamburger-icon span:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

/* --- Animation to Cross (X) --- */

/* 1. Jab Menu Khule (Not Collapsed) */
.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 2. Jab Menu Band ho (Collapsed) */
.custom-toggler.collapsed .hamburger-icon span {
    transform: none;
    opacity: 1;
}

.top-bar { background-color: var(--nexus-blue); }

.navbar { border-bottom: 1px solid rgba(0,0,0,0.05); }
.navbar-brand img { max-width: 190px; }

/* --- DESKTOP HOVER (Logic Fix) --- */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        font-weight: 600;
        color: #333 !important;
        padding: 10px 18px !important;
    }

    /* Desktop par dropdown hamesha hover par rahega */
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: none; /* Hide by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        position: absolute;
    }
}
@media (min-width: 992px) {
    /* Navbar collapse container ko control karein */
    .navbar-collapse {
        flex-grow: 0; /* Isse menu poori width nahi lega */
    }

    /* Navbar items ke beech gap set karein */
    .navbar-nav {
        gap: 10px; /* Aap is value ko 5px se 20px ke beech adjust kar sakte hain */
        align-items: center;
    }

    /* Links ki spacing reset karein */
    .navbar-nav .nav-link {
        padding: 10px 15px !important; /* Side spacing fix */
        white-space: nowrap; /* Text break na ho */
    }

    /* Button aur menu ke beech gap */
    .ms-lg-3 {
        margin-left: 20px !important;
    }
}

/* --- MOBILE OFFCANVAS (Crucial Fixes) --- */
@media (max-width: 991px) {
    /* Don't use visibility: visible here! It breaks the hide/show logic */
    .offcanvas-end {
        width: 280px !important; 
        border-left: none !important;
    }

    /* Align items properly in mobile */
    .navbar-nav {
        align-items: flex-start !important; /* Left align mobile menu */
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: left;
        padding: 12px 15px !important;
        border-bottom: 1px solid #f8f9fa;
    }

    /* Mobile Dropdown fix */
    .dropdown-menu {
        position: static !important;
        display: none; /* Let Bootstrap JS handle toggle on click */
        width: 100%;
        background: #f8f9fa;
        border: none;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
}



/* --- Premium Buttons --- */
.btn-book-now {
    background: #fff;
    color: var(--nexus-blue) !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: none;
}

.btn-book-now:hover {
    background: var(--nexus-blue);
    color: #fff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 102, 178, 0.25);
}

/* --- Features & Cards --- */
.feature-icon {
    font-size: 2.5rem;
    color: var(--nexus-blue);
    margin-bottom: 15px;
    display: inline-block;
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: var(--transition);
    background: var(--nexus-light);
    height: 100%;
    padding: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 178, 0.1);
}

/* --- Footer --- */
footer {
    background-color: var(--footer-bg);
    color: #a8b2d1;
    padding: 80px 0 20px;
}

footer h5 { 
    color: white; 
    margin-bottom: 25px; 
    font-weight: 700;
}

footer a { 
    color: #a8b2d1; 
    text-decoration: none; 
    transition: 0.3s; 
    display: block;
    margin-bottom: 10px;
}

footer a:hover { 
    color: var(--nexus-blue); 
    padding-left: 5px;
}

/* --- Mobile Fixes --- */
@media (max-width: 991px) {
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .offcanvas-backdrop.show {
        backdrop-filter: blur(4px);
        background-color: rgba(0, 40, 80, 0.4);
    }
}

@media (max-width: 768px) {
    .hero-section { 
        text-align: center; 
        padding: 80px 0; 
        min-height: auto;
    }
    
    .glass-card {
        margin-top: 40px;
    }
    .navbar-brand img {
        width: 121px !important;
        }
}

/* --- About Section Premium Styles --- */

#about {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
}

/* Background Abstract Decor */
.abstract-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 102, 178, 0.03);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

/* Oval Subtitle Background */
.about-subtitle {
    background: rgba(0, 102, 178, 0.1);
    color: var(--nexus-blue);
    padding: 8px 24px;
    border-radius: 50px; /* Oval Shape */
    font-size: 0.85rem;
    font-weight: 700;
    text-uppercase: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.text-gradient {
   color:#0072b8;
}

/* Image Wrapper Styling */
.about-img-container {
    position: relative;
    padding: 20px;
}

.main-img-wrapper {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.main-img {
    transition: transform 0.8s ease;
}

.about-img-container:hover .main-img {
    transform: scale(1.05);
}

/* Experience Badge (Oval with Glassmorphism) */
.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--nexus-blue);
    padding: 25px 35px;
    border-radius: 80px 80px 80px 10px; /* Unique Oval Blend */
    border: 4px solid #fff;
    text-align: center;
    z-index: 2;
}

/* Feature Item Styling */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    transition: 0.3s;
}



.icon-box {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--nexus-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

/* Premium Button Action */
.btn-premium-action {
    display: inline-block;
    padding: 16px 40px;
    background: var(--nexus-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 102, 178, 0.2);
}

.btn-premium-action:hover {
    background: var(--nexus-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 178, 0.3);
}

/* Animation */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-anim {
    animation: floating 4s ease-in-out infinite;
}

@media (max-width: 991px) {
    .experience-badge {
        padding: 15px 25px;
        left: 20px;
        bottom: -20px;
    }
}
/* SECTION BACKGROUND */
.features-section{
  padding: 80px 0;
  background: #f5f7fa url('../images/carbon-fibre-v2.png');
}

/* CARD */
.feature-card{
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

.feature-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ICON CIRCLE (LOGO COLOR BASED) */
.icon-box{
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* COLORS from your logo */
.icon-blue{ background: #1565c0; }
.icon-green{ background: #2e7d32; }
.icon-purple{ background: #8e24aa; }

.icon-box i{
  color: #fff;
  font-size: 28px;
}

/* TITLE */
.feature-title{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.feature-text{
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
/* ===== Section ===== */
.choose-car-section {
  background: #f9fbff;
}

/* ===== Header ===== */
.choose-car-title {
  font-weight: 800;
}

.choose-car-subtitle {
  font-size: 14px;
}

/* ===== Card ===== */
.choose-car-card {
  position: relative;
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: 0.3s ease;
}

.choose-car-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* ===== Badge ===== */
.choose-car-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  z-index: 2; /* 🔥 IMPORTANT */
}

/* ===== Image Wrap (FINAL FIX) ===== */
.choose-car-image-wrap {
  background: #f5f7fb;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Image ===== */
.choose-car-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 perfect fill */
  transition: transform 0.4s ease;
}

/* ===== Hover Zoom ===== */
.choose-car-image-wrap:hover .choose-car-image {
  transform: scale(1.08);
}

/* ===== Name ===== */
.choose-car-name {
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 2px;
}

/* ===== Type ===== */
.choose-car-type {
  font-size: 13px;
  color: #6c757d;
}

/* ===== Description ===== */
.choose-car-desc {
  background: #e5e5e5;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  margin: 8px 0;
  color: #444;
}

/* ===== Specs ===== */
.choose-car-specs {
  display: flex;
  gap: 12px;
  font-size: 13px;
  margin-top: 5px;
  color: #444;
  flex-wrap: wrap;
}

.choose-car-specs i {
  color: #0d6efd;
  margin-right: 4px;
}

/* ===== Footer ===== */
.choose-car-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

/* ===== Price ===== */
.choose-car-price {
  font-weight: 700;
  font-size: 18px;
}

/* ===== Button ===== */
.choose-car-btn {
  border-radius: 25px;
  padding: 6px 16px;
  font-size: 13px;
  transition: 0.3s;
      background-color: #0074b8;
    border: 1px solid #0074b8;
}

.choose-car-btn:hover {
  transform: translateX(3px);
}

/* ===== View Button ===== */
.choose-car-view-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.choose-car-view-btn:hover {
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media(max-width:768px){

  .choose-car-image-wrap {
    height: 140px;
  }

  .choose-car-footer-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .choose-car-btn {
    width: 100%;
    text-align: center;
  }
}
.choose-car-card:hover .choose-car-image {
  transform: scale(1.12);
}

.nexus-why-section {
  background: linear-gradient(135deg, #eef5ff, #f8fbff);
  position: relative;
  overflow: hidden;
}

/* background glow */
.nexus-why-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,110,253,0.15), transparent);
  top: -100px;
  left: -100px;
}

.nexus-why-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,200,150,0.15), transparent);
  bottom: -100px;
  right: -100px;
}

/* ============================= */
/* ===== TITLE & TEXT ========== */
/* ============================= */

.nexus-why-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

.nexus-why-title span {
  color: #0072b8;
}

.nexus-why-subtitle {
  margin: 15px 0 30px;
  color: #6c757d;
  font-size: 15px;
  max-width: 500px;
}

/* ============================= */
/* ===== FEATURE CARDS ========= */
/* ============================= */

.nexus-feature-card {
  display: flex;
  gap: 15px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  margin-bottom: 15px;
  transition: 0.3s;
}

.nexus-feature-card:hover {
  transform: translateX(6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* icon */
.nexus-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* text */
.nexus-feature-card h6 {
  margin: 0;
  font-weight: 600;
}

.nexus-feature-card p {
  font-size: 13px;
  color: #6c757d;
  margin-top: 5px;
}

/* ============================= */
/* ===== IMAGE ================= */
/* ============================= */

.nexus-why-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.nexus-why-image img {
  width: 100%;
  border-radius: 20px;
  transition: 0.4s;
}

.nexus-why-image:hover img {
  transform: scale(1.05);
}

.nexus-why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.2));
}

/* ============================= */
/* ===== TABLET OPTIMIZATION === */
/* ============================= */

@media (max-width: 992px) {

  .nexus-why-title {
    font-size: 26px;
  }

  .nexus-why-subtitle {
    font-size: 14px;
  }

  /* stack spacing */
  .nexus-why-section .row {
    gap: 30px;
  }

  .nexus-feature-card {
    padding: 14px;
  }
}

/* ============================= */
/* ===== MOBILE OPTIMIZATION === */
/* ============================= */

@media (max-width: 768px) {

  /* center align */
  .nexus-why-title,
  .nexus-why-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* spacing fix */
  .nexus-why-subtitle {
    margin-bottom: 20px;
  }

  /* image top or bottom (better UX) */
  .nexus-why-image {
    margin-top: 20px;
  }

  /* feature cards compact */
  .nexus-feature-card {
    padding: 12px;
    border-radius: 14px;
  }

  /* reduce icon size */
  .nexus-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* text */
  .nexus-feature-card h6 {
    font-size: 14px;
  }

  .nexus-feature-card p {
    font-size: 12px;
  }

}

/* ============================= */
/* ===== SMALL MOBILE ========= */
/* ============================= */

@media (max-width: 480px) {

  .nexus-why-title {
    font-size: 20px;
  }

  .nexus-why-subtitle {
    font-size: 13px;
  }

  .nexus-feature-card {
    flex-direction: row;
    gap: 10px;
  }

  .nexus-icon {
    min-width: 36px;
    height: 36px;
  }

}

/* ===== Section ===== */
.nexus-how-section {
  background: white;
}

/* ===== Title ===== */
.nexus-how-title {
  font-size: 32px;
  font-weight: 800;
}

.nexus-how-title span {
  color: #0072b8;
}

.nexus-how-subtitle {
  color: #6c757d;
  max-width: 500px;
  margin: auto;
}

/* ===== Card ===== */
.nexus-how-card {
  position: relative;
  padding: 30px 20px;
  border-radius: 20px;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
}

/* hover effect */
.nexus-how-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* glow effect */
.nexus-how-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(13,110,253,0.15), transparent);
  top: -50px;
  right: -50px;
}

/* ===== Icon ===== */
.nexus-how-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(13,110,253,0.3);
}

/* ===== Text ===== */
.nexus-how-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.nexus-how-card p {
  font-size: 14px;
  color: #6c757d;
}

/* ===== Step Number ===== */
.nexus-how-number {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: 800;
  color: rgba(13,110,253,0.08);
}

/* ===== Button ===== */
.nexus-how-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nexus-how-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13,110,253,0.3);
}

/* ============================= */
/* ===== RESPONSIVE ========= */
/* ============================= */

@media (max-width: 992px) {
  .nexus-how-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {

  .nexus-how-title {
    font-size: 22px;
  }

  .nexus-how-card {
    padding: 25px 15px;
  }

  .nexus-how-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

}

@media (max-width: 480px) {

  .nexus-how-title {
    font-size: 20px;
  }

  .nexus-how-card p {
    font-size: 13px;
  }

}
/* ===== Section ===== */
.nexus-review-section {
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

/* ===== Title ===== */
.nexus-review-title {
  font-size: 30px;
  font-weight: 800;
}

.nexus-review-subtitle {
  color: #6c757d;
}

/* ===== Card ===== */
.nexus-review-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  height: 100%;
}

.nexus-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== Header ===== */
.nexus-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== User ===== */
.nexus-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nexus-user-img {
  width: 42px!important;
  height: 42px!important;
  border-radius: 50%;
  object-fit: cover;
}

/* FIX: proper spacing for name + google text */
.nexus-user-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.nexus-review-source {
  font-size: 12px;
  color: #6c757d;
  display: block;
  margin-top: 2px;
}

/* ===== Google Icon ===== */
.nexus-google-icon {
  width: 45px !important;
  height: auto;
}

/* ===== Stars ===== */
.nexus-stars {
  margin: 10px 0 6px;
}

.nexus-stars i {
  color: #ffc107;
  font-size: 14px;
}

/* ===== Text ===== */
.nexus-review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* ============================= */
/* ===== Owl Fixes ========= */
/* ============================= */

/* Remove dots */
.nexus-review-slider .owl-dots {
  display: none !important;
}

/* Remove arrows (if enabled) */
.nexus-review-slider .owl-nav {
  display: none !important;
}

/* Fix spacing between cards */
.nexus-review-slider .owl-stage {
  display: flex;
}

.nexus-review-slider .owl-item {
  display: flex;
}

/* ============================= */
/* ===== Responsive ========= */
/* ============================= */

@media (max-width: 768px) {

  .nexus-review-title {
    font-size: 24px;
  }

  .nexus-review-card {
    padding: 16px;
  }

  .nexus-google-icon {
    width: 38px !important;
  }
}

@media (max-width: 480px) {

  .nexus-review-text {
    font-size: 13px;
  }

  .nexus-user-img {
    width: 38px;
    height: 38px;
  }
}
/* ===== Owl Nav Container ===== */
.nexus-review-slider .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
  gap: 10px;
}

/* ===== Buttons ===== */
.nexus-review-slider .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* ===== Icon ===== */
.nexus-review-slider .owl-nav i {
  font-size: 16px;
  color: #0d6efd;
}

/* ===== Hover ===== */
.nexus-review-slider .owl-nav button:hover {
  background: #0d6efd !important;
}

.nexus-review-slider .owl-nav button:hover i {
  color: #fff;
}

/* ============================= */
/* ===== MOBILE FIX ========= */
/* ============================= */

@media (max-width: 768px) {

  .nexus-review-slider .owl-nav {
    position: static;
    justify-content: center;
    margin-top: 15px;
  }

  .nexus-review-slider .owl-nav button {
    width: 36px;
    height: 36px;
  }

}
/* ===== Footer Base ===== */
.nexus-footer-advanced {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
}

/* ===== Glow Effects ===== */
.nexus-footer-advanced::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13,110,253,0.2), transparent);
  top: -100px;
  left: -100px;
}

.nexus-footer-advanced::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,200,150,0.15), transparent);
  bottom: -100px;
  right: -100px;
}

/* ===== Logo ===== */
.nexus-footer-logo {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}

/* ===== Description ===== */
.nexus-footer-desc {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 10px;
}

/* ===== Titles ===== */
.nexus-footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ===== Links ===== */
.nexus-footer-list {
  list-style: none;
  padding: 0;
}

.nexus-footer-list li {
  margin-bottom: 8px;
}

.nexus-footer-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.nexus-footer-list a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* ===== Contact ===== */
.nexus-footer-contact {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #94a3b8;
}

.nexus-footer-contact i {
  color: #0d6efd;
}

/* ===== Social ===== */
.nexus-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.nexus-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: 0.3s;
}

.nexus-footer-social a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== Bottom ===== */
.nexus-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
  color: #94a3b8;
}

/* ============================= */
/* ===== Responsive ========= */
/* ============================= */

@media (max-width: 768px) {

  .nexus-footer-advanced {
    text-align: center;
  }

  .nexus-footer-social {
    justify-content: center;
  }

  .nexus-footer-contact {
    justify-content: center;
  }

}
/* ===== WhatsApp Button ===== */
.nexus-whatsapp-btn {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;

  background: #25D366;
  color: #fff;

  border-radius: 50px;
  padding: 10px 16px;

  display: flex !important;
  align-items: center;
  gap: 8px;

  text-decoration: none;
  font-size: 14px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 99999;

  transition: 0.3s ease;
}

/* Icon */
.nexus-whatsapp-btn i {
  font-size: 20px;
}

/* Text */
.nexus-whatsapp-text {
  font-weight: 500;
}

/* Hover */
.nexus-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* ===== Pulse Animation ===== */
.nexus-whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nexus-whatsapp-btn {
    padding: 12px;
    border-radius: 50%;
  }

  .nexus-whatsapp-text {
    display: none;
  }
}
/* Modal White Card */
.custom-modal {
    border-radius: 16px;
    background: #ffffff;
    color: #222;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Heading */
.modal-title {
    font-weight: 600;
    color: #1177b6;
}

/* Sub text */
.sub-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
}

/* Input */
.form-control {
    background: #f5f7fa;
    border: 1px solid #e0e0e0;
    color: #222;
    border-radius: 8px;
}

.form-control::placeholder {
    color: #999;
}

/* Input group */
.input-group-text {
    background: #f5f7fa;
    border: 1px solid #e0e0e0;
    color: #333;
    border-radius: 8px 0 0 8px;
}

/* Button */
.btn-theme {
    background: linear-gradient(45deg, #1177b6, #1da1f2);
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
    color: #fff;
}

/* Button hover */
.btn-theme:hover {
    opacity: 0.9;
}

/* OTP */
.otp-input {
    width: 42px;
    height: 48px;
    text-align: center;
    margin: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f5f7fa;
    color: #222;
    font-size: 18px;
}

.otp-input:focus {
    outline: none;
    border: 1px solid #1177b6;
    box-shadow: 0 0 5px rgba(17,119,182,0.3);
}

/* Footer */
.footer-text {
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
    color: #888;
}
.success-icon {
    width: 70px;
    height: 70px;
    background: #e6f7ec;
    color: #28a745;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    animation: pop 0.4s ease;
}

@keyframes pop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.time-mode .flatpickr-days {
    display: none !important;
}

.time-mode .flatpickr-time {
    display: block !important;
}

/* BREADCRUMB SECTION */
.nx-breadcrumb {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    padding: 50px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* glow effect */
.nx-breadcrumb::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(13, 110, 253, 0.2);
    border-radius: 50%;
    filter: blur(70px);
}

/* TITLE */
.nx-breadcrumb-title {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
    word-break: break-word;
}

/* LIST */
.nx-breadcrumb-list {
    background: rgba(255,255,255,0.08);
    padding: 10px 18px;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    display: inline-flex;
}

/* LINK */
.nx-breadcrumb-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nx-breadcrumb-link:hover {
    color: #00b4d8;
}

/* ACTIVE */
.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

/* SEPARATOR */
.breadcrumb-item + .breadcrumb-item::before {
    color: #aaa;
}

/* SMALL DEVICES */
@media (max-width: 576px) {

    .nx-breadcrumb {
        padding: 35px 15px;
        text-align: center;
    }

    .nx-breadcrumb-title {
        font-size: 1.4rem;
    }

    .nx-breadcrumb-list {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .nx-breadcrumb-link,
    .breadcrumb-item.active {
        font-size: 0.85rem;
    }
}

/* TABLETS */
@media (min-width: 577px) and (max-width: 991px) {

    .nx-breadcrumb-title {
        font-size: 1.7rem;
    }

    .nx-breadcrumb-list {
        padding: 9px 16px;
    }
}

/* LARGE SCREENS */
@media (min-width: 1200px) {

    .nx-breadcrumb-title {
        font-size: 2.2rem;
    }

    .nx-breadcrumb {
        padding: 60px 0;
    }
}

/* SECTION */
.nx-section { padding: 80px 0; }

/* TITLE */
.nx-title {
    font-size: 2.2rem;
    font-weight: 700;
}

/* TEXT */
.nx-text {
    color: #6c757d;
    line-height: 1.7;
}

/* IMAGE WRAPPER */
.nx-img-wrap {
    position: relative;
}
.nx-img-wrap img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* FLOAT CARD */
.nx-float-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #0072b8;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* FEATURE */
.nx-feature {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.nx-feature i {
    color: #0072b8;
}

/* STATS */
.nx-stats {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #fff;
}
.nx-stat-box {
    text-align: center;
}
.nx-stat-number {
    font-size: 2rem;
    font-weight: 700;
}
.nx-stat-text {
    opacity: 0.8;
}

/* CARD */
.nx-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
}
.nx-card:hover {
    transform: translateY(-8px);
}

/* ICON */
.nx-icon {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 10px;
}

/* ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .nx-section { padding: 50px 15px; text-align:center; }
    .nx-title { font-size: 1.7rem; }
    .nx-float-card { position: static; margin-top: 15px; }
}

/* SECTION */
.nx-section { padding: 70px 0; }

/* TITLE */
.nx-title { font-size: 2rem; font-weight: 700; }

/* CARD */
.nx-contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
}
.nx-contact-card:hover {
    transform: translateY(-6px);
}

/* ICON */
.nx-icon {
    font-size: 24px;
    color: #0072b8;
    margin-bottom: 10px;
}

/* FORM */
.nx-form input,
.nx-form textarea {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    width: 100%;
}
.nx-form input:focus,
.nx-form textarea:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

/* BUTTON */
.nx-btn {
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    border: none;
}
.nx-btn:hover {
    opacity: 0.9;
}

/* MAP */
.nx-map iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    border: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .nx-section { padding: 50px 15px; }
    .nx-title { font-size: 1.6rem; text-align:center; }
}

/* SECTION */
.nx-terms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* CONTAINER */
.nx-terms-container {
    max-width: 900px;
}

/* TITLE */
.nx-terms-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d1b2a;
}

/* INTRO */
.nx-terms-intro {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* BLOCK */
.nx-terms-block {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.nx-terms-block:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
.nx-terms-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0072b8;
}

/* TEXT */
.nx-terms-block p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .nx-terms-section {
        padding: 50px 15px;
    }

    .nx-terms-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .nx-terms-container {
        max-width: 100%;
    }

}

/* SECTION */
.nx-privacy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* CONTAINER */
.nx-privacy-container {
    max-width: 900px;
}

/* TITLE */
.nx-privacy-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d1b2a;
}

/* INTRO */
.nx-privacy-intro {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* BLOCK */
.nx-privacy-block {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* HOVER */
.nx-privacy-block:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
.nx-privacy-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0072b8;
}

/* TEXT */
.nx-privacy-block p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .nx-privacy-section {
        padding: 50px 15px;
    }

    .nx-privacy-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .nx-privacy-container {
        max-width: 100%;
    }

}
/* SECTION */
.nx-refund-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* CONTAINER */
.nx-refund-container {
    max-width: 900px;
}

/* TITLE */
.nx-refund-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d1b2a;
}

/* INTRO */
.nx-refund-intro {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* BLOCK */
.nx-refund-block {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* HOVER */
.nx-refund-block:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
.nx-refund-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0072b8;
}

/* TEXT */
.nx-refund-block p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .nx-refund-section {
        padding: 50px 15px;
    }

    .nx-refund-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .nx-refund-container {
        max-width: 100%;
    }
}
/* WRAPPER */
.nx-booking-wrapper {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* INPUT */
.nx-input {
    height: 50px;
    border-radius: 10px;
    border: none;
    padding: 0 15px;
    font-size: 14px;
}

/* BUTTON */
.nx-btn-book {
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.nx-btn-book:hover {
    opacity: 0.9;
}

/* LABEL */
.nx-label {
    color: #fff;
    font-size: 13px;
    margin-bottom: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .nx-booking-wrapper {
        padding: 20px;
        margin-top: 20px;
    }
}

/* ===== Global Frontend Fixes ===== */
img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

.navbar-brand img {
    width: 190px;
    height: auto;
}

.offcanvas-title img {
    width: 36px;
    height: auto;
}

.nav-link.active {
    color: var(--nexus-blue) !important;
}

.hero-section h1,
.hero-section p {
    word-break: break-word;
}

.choose-car-price {
    white-space: nowrap;
}

.nexus-user-name {
    word-break: break-word;
}

@media (max-width: 991px) {
    .top-bar .container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .top-social {
        margin-left: auto;
    }

    .hero-section {
        min-height: auto;
        padding: 72px 0;
    }

    .hero-section .display-3 {
        font-size: 2rem;
    }

    .glass-card {
        padding: 20px;
        margin-top: 16px;
    }

    .nx-car-area {
        padding-left: 0;
        margin-top: 16px;
    }

    .nx-car-area::before {
        display: none;
    }

    .nx-filter-box {
        position: static;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .choose-car-title,
    .nexus-how-title,
    .nexus-review-title {
        font-size: 1.5rem;
    }

    .choose-car-card {
        padding: 12px;
    }

    .choose-car-image-wrap {
        height: 160px;
    }

    .nx-booking-wrapper .row > div {
        width: 100%;
    }

    .nx-book-box {
        padding: 16px;
    }

    .nx-mobile-bar {
        left: 0;
        z-index: 1040;
    }

    body {
        padding-bottom: 78px;
    }

    .nexus-whatsapp-btn {
        bottom: 90px !important;
    }

    .nexus-footer-bottom p {
        font-size: 13px;
    }
        .hero-section {
        min-height: auto;
        padding: 0px 0!important;
    }
        .hero-content {
        text-align: center;
        margin-bottom: 40px;
        margin-top: 40px;
    }
    .about-img-container {
    position: relative;
    padding: 0px;
}
.choose-car-section {
    background: #f9fbff;
    padding-bottom: 10px!important;
}
#about{
 padding-top: 10px!important;   
}
}
.cust{
    background-color: #0072b8!important;
}