/********** Template CSS **********/


@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

html,
body {
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  color: #000;
  background: linear-gradient(to right, #f5f5f5, #e0e0e0);
  position: relative;
  height: 100%;
}

:root {
  --primary: #D62828;
  /* Bold red */
  --secondary: #000000;
  /* True black */
  --dark-1: #1A1A1A;
  /* Deep charcoal */
  --dark-2: #121212;
  /* Jet black with softness */
  --dark-3: #2C2C2C;
  /* Mid-dark for contrast */
  --accent: #FF3C38;
  /* Vivid red for highlights or buttons */
  --light: #F4F5F8;
  /* Soft contrast */
  --white: #ffffff;
}


.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.gallery {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.main-image img {
  width: 350px;
  height: 400px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.main-image img:hover {
  transform: scale(1.05);
}


.thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: hidden;
  white-space: nowrap;

}

.thumbnails img {
  width: 100px;
  height: 90px;
  cursor: pointer;
  border-radius: 5px;
  transition: opacity 0.3s ease-in-out, transform 0.2s;
}

.thumbnails img:hover {
  opacity: 0.7;
}




.card {
  border: none;
  text-align: center;
}

.card img {
  width: 100px;
  height: auto;
  margin: auto;
}

.card-title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}





.dealer-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.dealer-box {
  position: relative;
  width: 45%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.dealer-box img,
.dealer-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.overlay h2 {
  font-size: 24px;
  margin-top: 10px;
  font-weight: bold;
}

.btn-custom {
  background: white;
  color: #007bff;
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
}

.btn-custom:hover {
  background: #007bff;
  color: white;
}




.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 40px;
}

.wheel-title {
  color: #007bff;
  font-weight: bold;
}

.wheel-desc {
  color: black;
  font-size: 14px;
}





h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.nav-bar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: var(--dark);
}

.nav-bar::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 30px 5px;
  font-size: 16px;
  font-weight: 500 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
}

.nav-item {
  font-size: 1rem;
  font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--dark-1) !important;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 5px;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 30, 50, .7);

  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 18px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.page-header {
  height: 400px;
  margin-bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg); */
  background: linear-gradient(rgba(0, 123, 255, .125), rgba(0, 123, 255, .125)), url('../img/car.png');

  background-attachment: fixed;
}

@media (max-width: 991.98px) {
  .page-header {
    height: 300px;
  }
}

.service-item {
  height: 320px;
  background: var(--light);
  transition: .5s;
}

.service-item:hover,
.service-item.active {
  background: var(--secondary);
}

.service-item h1,
.service-item h4 {
  color: #007bff;
  transition: .5s;
}

.service-item p {
  color: black;
}

.service-item:hover h1,
.service-item.active h1 {
  color: var(--dark) !important;
}

.service-item:hover h4,
.service-item.active h4,
.service-item:hover p,
.service-item.active p {
  color: var(--light);
}

.rent-item {
  padding: 30px;
  text-align: center;
  background: var(--light);
  transition: .5s;
}




.rent-item:hover h4,
.rent-item.active h4 {
  color: var(--light);
}

.team-item {
  padding: 30px 30px 0 30px;
  text-align: center;
  background: var(--light);
  transition: .5s;
}

.team-item:hover,
.owl-item.center .team-item {
  background: var(--secondary);
}

.team-item h4 {
  transition: .5s;
}

.owl-item.center .team-item h4,
.owl-item.center .rent-item h4 {
  color: var(--light);
}

.team-item .team-social {
  top: 0;
  left: 0;
  opacity: 0;
  transition: .5s;
  background: var(--light);
}

.owl-item.center .team-item .team-social,
.owl-item.center .rent-item {
  background: var(--secondary);
}

.team-item:hover .team-social {
  opacity: 1;
  background: var(--secondary);
}

.team-carousel .owl-nav,
.related-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 60px;
  top: calc(50% - 30px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  font-size: 22px;
  transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.vendor-carousel .owl-dots,
.testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendor-carousel .owl-dot,
.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  transition: .5s;
}

.vendor-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
  width: 40px;
  height: 40px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 80px;
  height: 80px;
}

.testimonial-carousel .owl-item .testimonial-item {
  display: flex;
  flex-direction: column;
  margin: 50px 0px;
  height: 350px;
  transition: .5s;
  background: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--secondary);
}

.testimonial-carousel .owl-item .testimonial-item h1,
.testimonial-carousel .owl-item .testimonial-item h4 {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item h1 {
  color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h4 {
  color: var(--light);
}

.bg-banner {
  background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(/img/car.png);
  background-attachment: fixed;
}



.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-link {
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ee0653;
  transition: all 0.5s;
}

.nav-link:hover::before {
  width: 100%;
}

/* Test comment */
.nav-bar {
  background-color: transparent !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  transition: top 0.3s ease-in-out, background-color 0.3s ease !important;
  z-index: 1000 !important;
  backdrop-filter: blur(5px) !important;
  /* Optional for glassy effect */
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 100% !important;
  padding: 0;
  margin: 0;
}

footer {
  background: linear-gradient(135deg, #1a1a1a, #390101);
  overflow: hidden;

}

footer>div {
  padding: 4px 20px !important
}

footer a:hover {
  color: var(--secondary) !important;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}

.primary-btn {
  background-color: var(--primary);
  color: var(--white);
  font-weight: bold;
  margin: 0 0.5rem 0.5rem 0.5rem;
  height: auto;
  padding: 0.5rem 0.5rem;
  border: none;
  text-decoration: none !important;
  transition: all 1s ease;
  cursor: pointer;
}

.primary-btn:hover {
  background-color: var(--secondary);
  /* Slightly darker red on hover */
  color: var(--white);
}

.secondary-btn {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: bold;
  margin: 0 0.5rem 0.5rem 0.5rem;
  height: auto;
  padding: 0.5rem .5rem;
  border: none;
  text-decoration: none !important;
  transition: all 1s ease;
  cursor: pointer;
}

.secondary-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* About us */
.custom-about-header {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)), url('/img/car.png') center center / cover no-repeat;
  color: white;
  position: relative;

  animation: fadeIn 2s ease-out;
  animation: bgZoom 20s ease-in-out infinite;
}

.custom-about-header {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}


.custom-about-header h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.custom-about-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-top: 1rem;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

@keyframes bgZoom {
  0% {
    background-size: 100%;
  }

  50% {
    background-size: 110%;
  }

  100% {
    background-size: 100%;
  }
}

.nav-link {
  color: rgb(0, 0, 0) !important;
  padding-right: 1rem;
  font-weight: 600;
}

.zigzag-section {
  width: 80%;
  margin: auto;
}

.content-box {
  background: transparent;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease;
}

.content-box:hover {
  transform: translateY(-5px);
}

.red-border {
  border-left: 6px solid red;
}

.row.flex-lg-row-reverse .red-border {
  border-right: 6px solid red;
  border-left: none;

}

.zigzag-heading {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.zigzag-heading::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: -5px;
  background-color: red;
  transition: width 0.3s ease;
}

.zigzag-heading:hover::after {
  width: 100%;
}


@media (max-width: 768px) {
  .zigzag-heading {
    text-align: center !important;
    margin-top: 20px;
  }

  .red-border {
    border-left: 6px solid red;
  }

  .row.flex-lg-row-reverse .red-border {
    border-right: 6px solid red;
    border-left: none;

  }

  .zigzag-section .row.flex-lg-row-reverse {
    flex-direction: column !important;
  }

  .zigzag-section .row {
    flex-direction: column !important;
  }

  .zigzag-section .row.align-items-center {
    display: flex !important;
    flex-wrap: wrap;
  }

  .zigzag-section .col-lg-6:nth-child(2) {
    order: -1;
    text-align: center !important;
    margin-bottom: 1rem;
  }

  .zigzag-heading {
    margin-top: 1rem;
  }

}



.dealer-left-image {
  margin-left: -1.5rem;
}

.dealer-right-image {
  margin-right: -1.5rem;
}

.hover-underline {
  position: relative;
  display: inline-block;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: red;
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

.action-buttons {
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
}

.action-buttons a {
  background-color: black;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

.action-buttons a:hover {
  background-color: #222;
  color: white;
}

@media (max-width: 768px) {

  .custom-about-header {
    height: 30vh !important;
  }

  .custom-about-header {
    background-attachment: local;
  }

  .about-us-container {
    margin-top: -2rem;
  }

  .glass-card {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .dealer-banner {
    padding: 30px;
  }
}

/* about us */


.wheel-collection-container {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
}

/* Section Title */
.wheel-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

/* Card Grid */
.wheel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.wheel-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wheel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 0, 0, 0.2);
}

/* Image Wrapper */
.wheel-img-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.wheel-card  {
  transition: transform 0.3s ease;
  will-change: transform;
}
.wheel-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  will-change: transform;
}

.wheel-card:hover img {
  transform: scale(1.05);
}


/* Card Title */
.wheel-card-title {
  padding: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 0, 0, 0.3));
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Title */
@media (max-width: 480px) {
  .wheel-title {
    font-size: 2rem;
  }

  .wheel-card-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .wheel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wheel-grid {
    grid-template-columns: 1fr;
  }
}

.innovation-section {
  width: 100%;
  background: #e2e2e2;
  padding: 2% 3%;
}

.inner-innovation-section>div:first-child {
  display: none;
  width: 40%;
  height: 150px;
  margin: 0 auto;
  background: #e2e2e2;
  display: flex;
  justify-content: center;
  align-items: center;

  @media screen and (max-width:768px) {
    width: 80%;
  }
}

.inner-innovation-section>div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  padding-bottom: 20px;
}

.inner-innovation-section>div:first-child {
  @media screen and (max-width:768px) {
    display: none;
  }
}

.inner-innovation-section>div:nth-child(2) {
  display: flex;
  justify-content: space-between;
}

.inner-innovation-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 20px;
}

.inner-innovation-section .text-box {
  width: 100%;
  padding: 0 20px;
  text-align: right;
  @media screen and (max-width:768px){
    padding: 0;
  }
}

.driven-by-sec {
  padding-left: 100px;
  font-size: 3rem;
  background: linear-gradient(to right, #b30000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  @media screen and (max-width:990px) {
    padding-left: 0;
  }
}

.inner-innovation-section .text-content {
  width: 100%;
  padding-right: 15%;
  font-size: 1.2rem;
  font-weight: 400;
  @media screen and (max-width:1024px) {
    padding: 0;
  }
}

/* Tablet - Medium Screens */
@media screen and (max-width: 1024px) {
  .inner-innovation-section .text-content {
    font-size: 1.1rem;
  }
  .driven-by-sec {
    font-size: 2.5rem;
  }
}

/* Mobile - Small Screens */
@media screen and (max-width: 768px) {
  .driven-by-sec {
    font-size: 2.5rem;
    padding-left: 0;
    text-align: center;
  }

  .inner-innovation-section .text-box {
    text-align: start;
    margin-bottom: 20px;
  }

  .inner-innovation-section .text-content {
    text-align: start;
    font-size: 1rem;
    padding: 0;
  }

  .text-box-wrapper {
    flex-direction: column;
  }
}

.what-makes-container {
  width: 100%;
}

.what-makes-container>div:first-child>div:first-child {
  display: flex;
  padding-left: 10%;
  justify-content: center;
  flex-direction: column;
  text-wrap: wrap;
}

.what-inner {
  margin-left: 0px !important;
}

.what-makes-container h1 {
  font-weight: bold;
}

.what-makes-container .need-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.what-makes-container .need-more p {
  text-align: center;
  text-wrap: wrap;
  /* padding-left: 20px; */
}
.what-makes-container .section-title{
  @media screen and (max-width:768px) {
    margin-top: 50px;
  }
}
.our-client-div{
  background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
@media screen and (max-width:768px) {
  padding-top: 50px !important;
}
}
.our-client,
.our-best-selling {
  background: #e2e2e2 !important;
}

.wheel-banner {
  background: #e2e2e2 !important;
  padding: 2rem 0 0 0;
  position: relative;
  overflow: visible;
}

.wheel-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.wheel-container {
  background: linear-gradient(135deg, #1a1a1a, #390101);
}

.wheel-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.wheel-cta {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
}

.wheel-image {
  position: relative;
  z-index: 2;
  margin-top: -50px;

  @media screen and (max-width: 1024px) {
    margin-top: 0px;
  }
}

.wheel-image img {
  width: 100%;
  max-width: 600px;
  position: relative;
  top: -60px;

  @media screen and (max-width: 1024px) {
    top: 0px !important;
  }
}

.wheel-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: -50px;
  padding-left: 20%;

  @media screen and (max-width: 1024px) {
    margin-top: 0px !important;
    padding-left: 10% !important;
  }

  @media screen and (max-width: 768px) {
    padding-left: 0% !important;
  }
}

.arrow-div {
  width: 100%;
  display: flex;

  @media screen and (max-width: 768px) {
    justify-content: center !important;
  }
}

#wheel-section {
  @media screen and (max-width: 1024px) {
    flex-wrap: nowrap !important;
  }

  @media screen and (max-width: 768px) {
    flex-direction: column-reverse !important;

  }
}

.wheel-text-parent {
  @media screen and (max-width: 768px) {
    width: auto;
    margin: 5% 0;
  }
}

.wheel-footer {
  padding: 0 !important;
  margin: 0px !important;
}

.wheel-footer>div {
  padding: 0 !important;
  margin: 0 !important;
}

.dealer-banner {
  gap: 20px !important;
}

.padding-container {
  padding: 30px 0 !important;
}

.testimonial-item {
  width: auto;
  display: flex;
  flex-direction: column;
  margin: 50px 0px;
  min-height: 300px;
}

.blog-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  flex-wrap: wrap;
}

.blog-list {
  width: 30%;
  background-color: #fff;
  border-right: 1px solid #ddd;
  overflow-y: auto;
  padding: 20px;
}

.blog-list-item {
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: background 0.2s ease;
}

.blog-list-item:hover {
  background-color: #e9e9e9;
}

.blog-details {
  width: 70%;
  padding: 30px;
  overflow-y: auto;
}

.blog-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.blog-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    height: auto;
  }

  .blog-list,
  .blog-details {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .blog-list {
    max-height: 300px;
    overflow-y: auto;
  }

  .blog-details {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 1.4rem;
  }

  .blog-content p {
    font-size: 0.95rem;
  }
}

.terms-container {
  max-width: 70%;
  margin: 0 auto;

  @media screen and (max-width:990px) {
    max-width: 80%;
  }

  @media screen and (max-width:768px) {
    max-width: 80%;
  }
}

.terms-container h3 {
  font-size: 1.5rem;
  color: var(--primary);
}

.footer-gallery a {
  color: white !important;
}

.footer-gallery img {
  transition: transform 1s ease-in-out;
}

.footer-gallery img:hover {
  transform: scale(1.5);
}

.productContainerMainDiv {
  width: 100%;
  background-color: #ffff;
}

.productContainerChildDiv {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.productContainerChildDiv>div {
  width: 50%;

}


/* Base container styling */
.productMainImage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;

  border-radius: 20px;
  max-width: 600px;
  margin: auto;
  color: #fff;
  box-sizing: border-box;
}

/* Image card styling */
.productMainImageCard {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.productMainImageCard:hover {
  transform: scale(1.02);
}

/* Image styling */
.productMainImageCard img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  /* shows full image without cutting */
  border-radius: 15px;
  transition: transform 0.4s ease-in-out;
  /* fallback background */
}

.productMainImageCard img:hover {
  transform: scale(1.03);
}

/* Description section */
.productDescription {
  padding: 1rem;
  background-color: transparent;
  border-radius: 10px;
  transition: background-color 0.3s ease-in-out;
}
.productDescription h5 {
  font-size: 1.2rem;
  color: #ff2e2e;
  /* bright red */
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

#productDescription {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease forwards;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .productMainImage {
    padding: 1rem;
  }

  .productDescription {
    padding: 1rem;
  }

  #productDescription {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .productMainImage {
    padding: 1rem;
  }

  .productDescription h5 {
    font-size: 1rem;
  }

  #productDescription {
    font-size: 0.9rem;
  }

  .productMainImageCard img {
    max-height: 300px;
  }
}


.productInfoContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;

  color: #fff;
  border-radius: 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.productInfo {
  flex: 1 1 300px;
}

.productInfo h2 {
  font-size: 2.5rem;
  color: #c20809;
  font-family: "Conthrax Sb";
  margin-bottom: 1rem;
  font-weight: 700;


}

.productInfo ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.productInfo li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.productInfo strong {
  color: #c20809;
  font-family: "Conthrax Sb";
}

.productInfo span {
  color: #0f0000;
}

#productAvailability {
  color: #0f0000;
}

.btn-dark {
  background-color: var(--primary);
  color: var(--white);
  font-weight: bold;
  margin: 0 0.5rem 0.5rem 0.5rem;
  height: auto;
  padding: 0.6rem 1.2rem;
  border: none;
  text-decoration: none !important;
  transition: all 1s ease;
  cursor: pointer
}


/* Related Products */
.relatedProducts {
  flex: 1 1 300px;
}

.relatedProducts p {
  font-size: 1.5rem;
  color: #c20809;
  font-family: "Conthrax Sb";
  font-weight: 200;
}

#relatedProductsContainer {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  scroll-behavior: smooth;
}

#relatedProductsContainer .card {
  flex: 0 0 auto;
  width: 200px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#relatedProductsContainer .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 46, 46, 0.3);
}

#relatedProductsContainer .card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

#relatedProductsContainer .card-body {
  background-color: #111;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#relatedProductsContainer small {
  color: #ffffff;
  font-weight: 500;
}


.specificationChartMainDiv {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #333;
}

/* Heading styling */
.specificationChartMainDiv h5 {
  color: #333;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

/* Table styling */
.specificationChartMainDiv .table {
  width: 100%;
  background-color: #f9f9f9;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* Table cells */
.specificationChartMainDiv .table-bordered th,
.specificationChartMainDiv .table-bordered td {
  border: 1px solid #ddd;
  padding: 14px 20px;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
}

/* Header column styling */
.specificationChartMainDiv .table-bordered th {
  background-color: #f1f1f1;
  color: #555;
  font-weight: 600;
  width: 40%;
}

/* Value column */
.specificationChartMainDiv .table-bordered td {
  color: #444;
}

/* Responsive support */
@media (max-width: 600px) {
  .specificationChartMainDiv {
    padding: 1.5rem 1rem;
  }

  .specificationChartMainDiv .table-bordered th,
  .specificationChartMainDiv .table-bordered td {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}


/* Responsive layout */
@media (max-width: 768px) {

  .productContainerChildDiv {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .productContainerChildDiv>div {
    width: 100%;

  }

  .productInfoContainer {
    flex-direction: column;
    padding: 1rem;
  }

  .productInfo h2 {
    font-size: 1.5rem;
  }


  #relatedProductsContainer {
    justify-content: center;
  }

  #relatedProductsContainer .col-3 {
    flex: 0 0 45%;
  }
}

@media (max-width: 480px) {
  #relatedProductsContainer .col-3 {
    flex: 0 0 100%;
  }

  .zigzag-section {
    width: 100%;
  }

}


.about-us-team {
  margin-top: 4rem !important;
  background-color: #fafafa;
}

.about-team-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 1rem;

}

.about-team-card {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 10px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-5px);
}

.about-team-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(106, 3, 3, 0.1);
}

.about-team-name {
  color: #b60000;
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.about-team-role {
  color: #000;
  margin: 0.5rem 0;
  font-weight: 600;
  font-size: 1rem;
}

.about-team-description {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}


.dealer-banner {
  background: radial-gradient(circle at top left, #140902, #9b0202);
  gap: 20px !important;
  margin-top: -1rem;
}

.dealer-left-image {
  margin-left: -1.5rem;
}

.dealer-right-image {
  margin-right: -1.5rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px 0 rgba(31, 38, 135, 0.3);
}

.hover-underline {
  position: relative;
  display: inline-block;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: red;
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

.action-buttons {
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
}

.action-buttons a {
  background-color: black;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

.action-buttons a:hover {
  background-color: #b60000;
  color: white;
}

@media (max-width: 768px) {

  .custom-about-header {
    height: 30vh !important;
  }

  .custom-about-header {
    background-attachment: local;
  }

  .about-us-container {
    margin-top: -2rem;
  }

  .glass-card img {
    display: none;
  }

  .glass-card {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .dealer-banner {
    padding: 30px;
  }
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


.swiper {
  width: 100%;
  padding: 10% 5%;
  height: fit-content;

}

.swiper-slide {
  margin: 0 10px;
  max-height: fit-content;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease;
}

.swiper-slide:hover {
  transform: scale(1.2);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide h5 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  text-decoration: none;
}

.swiper-slide p {
  color: #555;
  font-size: 16px;
  margin: 5px 0;
}

.swiper-slide h6 {
  color: #999;
  font-size: 14px;
  margin: 5px 0;
}

.testimonial-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 20px 0;
  max-width: 100%;
}

.testimonial-item {
  min-width: 300px;
  max-width: 350px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.scroll-btn {
  background: transparent;
  color: #007bff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.scroll-container {
  white-space: nowrap;
  overflow: hidden;
  color: white;
  font-size: 1.2rem;
  position: relative;
}

.scroll-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

.scroll-container:hover .scroll-text {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.scroll-text span {
  margin-right: 50px;
  display: inline-block;
}
.topbar-container{
  max-width: 100% !important;
  overflow:  hidden !important;
  @media screen and (max-width:990px) {
   font-size: .8rem;
   font-weight: 400;
  }
}

.topbar-container .scroll-div,
.topbar-container .social-div{
  @media screen and (max-width:768px) {
   display: none; 
  }
}
@media screen and (max-width:768px) {
  .navbar-nav{
    text-align: start !important;
  }
  .navbar-nav a:nth-child(7),
  .navbar-nav a:last-child{
    width: 8rem !important;
    margin-left: 0 !important;
    text-align: center !important;
  }
}


.warranty-main-div {
  background: #ffffff;
  border-radius: 20px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  margin: auto;
  animation: warranty-fadeInUp 0.8s ease-out;
  transition: all 0.3s ease-in-out;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.warranty-main-div .warranty-header {
  background: radial-gradient(circle at top left, #140902, #9b0202);
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 20px;
  animation: warranty-slideDown 1s ease-out;
}

.warranty-main-div .warranty-header h2 {
  font-size: 1.8rem;
  color: white;
}

.warranty-main-div .warranty-details {
  padding: 20px 0;
  color: #333;
  line-height: 1.6;
}

.warranty-main-div .warranty-details p {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  animation: warranty-fadeIn 0.5s ease forwards;
}

.warranty-main-div .warranty-details p::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #b60000;
  font-weight: bold;
  font-size: 1rem;
}

.warranty-main-div .warranty-details-footer {
  background-color: #f5f7fa;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

.warranty-main-div .warranty-details-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.warranty-main-div .warranty-details-footer-tagline h2 {
  color: #555;
  font-size: 1rem;
  font-weight: normal;
}

@keyframes warranty-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes warranty-slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes warranty-fadeIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media screen and (max-width: 600px) {
  .warranty-main-div {
    padding: 15px;
  }

  .warranty-main-div .warranty-header h2 {
    font-size: 1.5rem;
  }

  .warranty-main-div .warranty-details p {
    font-size: 0.95rem;
  }

  .warranty-main-div .warranty-details-footer h3,
  .warranty-main-div .warranty-details-footer-tagline h2 {
    font-size: 0.9rem;
  }
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
  max-width: 90%;
  margin: auto;
  margin-bottom: 2rem;
}

#categorySelect,
#subCategorySelect {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  min-width: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l4 4 4-4' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  outline: none;
}

#categorySelect:focus,
#subCategorySelect:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

#categorySelect:hover,
#subCategorySelect:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 500px) {
  .filter-container {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
  }

  #categorySelect,
  #subCategorySelect {
    min-width: 100%;
    max-width: 300px;
  }
}

.warranty-container{
  overflow-x: scroll;
}


.table-card {
  background-color: var(--white);
  max-width: 1000px;
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
  background: linear-gradient(135deg, #1a1a1a, #390101);
  color: var(--white) !important;
}

.table thead {
  background-color: var(--dark-1);
  color: var(--white);
}

.table tbody tr:hover {
  background-color: var(--dark-3);
  color: var(--white);
}

.search-form input {
  border: 1px solid var(--dark-2);
}

.btn-primary {
  background-color: var(--primary);
  border: none;
}

.btn-primary:hover {
  background-color: var(--accent);
}

.alert-warning {
  background-color: var(--dark-3);
  color: var(--white);
  border: none;
}
.table th, .table td {
  vertical-align: middle;
}

.search-form {
  max-width: 600px;
  margin: 20px auto;
}