/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
  color: var(--bs-white);
}

.btn.btn-secondary:hover {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.btn.btn-light {
  color: var(--bs-primary);
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }

  25% {
    border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
  }

  50% {
    border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
  }

  75% {
    border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
  }

  100% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }
}
/*** Icon Animation End ***/


/* ================= Renault Top Bar ================= */

.renault-topbar {
  background: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
  font-size: 13px;
}

.renault-topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 25px;
}

/* Left */
.renault-top-left a {
  color: #333;
  margin-right: 18px;
  text-decoration: none;
}

.renault-top-left i {
  margin-right: 6px;
  color: #e60012;
}

/* Right */
.renault-top-right a {
  color: #333;
  margin-left: 14px;
  font-size: 14px;
}

.renault-top-right a:hover,
.renault-top-left a:hover {
  color: #e60012;
}

/* Mobile hide (Renault style) */
@media (max-width: 991px) {
  .renault-topbar {
    display: none;
  }
}

/* ================= Topbar Auto Hide ================= */

.renault-topbar {
  transition: transform 0.3s ease;
  will-change: transform;
}

/* hidden state */
.renault-topbar.hide {
  transform: translateY(-100%);
}



/*** Navbar Start ***/
/* ================= Renault Style Navbar ================= */

.renault-navbar {
  position: fixed;
  top: 25px; /* because you have topbar  previously 35px for topbar*/ 
  width: 100%;
  z-index: 999;
  padding: 12px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.renault-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  padding: 0;
}



/* When scroll */
.renault-navbar.scrolled {
  background: #262626;
  top: 0;
  height: 65px;
  padding-top: 17px;
}

/* Layout */
.renault-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= Logo ================= */

/* Logo image */
.renault-logo img {
  width: 260px;
  max-width: 100%;
  height: auto;
}

/* mobile logo alignment  */

@media (max-width: 991px) {
  .renault-logo {
    margin-left: 0 !important;
  }

  .renault-logo a {
    margin-left: 0 !important;
    padding-left: 1px; /* move logo slightly left */
    justify-content: flex-start;
  }

  .renault-logo img {
    width: 200px !important; /* better mobile size */
  }
}



.renault-logo a {
  display: flex;
  margin-left: 75px;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}

/* Icon */
.renault-logo i {
  font-size: 20px;
  line-height: 1;
}

/* Text */
.renault-logo span {
  font-size: 22px;
  line-height: 1;
}

/* Mobile refinement */
@media (max-width: 991px) {
  .renault-logo i {
    font-size: 18px;
  }

  .renault-logo span {
    font-size: 16px;
    position: relative;
    top: -1px;
  }
}

/* Desktop only margin */
@media (min-width: 992px) {
  .renault-logo {
    margin-left: 0px;
  }
}



/* Menu */
.renault-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.renault-menu li {
  margin: 0 18px;
}

.renault-menu a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* underline (hidden by default) */
.renault-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* hover */
.renault-menu a:hover {
  color: #e60012;
}

.renault-menu a:hover::after {
  width: 100%;
}

/* active page (optional but recommended) */
.renault-menu a.active {
  color: #e60012;
}

.renault-menu a.active::after {
  width: 100%;
}


/* Right Icons */
.renault-icons {
  display: flex;
  gap: 25px;
}

.renault-icons a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.renault-icons i {
  font-size: 16px;
  margin-bottom: 3px;
}

.renault-icons a:hover {
  color: #e60012;
}

/* Vehicle Dropdown For Desktop  */
.vehicle-dropdown {
  position: relative;
}

.vehicle-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #171616c8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px;
  display: none;
  z-index: 999;
}

.vehicle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  transition: background 0.3s;
}

.vehicle-item img {
  width: 60px;
  height: auto;
}

.vehicle-item:hover {
  background: #f5f5f5;
}

.vehicle-item span {
  font-weight: 500;
}

            /* Location dropdown (desktop) */
.location-dropdown {
  position: relative;
}

.location-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  background: #171616c8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px;
  display: none;
  z-index: 999;
}

.location-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  text-decoration: none;
  color: #eeebeb;
  border-radius: 6px;
  transition: background 0.3s;
}

.location-menu a:hover {
  background: #f5f5f5;
}

/* Show on hover */
.location-dropdown:hover .location-menu {
  display: block;
}


/* Show on hover (desktop) */
.vehicle-dropdown:hover .vehicle-menu {
  display: block;
}

/* Mobile Location Dropdown */
.mobile-location {
  position: relative;
}

.mobile-location-menu {
  position: absolute;
  top: 35px;
  right: 0;
  background: #171616c8;
  min-width: 110px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.mobile-location-menu a {
  padding: 10px 15px;
  text-decoration: none;
  color: #eeebeb;
  display: block;
  font-size: 14px;
}

.mobile-location-menu a:hover {
  background: #f5f5f5;
  color: #e60121;
}


/* Mobile Toggle */
.renault-toggle {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Mobile Menu */
/* ================= Renault Mobile Navbar ================= */

.renault-mobile-icons {
  display: flex;
  gap: 22px;
  align-items: center;
  
}

.renault-mobile-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  text-align: center;
}

.renault-mobile-icons i {
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}

/* Desktop visible */
.renault-menu,
.renault-icons {
  display: flex;
}

/* Mobile drawer hidden on desktop */
@media (min-width: 992px) {
  .renault-mobile-drawer {
    display: none !important;
  }
}

/* This for our mision & vision style */

/* About Vision Card – Force Apply */
.about-item-inner {
  background-color: #262626 !important;
  color: #ffffff !important;
}

.about-item-inner h5 {
  color: #e60121 !important;
}


/* Mobile Drawer */
/* Renault Mobile Drawer */
/* ================= Renault Mobile Menu ================= */

.renault-mobile-drawer {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  padding: 70px 25px 90px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

/* Mobile submenu */
/* Mobile submenu default */
.mobile-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 8px;
}

/* Open submenu */
.mobile-has-submenu.active .mobile-submenu {
  display: block;
}

/* Rotate arrow when open */
.mobile-has-submenu.active .mobile-toggle i {
  transform: rotate(90deg);
}

.mobile-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-toggle i {
  transition: transform 0.3s ease;
}




.renault-mobile-drawer.open {
  transform: translateY(0);
}

/* Close button */
.renault-close {
  position: absolute;
  top: 18px;
  right: 18px;
  text-align: center;
  cursor: pointer;
}

.renault-close i {
  font-size: 22px;
  color: #000;
}

.renault-close span {
  display: block;
  font-size: 11px;
  color: #000;
  margin-top: 2px;
}

/* Menu list */
.renault-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.renault-mobile-list li {
  border-bottom: 1px solid #eee;
}

.renault-mobile-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  text-transform: lowercase;
}

.renault-mobile-list i {
  font-size: 14px;
}

/* Footer actions */
.renault-mobile-footer {
  position: absolute;
  bottom: 20px;
  left: 25px;
  right: 25px;
}

.renault-mobile-footer a {
  display: block;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  margin-bottom: 12px;
}

.renault-mobile-footer i {
  margin-right: 8px;
}

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
  .renault-menu,
  .renault-icons {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .renault-icons {
    display: none;
  }

  .renault-navbar {
    top: 0;
    background: #35363b14;
  }
}

/*** Navbar End ***/

/* ================= HERO VIDEO DESKTOP ================= */

.hero-video {
  width: 100%;
  height: 750px;
  object-fit: cover;
}

/* Carousel height */

.carousel .carousel-item,
.carousel .carousel-item img,
.carousel .carousel-item video {
  height: 750px;
}

.carousel .carousel-item img,
.carousel .carousel-item video {
  width: 100%;
  object-fit: cover;
}

/* Caption overlay */

.carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.219);
  display: flex;
  align-items: center;
}


/* ================= HERO MOBILE ================= */

/* ================= HERO MOBILE ================= */

@media (max-width:768px){

/* Make caption container full height */
.carousel-item .carousel-caption{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
  padding:20px;
}

/* Form alignment (top center) */

#testDriveForm{
  width:100%;
  display:flex;
  justify-content:center;
}

#testDriveForm .bg-secondary{
  width:100%;
  margin-top:20px;
}

/* Caption content (bottom left) */

.carousel-caption .text-start{
  text-align:left;
  margin-bottom:30px;
}

/* Buttons */

.carousel-caption .d-flex{
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

.carousel-caption .btn{
  width:auto;
}

/* Text size */

.carousel-caption h1{
  font-size:24px;
  line-height:32px;
}

.carousel-caption p{
  font-size:14px;
}

}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
/* .bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
    url(../img/fact-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
} */

/*** For Hero Section Video ***/
/* ================= Hero Video ================= */




/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.about .about-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.about .about-img .img-1 {
  height: 85%;
  margin-right: 50px;
}

.about .about-img .img-2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  padding-left: 50px;
  border-radius: 10px;
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 98%;
  top: 0;
  right: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  z-index: -1;
}

.about .about-item .text-item {
  position: relative;
  padding-left: 25px;
}

.about .about-item .text-item::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}
/*** About End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
  position: relative;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item:hover {
  border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
  box-shadow: 0 0 50px rgba(234, 0, 30, 0.3);
}

.categories .categories-item-inner .categories-img {
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
  border-top: 4px solid var(--bs-white);
  text-align: center;
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-carousel .owl-stage-outer {
  margin-top: 55px;
  margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
  position: absolute;
  top: 500px;
  padding: 10px 35px;
  color: var(--bs-white);
  background: var(--bs-primary);
  border-radius: 50px;
  transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
  right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}
/*** Cars Categories End ***/

/* Quick Enquiry Popup */
.qe-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.qe-popup {
  background: #fff;
  max-width: 500px;
  width: 90%;
  padding: 25px;
  border-radius: 10px;
  position: relative;
}

.qe-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
}

.qe-form input,
.qe-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.qe-form button {
  width: 100%;
  padding: 12px;
  background: #e60012;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}


/* ================= Car Detail Page ================= */

.car-detail-section {
  padding: 80px 0;
  background: #fff;
}

.car-image-wrapper img {
  border-radius: 8px;
  width: 100%;
}

.car-features-box {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
}

.car-features-box h4 {
  margin-bottom: 15px;
  border-bottom: 2px solid #e60012;
  display: inline-block;
  padding-bottom: 5px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.feature-list strong {
  background: #b71c1c;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
}

.car-info {
  margin-top: 40px;
}

.car-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.download-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border: 2px solid #e60012;
  color: #e60012;
  text-decoration: none;
  font-weight: 600;
}

.download-btn:hover {
  background: #e60012;
  color: #fff;
}

/* ==============================
   Tabs
============================== */

.car-tabs {
  margin-top: 40px;
}

/* Tab Button Container */
.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ddd;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;           /* allow horizontal scroll */
  white-space: nowrap;        /* prevent wrapping */
  scrollbar-width: none;      /* Firefox */
}

.tab-buttons::-webkit-scrollbar {
  display: none;              /* Chrome hide scrollbar */
}

/* Individual Tab */
.tab-buttons li {
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 500;
  flex-shrink: 0;             /* prevent shrinking */
  color: #555;
  transition: all 0.3s ease;
}

/* Active Tab */
.tab-buttons li.active {
  background: #e60012;
  color: #fff;
  border-radius: 4px 4px 0 0;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 20px 0;
}

.tab-content.active {
  display: block;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .tab-buttons li {
    font-size: 14px;
    padding: 10px 14px;
  }

  .tab-content {
    padding: 15px 0;
  }
}

/* car details style End */

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-content {
  position: relative;
  background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
  position: absolute;
  top: 35px;
  left: 25px;
  transform: translateY(-50%);
  padding: 12px 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
  display: flex;
  justify-content: space-between;
}

/* Default: show only 7 lines */
.blog .blog-item .blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Expand full content on Read More click */
.blog .blog-item:target .blog-content p {
  -webkit-line-clamp: unset;
  overflow: visible;
}


/*** Offers Pop up section code  ***/
.wow {
    pointer-events: auto !important;
}

.wow.animated {
    pointer-events: auto !important;
}
.wow {
    pointer-events: auto !important;
}

.wow.animated {
    pointer-events: auto !important;
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  text-align: center;
  border-radius: 10px;
  margin-top: 100px;
  background: var(--bs-light);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: #262626;
  z-index: 2;
  transition: 0.5s;
}

.team .team-item:hover::after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-white);
}
.team .team-item:hover .team-content p {
  color: var(--bs-white);
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
  top: -100px;
  margin-bottom: -100px;
  border-radius: 10px;
  z-index: 3;
}

.team .team-item .team-img img {
  transition: 0.5s;
}

.team .team-item:hover .team-img img {
  transform: scale(1.1);
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 4;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}
/*** Team End ***/

/*** Contact Start ***/
.contact .contact-add-item {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Contact End ***/

/* For Customer count & CTA Section */
.sh-cta-section {
  position: relative;
  height: 300px;
  background: url("../img/image.webp") center center / cover no-repeat;
}

.sh-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sh-cta-content {
  color: #fff;
}

.sh-cta-subtitle {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.sh-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.sh-cta-content a {
  color: #ffffff;
  text-decoration: none;
}

.sh-cta-content a:hover {
  text-decoration: underline;
}

/* Stats Section */
.sh-stats-section {
  background: #ffffff;
  padding: 60px 0;
}

.sh-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.sh-stat-item h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #e60121;
}

.sh-stat-item p {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .sh-cta-content h2 {
    font-size: 26px;
  }

  .sh-stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}


/*** Footer Start ***/
.footer {
  background: #262626;
}

.footer .footer-item a {
  line-height: 30px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 30px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #262626;
}
/*** copyright end ***/

    /* This for thankyou page style */

/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 9999;
}

    /* For Testdrive form date & time text color */

/* Fix date & time visibility on mobile devices */
/* Android Chrome fix for date & time inputs */

input[type="date"],
input[type="time"] {
  background: #f1f1f1 !important;
  color: #333 !important;
  -webkit-text-fill-color: #333 !important;
  appearance: none;
  -webkit-appearance: none;
  font-size: 16px; /* prevents zoom on mobile */
}

/* Fix the inner text fields */
input[type="date"]::-webkit-datetime-edit,
input[type="time"]::-webkit-datetime-edit {
  color: #333 !important;
}

/* Fix the wrapper of date/time text */
input[type="date"]::-webkit-datetime-edit-fields-wrapper,
input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  color: #333 !important;
}

/* Fix calendar / clock icon visibility */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  filter: invert(0);
  cursor: pointer;
}


/* Show popup */
.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Popup Box */
.popup-box {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    width: 320px;
    animation: popupScale 0.4s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box h2 {
    margin-top: 20px;
    font-size: 24px;
    color: #28a745;
}

.popup-box p {
    font-size: 14px;
    margin: 10px 0 20px;
    color: #555;
}

.popup-box button {
    padding: 8px 20px;
    border: none;
    background: #28a745;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.popup-box button:hover {
    background: #218838;
}

/* Checkmark Animation */
.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #28a745;
    margin: 0 auto;
    position: relative;
    animation: pop 0.3s ease-in-out;
}

.checkmark {
    position: absolute;
    left: 22px;
    top: 35px;
    width: 25px;
    height: 12px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(-45deg);
}

@keyframes pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

   /* For Terms and condition style  */
/* Sidebar sticky position */
.terms-sidebar{
position: sticky;
top: 120px; /* height of your header/navbar */
}

/* Fix anchor scroll */
[id]{
scroll-margin-top:120px;
}

/* Mobile fix */
@media (max-width:991px){
.terms-sidebar{
position:relative;
top:0;
}
}


     /* FAQ section style  */
.vehicle-faq{
max-width:900px;
margin:auto;
}

.faq-item{
border:1px solid #e5e5e5;
border-radius:8px;
margin-bottom:15px;
overflow:hidden;
}

.faq-question{
width:100%;
background:#f8f9fa;
border:none;
padding:18px;
font-size:18px;
font-weight:600;
text-align:left;
cursor:pointer;
}

.faq-answer{
display:none;
padding:15px 20px;
background:#fff;
}

.faq-item.active .faq-answer{
display:block;
}  


   /* search style  */

.search-wrapper {
    position: relative;
    display: inline-block;
}

.search-box {
    position: absolute;
    top: 40px;
    right: 0;
    width: 250px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
}

.search-box input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}


    /* for whatapp button */
/* ================= FLOATING CONTACT WIDGET ================= */

.contact-widget {
  position: fixed;
  right: 32px;
  bottom: 100px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.4s ease;
}
.cw-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* increase this value */
}

/* Show on scroll */
.contact-widget.show {
  opacity: 1;
  transform: translateY(0);
}


.cw-item.whatsapp i {
  font-size: 28px; /* visually equal */
}

/* ================= ICON BUTTON ================= */
.cw-item {
  position: relative;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  color: #fff;

  font-size: 20px;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;

  /* animation initial */
  opacity: 0;
  transform: translateY(20px);
}

/* Colors */
.cw-item.whatsapp { background: #25d366; }
.cw-item.call { background: #007bff; }
.cw-item.testdrive { background: #ff9800; }

/* Hover */
.cw-item:hover {
  transform: scale(1.15);
}

/* ================= STAGGER ANIMATION ================= */

.contact-widget.show .cw-item {
  animation: slideUp 0.4s ease forwards;
}

.contact-widget.show .cw-item:nth-child(1) { animation-delay: 0.1s; }
.contact-widget.show .cw-item:nth-child(2) { animation-delay: 0.2s; }
.contact-widget.show .cw-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= TOOLTIP ================= */

.cw-item::after {
  content: attr(data-label);
  position: absolute;

  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);

  background: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;

  font-size: 12px;
  white-space: nowrap;

  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Tooltip arrow */
.cw-item::before {
  content: "";
  position: absolute;

  right: 60px;
  top: 50%;
  transform: translateY(-50%);

  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #000;

  opacity: 0;
  transition: all 0.3s ease;
}

/* Show tooltip */
.cw-item:hover::after,
.cw-item:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ================= WHATSAPP PULSE ================= */

.cw-item.whatsapp::after,
.cw-item.whatsapp::before {
  /* keep tooltip working properly */
}

.cw-item.whatsapp::selection {}

/* Separate pulse layer */
.cw-item.whatsapp::marker {}

.cw-item.whatsapp {
  position: relative;
}

.cw-item.whatsapp::after {
  /* tooltip already used → so we use extra wrapper below */
}

.cw-item.whatsapp::before {
  /* tooltip arrow handled already */
}

/* Add pulse using inner span (safe way) */
.cw-item.whatsapp span {
  display: none;
}

/* Alternative pulse using shadow */
.cw-item.whatsapp {
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
  .contact-widget {
    right: 30px;
    bottom: 90px;
  }

  /* Hide tooltip on mobile */
  .cw-item::after,
  .cw-item::before {
    display: none;
  }
}

/* Card spacing */
.col-lg-4 .rounded {
  padding: 10px;
}

/* Image container */
.showroom-img-box {
  width: 100%;
  height: 220px;           /* fixed height */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Image styling */
.showroom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* prevents stretching */
  display: block;
  border-radius: 10px;
}

/* Fix iframe spacing */
iframe {
  margin-top: 5px;
  border-radius: 10px;
}

/* Responsive fix */
@media (max-width: 768px) {
  .showroom-img-box {
    height: 180px;
  }
}

    /* THIS FOR ABOUT PAGE HERO SHOWROOM IMAGE  */
/* Hero Section */
.hero-section {
  width: 100%;
  height: 100vh;
  background: url('../img/Honda-showroom-TVL.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 65vh;
  }
}
 /* THIS FOR ABOUT PAGE HERO SHOWROOM IMAGE END */