/* ========================================
   Kuwait Filters - Custom Styles
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
/* Variables */
:root {
  --primary-color: #ed282f;
  --secondary-color: #000000;
  --dark-color: #1a1a1a;
  --light-color: #eeeeee;
  --white: #ffffff;
  --gray: #cccccc;
  --transition: all 0.3s ease;
  width: 100%;
  overflow-x: hidden;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Merriweather", serif;
  line-height: 1.6;
  color: var(--secondary-color);
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  font-size: 0.875rem;
  background-color: #1a1a1a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.about-overview-row {
  padding: 80px 0;
}
.mission-vision-row {
  padding-bottom: 80px;
}
.top-bar-item-social a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid #ff7979;
  text-align: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background-color: #ed282f;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.top-bar-item i {
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links a {
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links a:hover {
  color: var(--primary-color) !important;
}

/* Navbar */
.navbar {
  transition: var(--transition);
  padding: 8px 0;
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.sticky {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.navbar-brand .logo {
  transition: var(--transition);
  max-width: 160px;
}

.primary-nav .navbar-nav {
  align-items: center;
  gap: 30px;
  margin-right: 2rem;
}
.mission-card-column .card,
.vision-card-column .card {
  border: 2px solid #eee !important;
  transition: 0.9s;
}
.mission-card-column .card:hover,
.vision-card-column .card:hover {
  border: 2px solid #ec1e26 !important;
  transition: 0.9s;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 600;
  padding: 0.5rem 0 !important;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
  display: none;
}

.navbar-cta {
  display: flex;
  align-items: center;
}

.btn-quote {
  background-color: var(--primary-color);
  color: var(--white) !important;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-quote:hover {
  background-color: #b01a1f;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Global Button Hover */
.btn:hover,
.btn:focus {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
  /* min-height: 100%; */
  /* height: 100%; */
}

.hero-slide {
  position: relative;
  /* min-height: 100vh; */
  height: auto;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-slide-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none !important;
}

.carousel-content {
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

.carousel-content h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

@media (max-width: 576px) {
  .carousel-content {
    padding: 1.5rem;
  }
}

/* Section Titles */
.section-title {
  color: var(--dark-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
}

/* About Preview Section */
.about-preview {
  background-color: var(--white);
}

/* Consistent section spacing on home page */
.about-preview,
.brands-section,
.why-choose-hero,
.popular-products,
.get-quote-section {
  padding: 80px 0;
}

.section-spacing {
  padding: 80px 0;
}

.quote-process {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
    url("../img/cta-image.jpg") center/cover no-repeat fixed;
  color: var(--white);
  overflow: hidden;
}

.quote-process::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(237, 40, 47, 0.25),
    rgba(0, 0, 0, 0.65)
  );
  pointer-events: none;
}

.quote-process .container {
  position: relative;
  z-index: 2;
}

.quote-process .card {
  background-color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991.98px) {
  .quote-process {
    background-attachment: scroll;
  }
}

.about-preview img {
  transition: var(--transition);
}

.about-preview img:hover {
  transform: scale(1.05);
}
.why-choose-hero {
  padding: 100px 0;
}
.why-choose-image {
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  min-height: 420px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0rem;
  background: #eee;
  border:1px solid #eee;
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.why-choose-container {
  background-color: #000000;
  border-radius: 28px;
}

.why-choose-card {
  padding: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose-card::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
}

.why-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.why-card-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-choose-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ec1e26;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.why-choose-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ec1e26;
}

.why-choose-title {
  color: var(--white);
  font-size: 2.7rem;
  line-height: 1.2;
  margin: 1rem 0;
}

.why-choose-text {
  margin-bottom: 1.5rem;
}

.why-choose-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.btn-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.why-choose-btn-link {
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.why-feature-tile {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #f7c948;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.tile-icon {
  color: #ec1e26;
  font-size: 32px;
}

.why-feature-tile h5 {
  color: #ec1e26;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.why-feature-tile p {
  color: #000;
  font-size: 0.9rem;
}

.why-benefits {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
}

.why-benefit i {
  color: #f7c948;
}

@media (max-width: 991px) {
  .why-choose-card {
    padding: 0rem;
  }

/*  .why-choose-image {
    min-height: 320px;
  }
*/
  .why-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .why-benefits {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Products Slider */
.why-choose-products-slider {
  margin-top: 2rem;
}

.why-choose-product-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-choose-product-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(237, 40, 47, 0.5);
}

.why-choose-product-image {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}


.why-choose-product-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-product-title {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

#whyChooseProductCarousel .carousel-inner {
  padding: 0;
}

#whyChooseProductCarousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

@media (max-width: 991px) {
  .why-choose-product-title {
    font-size: 0.85rem;
  }
  

  .why-choose-product-content {
    padding: 0.75rem;
  }
}

@media (max-width: 767px) {
  .why-choose-products-slider .row .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .why-choose-products-slider .row .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .why-choose-product-title {
    font-size: 0.75rem;
  }
}

/* Brands Section */
.brands-section {
  background-color: var(--light-color);
}

.brand-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 2px solid transparent;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.brand-card-inner {
  overflow: hidden;
  border-radius: 5px;
  transition: var(--transition);
}

.brand-card:hover .brand-card-inner img {
  transform: scale(1);
}

.brand-card-inner img {
  transition: var(--transition);
  width: 100%;
  height: auto;
}

/* Brands Showcase (Brands Page) */
.brand-card-large {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.brand-card-large:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.brand-card-large .brand-card-inner {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-color);
  padding: 2rem;
}

.brand-card-large:hover .brand-card-inner img {
  transform: scale(1.1);
}

.brand-card-content {
  background: var(--white);
}

.brand-card-content h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Popular Products Section */
.popular-products {
  background-color: var(--white);
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.product-image {
  position: relative;
  overflow: hidden;
  background-color: var(--light-color);
}
.product-category {
  margin-top: 65px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(217, 32, 39, 0.8), rgba(217, 32, 39, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  color: var(--dark-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.product-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.product-card .btn-primary {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.product-overlay .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Get Quote Section */
.get-quote-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/cta-image.jpg") center/cover no-repeat fixed;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.45),
    rgba(237, 40, 47, 0.25)
  );
  opacity: 0.9;
}

.get-quote-section .container {
  position: relative;
  z-index: 2;
}

.get-quote-content h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.get-quote-content .btn {
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
  .get-quote-section {
    background-attachment: scroll;
  }
}

/* Page Header */
.page-header {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header p {
  color: var(--white);
}

.about-page-header,
.products-page-header,
.brands-page-header,
.contact-page-header {
  background-image: url("../img/breadcumbs.jpg");
}

.eyebrow-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
}

.brand-grid-section {
  padding: 90px 0 60px;
}

.brand-card-modern {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brand-card-modern .brand-media {
  position: relative;
}

.brand-card-modern img {
  width: auto;
  margin: auto;
  text-align: center;
  display: block;
  height: 220px;
  object-fit: cover;
}
.brand-card-modern a{text-decoration: none;}
.brand-info {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #000;
  text-decoration: none;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.soft-badge {
  background: rgba(217, 32, 39, 0.08);
  color: var(--primary-color);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .brand-card-modern img {
    height: 200px;
  }
}

/* Override Bootstrap primary color */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: #000 !important;
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
}

.contact-info .contact-icon {
  min-width: 40px;
}

.contact-info h5 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}
.offcanvas-body .btn-quote:hover {
  color: #000 !important;
  background-color: #fff !important;
}

.form-control {
  border: 2px solid var(--gray);
  border-radius: 5px;
  padding: 0.65rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(217, 32, 39, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #ec1e26;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 32, 39, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Offcanvas Navigation */
.offcanvas-toggle {
  border: none;
  padding: 0.5rem;
}

.offcanvas-toggle:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: var(--transition);
}

.site-offcanvas {
  background-color: #0d0d0d;
  color: var(--white);
  padding: 2rem 1.5rem;
}

.offcanvas-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--primary-color);
}

.mobile-nav .nav-link {
  color: var(--white) !important;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.offcanvas-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offcanvas-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.offcanvas-contact-item a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.offcanvas-contact-item i {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color) !important;
  padding-top: 70px;
}

.footer a {
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--white) !important;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
  /* -webkit-text-stroke: 0.6px #d92027; */
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 900;
}
.footer-bottom {
  padding-bottom: 20px;
}
.footer-bottom a {
  color: #fff;
}
.footer-bottom p {
  font-size: 14px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.whatsapp-float i {
  line-height: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  left: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(217, 32, 39, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.scroll-to-top:hover {
  background-color: #b01a1f;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(217, 32, 39, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Fade-up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Animate fade-in on carousel content */
.animate-fade-in {
  animation: fadeInUp 1s ease;
}
.offcanvas-header .btn-close {
  --bs-btn-close-opacity: 1;
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
.top-bar-item span {margin-right: 4px}
.product-title {padding: 12px}
.activee{ color:red !important; }

/* Responsive Design */
@media (max-width: 768px) {
  /* .top-bar {
    display: none;
  } */
   .top-bar-item-social {display: none;}
   .top-bar-item {text-align: center;}
   .top-bar-info {justify-content: left;}
   .top-bar-item span {min-width: 100px; text-align: left;}
   .why-card-inner {gap:0}
   .why-choose-title {
    color: var(--white);
    font-size: 24px;
    line-height: 1.5;}
    .product-title {padding: 12px}
    .get-quote-content h2 {font-size: 24px}

  .carousel-content h1 {
    font-size: 2rem;
  }
  .why-choose-image {
    border-radius: 24px 24px 0 0;
    min-height: auto;
  }
  

  .carousel-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .top-bar {
    font-size: 0.8rem;
  }

  .top-bar-item {
    font-size: 0.8rem;
  }

  .social-links {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .navbar-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .btn-quote {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 80px;
    right: 20px;
  }

  .get-quote-section {
    background-attachment: scroll;
    min-height: 300px;
  }

  .brand-card {
    height: 150px;
    padding: 1rem;
  }


  .product-title {
    font-size: 1.1rem;
  }

  .product-description {
    font-size: 0.85rem;
  }

  .page-header {
    padding: 53px 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-content h1 {
    font-size: 1.5rem;
  }

  .carousel-content p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .product-title {
    font-size: 1rem;
  }

  .product-description {
    font-size: 0.8rem;
  }

  .product-card {
    margin-bottom: 1.5rem;
  }

  .product-card .btn-primary {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Additional Utilities */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Map Section */
.map-section {
  background-color: var(--light-color);
}

.map-section .bg-secondary {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Locations Section */
.locations-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 !important;
}

.locations-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #b01a1f);
}

/* Section Top Border - Reusable gradient border for all sections */
.section-top-border {
  position: relative;
  overflow: hidden;
}

.section-top-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #b01a1f);
  z-index: 1;
}

.location-card {
  background: var(--white);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(237, 40, 47, 0.1);
  display: flex;
  flex-direction: column;
}

.location-map-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: var(--light-color);
}

.location-map-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px 20px 0 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(237, 40, 47, 0.1);
}

.location-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  transition: var(--transition);
}

.location-card:hover .location-map {
  transform: scale(1.02);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #b01a1f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(237, 40, 47, 0.3);
}

.location-header {
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(237, 40, 47, 0.1);
}

.location-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(237, 40, 47, 0.1),
    rgba(237, 40, 47, 0.05)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.location-card:hover .location-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-color), #b01a1f);
  transform: scale(1.1);
}

.location-card:hover .location-icon-wrapper i {
  color: var(--white) !important;
}

.location-header h3 {
  color: var(--dark-color);
  font-size: 24px;
  letter-spacing: 0.5px;
}

.location-details {
  margin-top: 1.5rem;
}

.location-item {
  transition: var(--transition);
}

.location-item:hover {
  transform: translateX(5px);
}

.location-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(237, 40, 47, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.location-item:hover .location-item-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.location-item:hover .location-item-icon i {
  color: var(--white) !important;
}

.location-item h6 {
  color: var(--dark-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.location-item p {
  line-height: 1.8;
  font-size: 0.95rem;
}

.location-item a {
  transition: var(--transition);
}

.location-item a:hover {
  color: var(--primary-color) !important;
}

/* Map Placeholder Enhancement */
.map-placeholder .bg-primary,
.map-placeholder .bg-success {
  border-radius: 15px;
  transition: var(--transition);
  cursor: pointer;
}

.map-placeholder .bg-primary:hover,
.map-placeholder .bg-success:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-placeholder .bg-primary i,
.map-placeholder .bg-success i {
  transition: var(--transition);
}

.map-placeholder .bg-primary:hover i,
.map-placeholder .bg-success:hover i {
  transform: scale(1.2);
}

/* Responsive Location Cards */
@media (max-width: 991px) {
  .location-card {
    margin-bottom: 2rem;
  }

  .location-header h3 {
    font-size: 1.5rem;
  }

  .location-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .location-map-wrapper {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .locations-section {
    padding: 3rem 0 !important;
  }

  .location-header h3 {
    font-size: 1.35rem;
  }

  .location-item h6 {
    font-size: 0.95rem;
  }

  .location-item p {
    font-size: 0.9rem;
  }

  .location-map-wrapper {
    height: 200px;
  }

  .card-body {
    padding: 1.5rem !important;
  }
}

/* Brand Products Page Styles */
.brand-products-section {
  background-color: var(--white);
}

.category-filter-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.category-filter-box h3 {
  color: var(--dark-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  border-radius: 8px;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.category-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 40, 47, 0.3);
}

.category-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.category-btn.active:hover {
  background-color: #b01a1f;
  border-color: #b01a1f;
}

.product-item {
  transition: var(--transition);
}

.product-item.hidden {
  display: none;
}

@media (max-width: 768px) {
  .category-filter-box {
    padding: 1.5rem;
  }

  .category-filter-box h3 {
    font-size: 1.5rem;
  }

  .category-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}