@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* ==========================================================================
   Design Tokens (CSS Custom Properties)
   ========================================================================== */
:root {
  /* Typography */
  --primary-font: "Outfit", sans-serif;
  --secondary-font: "Outfit", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 30px;
  --font-size-3xl: 36px;
  --font-size-4xl: 48px;
  --line-height-base: 1.5;
  --line-height-tight: 1.25;

  /* Colors */
  --color-primary: #ec2829;
  --color-primary-dark: #ec2829;
  --color-primary-light: #f4efea;
  --color-secondary: #ec2829;
  --color-secondary-dark: #ec2829;
  --color-background: #ffffff;
  --color-text: #010101;
  --color-gray: #c0c0c0;
  --color-text-gray: #757575;
  --color-border: #e5e7eb;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Transitions */
  --transition-base: all 0.3s ease-in-out;
  --transition-fast: all 0.2s ease-in-out;
  --transition-speed: 0.4s;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;
}

/* ==========================================================================
   Browser Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* Matches typical navbar height */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: var(--primary-font);
  background-color: var(--color-background);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: var(--line-height-tight);
}

p {
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: var(--line-height-base);
  margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Common Components
   ========================================================================== */
.section {
  position: relative;
  padding: var(--spacing-3xl) 0;
}


.section__padding {
  padding: 60px 0;
}

.no__pt {
  padding-top: 0 !important;
}

.no__pb {
  padding-bottom: 0 !important;
}

.section--no-pt {
  padding-top: 0;
}

.section--no-pb {
  padding-bottom: 0;
}

.heading-section {
  margin-bottom: var(--spacing-xl);
}

.heading-section__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-family: var(--primary-font);
}

.heading-section__description {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--primary-font);
  color: #0e0e0e80;
  max-width: 48rem;
}

.common__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--color-primary);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-full);
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.common__btn :hover,
.common__btn :focus {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
  .section {
    padding: var(--spacing-2xl) 0;
  }

  .heading-section__title {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 576px) {
  .heading-section__title {
    font-size: var(--font-size-xl);
  }

  .heading-section__description {
    font-size: var(--font-size-sm);
  }
}

/* ==========================================================================
   Navbar Section Start
   ========================================================================== */
.main_navbar {
  background-color: var(--color-background);
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1000;
}

.main_navbar .navbar-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.main_navbar .navbar-brand img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.main_navbar .navbar-brand:hover img {
  transform: scale(1.05);
}

/* Desktop Navigation */
.main_navbar .navbar-nav {
  display: flex;
  align-items: center;
}

.main_navbar .nav-item {
  position: relative;
}

.main_navbar .nav-link {
  color: var(--color-text);
  font-size: 16px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  margin-right: 12px;
  position: relative;
  font-weight: 400;
}

.main_navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.main_navbar .nav-link:hover::after,
.main_navbar .nav-link.active::after {
  width: calc(100% - 30px);
}

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

/* Brochure Button */
.btn-enquire {
  background-color: var(--color-primary);
  color: var(--color-primary-light);
  border-radius: 6px;
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  /* margin-left: 15px; */
}

.btn-enquire:hover {
  background-color: var(--color-text);
  color: var(--color-background);
  border-color: var(--color-background);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Toggle Button */
.custom-toggler {
  border: none;
  background: none;
  font-size: 24px;
  color: var(--color-text);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.custom-toggler:hover {
  color: var(--color-primary);
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* Overlay for mobile menu */
.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Offcanvas Menu */
.mobile-offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background-color: var(--color-background);
  z-index: 1050;
  padding: 25px;
  transition: all var(--transition-speed) cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-offcanvas.active {
  left: 0;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.offcanvas-header img {
  height: 45px;
  width: auto;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
}

.close-btn:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

/* Offcanvas Navigation */
.offcanvas-nav {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  flex-grow: 1;
}

.offcanvas-nav li {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.mobile-offcanvas.active .offcanvas-nav li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for nav items */
.mobile-offcanvas.active .offcanvas-nav li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-offcanvas.active .offcanvas-nav li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-offcanvas.active .offcanvas-nav li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-offcanvas.active .offcanvas-nav li:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-offcanvas.active .offcanvas-nav li:nth-child(5) {
  transition-delay: 0.3s;
}

.offcanvas-nav .nav-link {
  display: block;
  font-size: 18px;
  color: var(--color-text);
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
  color: var(--color-primary);
  background-color: rgba(211, 47, 47, 0.1);
  padding-left: 20px;
}

/* Mobile Brochure Button */
.mobile-offcanvas .btn-enquire {
  margin: 20px auto 0;
  width: 100%;
  max-width: 200px;
  text-align: center;
}

/* Sticky Header Styles */
.main_navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-background) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
  border-bottom: none !important;
}

/* Mobile menu adjustments when sticky */
.main_navbar.sticky .mobile-offcanvas {
  top: 70px;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* For when sticky is being removed (optional) */
.main_navbar:not(.sticky) {
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
  .custom-toggler,
  .mobile-offcanvas,
  .offcanvas-overlay {
    display: none;
  }
}

@media (max-width: 991px) {
  .main_navbar .navbar-collapse {
    display: none;
  }

  .btn-enquire {
    margin: 25px auto 0;
    display: block;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .mobile-offcanvas {
    width: 85%;
  }
  .main_navbar .navbar-brand img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
  }

  .mobile-offcanvas .btn-enquire {
    max-width: 100%;
  }
}
/* ==========================================================================
   Navbar Section END
   ========================================================================== */

/* ==========================================================================
   Contact us Section Start
   ========================================================================== */
.contact-section {
  position: relative;
  z-index: 999;
}

.custom-select-wrapper {
  position: relative;
  display: block;
}

.custom-select-wrapper::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--color-text);
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 14px;
  z-index: 2;
}

.custom-select-wrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-text);
}

.custom-select-wrapper:hover::after {
  color: var(--color-text);
}

.contact-section .form-control option {
  padding: 10px;
  background: #ffffff;
  color: #2c2c2c;
  border: none;
}

.contact-section .form-control option:hover {
  background: rgba(196, 150, 96, 0.1);
}

.contact-section .form-control option:disabled {
  color: #999;
  background: #f8f9fa;
}

.contact-section .form-control:disabled {
  background-color: #f8f9fa;
  opacity: 0.6;
  cursor: not-allowed;
}

.custom-select-wrapper.disabled::after {
  color: #999;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.get-in-touch-badge {
  display: inline-block;
  background: #ec2829;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(212, 165, 116, 0.3);
  margin-bottom: 20px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.contact-section .form-group {
  margin-bottom: 20px;
}

.contact-section .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  height: auto;
}

#enquiryModal input::placeholder {
  font-size: 13px;
}

.modal-body {
  padding: 0;
  overflow: hidden;
  border-radius: 15px;
  overflow-y: auto;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

.modal-body .contact-card {
  border-radius: 0px;
  padding: 30px;
}

.modal-header {
  background: var(--color-background) !important;
  color: var(--color-text);
}

.modal-header .btn-close {
  color: var(--color-text);
}

.contact-section .form-control:focus {
  border-color: var(--color-text);
  box-shadow: 0 0 0 0.2rem rgba(196, 150, 96, 0.1);
}

.contact-section .form-control.error {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.contact-section .form-control.success {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.05);
}

.error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background: #ec2829;
  border: none;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  display: none;
  animation: slideIn 0.5s ease;
}

.success-message.show {
  display: block;
}

.character-count {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: 5px;
}

.character-count.error {
  color: #dc3545;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.select-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  overflow: hidden;
}

.placeholder-text {
  color: #6c757d;
  font-size: 13px;
}

.selected-items-display {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 100%;
  overflow: hidden;
}

.selected-item-tag {
  background: #c49660;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
}

.selected-count-text {
  color: #2c2c2c;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: #2c2c2c;
  font-size: 14px;
  flex-shrink: 0;
}

.dropdown-arrow.rotated {
  transform: rotate(180deg);
}

.dropdown-actions {
  padding: 10px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  gap: 10px;
  background: #f8f9fa;
}

.btn-select-all,
.btn-clear-all {
  flex: 1;
  padding: 6px 12px;
  border: 1px solid #c49660;
  background: transparent;
  color: #c49660;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-select-all:hover,
.btn-clear-all:hover {
  background: #c49660;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .modal-body .contact-section {
    padding: 0;
  }

  .custom-select-wrapper::after {
    right: 12px;
    font-size: 14px;
  }

  .contact-card {
    padding: 40px 30px;
    margin: 30px auto;
  }

  .modal-body .contact-card {
    margin: 0;
  }

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

  .selected-item-tag {
    max-width: 60px;
    font-size: 10px;
  }

  .select-content {
    gap: 4px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }

  .modal-body .contact-section {
    padding: 0;
  }

  .contact-card {
    padding: 30px 20px;
    margin: 20px auto;
  }

  .modal-body .contact-card {
    margin: 0;
  }

  .contact-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  .get-in-touch-badge {
    font-size: 13px;
  }

  .selected-item-tag {
    max-width: 50px;
    font-size: 9px;
    padding: 1px 6px;
  }
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-control:focus,
.product-select-header:focus {
  outline: 2px solid #c49660;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ==========================================================================
      Contact us Section End
   ========================================================================== */

/* ==========================================================================
   Footer Section Start
   ========================================================================== */
.doorstepfix-footer {
  background: #000000;
  color: #ddd;
  padding: 60px 20px 20px;
}

.doorstepfix-footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--primary-font);
  font-size: 18px;
}
.doorstepfix-footer a {
  color: #ffffff80;
  text-decoration: none;
  font-size: 14px;
}
.doorstepfix-footer p {
  color: #ffffff80;
  font-size: 14px;
}
.doorstepfix-footer a:hover {
  color: #fff;
}
.doorstepfix-footer .doorstepfix-logo {
  max-width: 200px;
}
.doorstepfix-footer .doorstepfix-social-icons a {
  font-size: 20px;
  color: var(--color-background);
  display: inline-block;
  transition: color 0.3s;
  border-radius: 10px;
  margin-right: 16px;
}
.doorstepfix-footer .doorstepfix-social-icons a:hover {
  color: #fff;
}
.doorstepfix-footer .doorstepfix-bottom-bar {
  border-top: 1px solid #ffffffcc;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

.doorstepfix-footer .doorstepfix-bottom-bar p {
  color: #fff;
}
.doorstepfix-footer .doorstepfix-bottom-bar p a {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .doorstepfix__home-footer-pad {
    padding-top: 60px;
  }
}
/* ==========================================================================
   Footer Section End
   ========================================================================== */

/* ==========================================================================
   Contact Us Page Contact Section Start
   ========================================================================== */

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 450;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.doorstepfix-contact-info-section {
  padding: 0 40px;
}

.doorstepfix-contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.doorstepfix-contact-info-icon {
  background-color: #f8f9fa;
  color: var(--color-text);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.doorstepfix-contact-info-content h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.doorstepfix-contact-info-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .doorstepfix-contact-info-item {
    margin-bottom: 20px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .doorstepfix-contact-info-section {
    padding: 0 5px;
  }
  .doorstepfix-contact-info-item {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .doorstepfix-contact-info-item {
    margin-top: 25px;
  }
}

/* ==========================================================================
   Contact Us Page Contact Section End
   ========================================================================== */

/* ==========================================================================
 Whatsapp Flotoing Button  Section Start
   ========================================================================== */

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.floating__btn {
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* WhatsApp Button */
.whatsapp-button {
  background-color: #25d366;

  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Call Button */
.call-button {
  font-size: 23px;
  background-color: #287cd6;
  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Background Circle for WhatsApp */
.whatsapp-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Background Circle for Call */
.call-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 123, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Hover Effects */
.whatsapp-button:hover,
.call-button:hover {
  transform: scale(1.1);
}

/* WhatsApp Pulse Animation */
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Background Pulse Animation */
@keyframes backgroundPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 568px) {
  .floating__btn {
    width: 50px;
    height: 50px;
  }
}

/* Scroll to top btn */

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 4px 12px rgba(211, 47, 47, 0.4),
    0 0 10px rgba(255, 59, 59, 0.2);
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: linear-gradient(135deg, var(--color-primary), #b71c1c);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 6px 16px rgba(211, 47, 47, 0.5),
    0 0 15px rgba(255, 59, 59, 0.3);
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 3.5;
}

.progress-circle-fill {
  fill: none;
  stroke: white;
  stroke-width: 3.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.2s ease;
}

.scroll-icon {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
}

@media (max-width: 568px) {
  .scroll-to-top {
    display: none;
  }
}
/* ==========================================================================
 Whatsapp Flotoing Button  Section END
   ========================================================================== */

/* ==========================================================================
     HERO SECTION START
   ========================================================================== */

/* HERO SECTION */
.ds-hero {
  position: relative;
  min-height: 80vh;
  background: url("/assets/images/hero-bg.avif") center center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.battery-hero {
  background: url("/assets/images/battery-landing/battery-landing-bg.avif")
    center center / cover no-repeat;
}
.charging-hero {
  background: url("/assets/images/charging-landing/charging-hero-md.avif")
    center center / cover no-repeat;
}

.backpanel-hero {
  background: url("/assets/images/back-panel-landing/back-panel-hero-md.avif")
    center center / cover no-repeat;
}

/* Dark overlay */
.ds-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 50%;
}
/* Highlight container */
.ds-hero-content h1 .highlight {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  z-index: 1;
}

/* Animated curved underline */
.ds-hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 110%;
  height: 14px;
  background: transparent;
  border-bottom: 4px solid #e63946; /* professional red */
  border-radius: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: underlineDraw 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

/* Smooth draw animation */
@keyframes underlineDraw {
  0% {
    transform: translateX(-50%) scaleX(0);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
}
/* Content */
.ds-hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.ds-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.ds-hero-content p {
  margin-top: 16px;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

.ds-hero-note {
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* Button */
.ds-hero-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  background-color: #ec2829;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.ds-hero-btn:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ds-hero-content h1 {
    font-size: 2rem;
  }

  .ds-hero {
    text-align: left;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 576px) {
  .ds-hero {
    min-height: 65vh;
    background: url("/assets/images/hero-bg-sm.avif") right center / cover
      no-repeat;

    padding-top: 40px;
    padding-bottom: 40px;
  }

  .battery-hero {
    background: url("/assets/images/battery-landing/battery-landing-bg-sm.avif")
      center center / cover no-repeat;
  }

  .charging-hero {
    background: url("/assets/images/charging-landing/charging-hero-sm.avif")
      center center / cover no-repeat;
  }

  .backpanel-hero {
    background: url("/assets/images/back-panel-landing/back-panel-hero-sm.avif")
      center center / cover no-repeat;
  }
  .ds-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 80%;
  }
}

/* ==========================================================================
 HERO SECTION END
   ========================================================================== */

/* ==========================================================================
 Service Section Start 
   ========================================================================== */
/* SECTION */
.ds-service-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Header */
.ds-section-header {
  max-width: 760px;
}

.ds-section-tag {
  display: inline-block;
  font-size: 18px !important;
  font-weight: 600;
  color: #ec2829;
  margin-bottom: 8px;
}

.ds-section-header h2 {
  font-size: 45px;
  font-weight: 700;
  color: #0f0d0d;
  margin-bottom: 12px;
}

.ds-section-header p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}

/* Card */
.ds-service-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ds-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.ds-service-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  padding: 20px;
  border-radius: 35px;
  overflow: hidden;
}

.ds-service-card video {
  width: 100%;
  height: 330px;
  object-fit: cover;
  padding: 20px;
  border-radius: 35px;
  display: block;
}

@media (max-width: 991px) {
  .ds-service-card video {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .ds-service-card video {
    height: 200px;
    padding: 12px;
    border-radius: 20px;
  }
}

/* Card Body */
.ds-card-body {
  padding: 20px;
}

.ds-card-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.ds-card-body p {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Button */
.ds-contact-btn {
  background-color: #ec2829;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.ds-contact-btn:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ds-section-header h2 {
    font-size: 26px;
  }

  .ds-service-card img {
    height: auto;
  }

  .ds-section-header {
    text-align: center;
  }
}

/* ==========================================================================
 Service Section End 
   ========================================================================== */

/* ==========================================================
   How It Works
   ========================================================== */

.ds-process-section {
  padding: 90px 0 120px;
  background: #ffffff;
  padding-bottom: 0px !important;
}

/* Header */
.ds-process-header {
  max-width: 560px;
}

.ds-section-tag {
  font-size: 13px;
  font-weight: 600;
  color: #ec2829;
  margin-bottom: 6px;
  display: inline-block;
}

.ds-process-header h2 {
  font-size: 37px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 14px;
}

.ds-process-header p {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Process Area */
.ds-process-area {
  position: relative;
  margin-top: 100px;
  padding-bottom: 140px;
}

/* Curve */
.ds-process-curve {
  position: absolute;
  bottom: 160px;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}

/* Steps */
.ds-process-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Step */
.ds-step {
  max-width: 240px;
}

.ds-step h6 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 12px;
  margin-bottom: 6px;
}

.ds-step p {
  margin-top: 6px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
}

/* Icon */
.ds-step-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds-step-icon img {
  width: 45px;
  height: 45px;
}

/* Exact vertical alignment (matches original curve) */
.step-1 {
  margin-top: 100px;
  margin-left: 30px;
}
.step-2 {
  margin-top: -15px;
  margin-left: 80px;
}
.step-3 {
  margin-top: 0px;
  margin-left: 100px;
}
.step-4 {
  margin-top: -195px;
  margin-left: 35px;
}

@media (max-width: 2560px) {
  .step-1 {
    margin-top: 100px;
    margin-left: 40px;
  }
  .step-2 {
    margin-top: -45px;
    margin-left: 100px;
  }
  .step-3 {
    margin-top: -30px;
    margin-left: 125px;
  }
  .step-4 {
    margin-top: -245px;
    margin-left: 35px;
  }
}

@media (max-width: 1200px) {
  .step-1 {
    margin-top: 100px;
    margin-left: 25px;
  }
  .step-2 {
    margin-top: 2px;
    margin-left: 80px;
  }
  .step-3 {
    margin-top: 12px;
    margin-left: 98px;
  }
  .step-4 {
    margin-top: -180px;
    margin-left: 35px;
  }
}

@media (max-width: 1024px) {
  /* Curve */
  .ds-process-curve {
    position: absolute;
    bottom: 195px;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
  }
  .step-1 {
    margin-top: 100px;
    margin-left: 15px;
  }
  .step-2 {
    margin-top: 5px;
    margin-left: 70px;
  }
  .step-3 {
    margin-top: 20px;
    margin-left: 80px;
  }
  .step-4 {
    margin-top: -150px;
    margin-left: 35px;
  }
}

@media (max-width: 991px) {
  .ds-process-curve {
    display: none;
  }
  .ds-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ds-process-area {
    padding-bottom: 0;
    margin-top: 50px;
  }

  .step-1 {
    margin-top: 0;
    margin-left: 0;
  }
  .step-2 {
    margin-left: 0;
  }
  .step-3 {
    margin-left: 0;
  }
  .step-4 {
    margin-left: 0;
  }

  .ds-step {
    max-width: 100%;
    margin-top: 0 !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .ds-process-header {
    text-align: center;
  }

  .ds-process-header h2 {
    font-size: 32px;
  }

  .ds-process-header p {
    font-size: 14px;
  }

  .ds-process-curve {
    display: none;
  }

  .ds-process-section {
    padding: 40px 0;
  }

  .ds-process-section {
    padding-bottom: 50px !important;
  }

  .ds-process-area {
    padding-bottom: 0;
    margin-top: 50px;
  }

  .ds-process-steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
  }

  .step-1 {
    margin-top: 0;
    margin-left: 0;
  }
  .step-2 {
    margin-left: 0;
  }
  .step-3 {
    margin-left: 0;
  }
  .step-4 {
    margin-left: 0;
  }

  .ds-step {
    max-width: 100%;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #0000001a;
    padding: 10px;
    border-radius: 10px;
  }
  .ds-step p {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
  }

  .ds-step .ds-step-icon {
    border: 1px solid #0000001a;
    background-color: #f3f3f3;
    padding: 8px;
    border-radius: 10px;
  }
  .ds-step-icon img {
    width: 45px;
    height: auto;
  }
}

/* ==========================================================================
 How it Works Section End 
   ========================================================================== */

/* =====================================================
   Why Choose Us
   ===================================================== */

.why-choose-us {
  padding: 60px 0;
  padding-top: 0;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Header */
.wc-header {
  max-width: 640px;
  margin: 0 auto;
}

.wc-tag {
  font-size: 13px;
  font-weight: 600;
  color: #ec2829;
  display: inline-block;
  margin-bottom: 6px;
}

.wc-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

/* Feature Item */
.wc-feature {
  background: #f9fafb;
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.wc-feature p {
  max-width: 250px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0;
}

/* Icon */
.wc-icon {
  width: 48px;
  height: 48px;
  background-color: #ec2829;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wc-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Center Image */
.wc-center-image img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 991px) {
  .wc-header h2 {
    font-size: 30px;
  }

  .why-choose-us {
    padding-top: 70px;
  }

  /* Center Image */
  .wc-center-image img {
    max-width: 350px;
    margin: 0 auto;
  }

  .wc-feature {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
 Why choose Us Section End 
   ========================================================================== */

/* =====================================================
   Parts & Warranty Section Start
   ===================================================== */

.ds-warranty-section {
  padding: 90px 0;
  background-color: #ffffff;
  overflow: hidden;
}

/* Tag */
.ds-section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #ec2829;
  margin-bottom: 8px;
}

/* Title */
.ds-warranty-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f0d0d;
  line-height: 1.3;
  margin-bottom: 16px;
}

/* Text */
.ds-warranty-text {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ds-warranty-note {
  font-size: 14px;
  color: #2c2c2c;
  margin-bottom: 24px;
}

/* Button */
.ds-primary-btn {
  display: inline-block;
  background-color: #ec2829;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.ds-primary-btn:hover {
  background-color: #dc2626;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Image */
.ds-warranty-image img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 991px) {
  .ds-warranty-title {
    font-size: 28px;
  }

  .ds-warranty-section {
    padding: 70px 0;
  }
}

/* =====================================================
   Parts & Warranty Section End
   ===================================================== */

/* =====================================================
   Brands Section Start
   ===================================================== */

.ds-brands-section {
  padding: 90px 0;
  padding-top: 40px;
  background-color: #ffffff;
}

/* Header */
.ds-brands-header {
  max-width: 600px;
  margin: 0 auto;
}

.ds-section-tag {
  font-size: 13px;
  font-weight: 600;
  color: #ec2829;
  display: inline-block;
  margin-bottom: 6px;
}

.ds-brands-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f0d0d;
}

/* Brand Card */
.ds-brand-card {
  height: 120px;
  width: 100%;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: auto;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ds-brand-card img {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

/* Hover Effect */
.ds-brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.ds-brand-card:hover img {
  opacity: 1;
}

@media (max-width: 1024px) {
  .ds-brand-card {
    height: 100x;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .ds-brand-card {
    height: 75px;
  }

  .ds-brands-header h2 {
    font-size: 26px;
  }

  .ds-brand-card img {
    height: auto;
  }
}

/* =====================================================
   Brands Section End
   ===================================================== */

/* ============================== FAQ section ================================ */
/* Section */
.faq-section {
  background-color: #ffffff;
}

/* Header */
.faq-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #e53935;
  margin-bottom: 6px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

/* Button */
.faq-btn {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 600;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  padding: 16px 18px;
  background-color: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding: 0 18px 18px;
}

/* Remove default Bootstrap arrow background */
.accordion-button::after {
  background-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

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

/* =====================================================
   Service Area Section Start
   ===================================================== */

.ds-service-area {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

/* Card */
.ds-service-area-card {
  position: relative;
  background-image: url("/assets/images/service-area-bg.avif");
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  padding: 60px 20px;
  overflow: hidden;
}

/* Overlay */
.ds-service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content */
.ds-service-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  color: #ffffff;
}

.ds-service-tag {
  font-size: 16px;
  font-weight: 600;
  color: #ec2829;
  display: inline-block;
  margin-bottom: 8px;
}

.ds-service-content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ds-service-content p {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Button */
.ds-primary-btn {
  background-color: #ec2829;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.ds-primary-btn:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
  .ds-service-area-card {
    padding: 40px 16px;
  }

  .ds-service-content h2 {
    font-size: 24px;
  }

  .ds-service-content p {
    font-size: 13px;
  }
}

/* =====================================================
   Service Area End
   ===================================================== */



   
   /*=========================================== Brand Choose Section================================================ */

.brand__section {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
  margin-top: 15px;
}

.repair__brand__section {
  margin-top: 70px;
}

.brand__card {
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: auto;
}
.brand__card img {
  height: 80px;
  max-width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (max-width: 1024px) {
  .brand__card {
    height: 100x;
  }
}
.brand__card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .brand__card {
    height: 95px;
  }
  .brand__card img {
    height: auto;
  }
  .repair__brand__section {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .brand__card {
    height: 75px;
  }
}
