:root {
    --primary-color: maroon;
    --secondary-color: #fff;
    --black-color: #0000006b;
}


/* ===== BREADCRUMB BANNER ===== */
.breadcrumb-banner {
    position: relative;
    background: url("../all-images/carousel-img/4.png") center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
}

.breadcrumb-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.63);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.breadcrumb-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.breadcrumb-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-content .breadcrumb-item a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-content .breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb-banner {
        height: 280px;
        text-align: center;
    }

    .breadcrumb-content {
        padding-left: 0;
        width: 100%;
    }

    .breadcrumb-content h1 {
        font-size: 2rem;
    }

    .breadcrumb-content .breadcrumb {
        justify-content: center;
    }
}

/* Section Styling */
.brands-section {
    position: relative;
}

.brands-section h2 {
    letter-spacing: 1px;
}

.brands-arrows button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 2px;
    transition: all 0.3s ease;
}

.brands-arrows button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Brand Item */
.brands-slider .brand-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    margin: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.brands-slider .brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 7, 14, 0.1);
}

.brands-slider .brand-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brands-slider .brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .brands-arrows {
        justify-content: center;
        width: 100%;
    }

    .brands-section h2 {
        text-align: center;
        width: 100%;
    }
}

.products-section {
    background: url("../all-images/carousel-img/4.png") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.products-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), #ff4d4d);
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(229, 7, 14, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.product-img {
    flex: 0 0 300px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-height: 100%;
    width: auto;
    filter: brightness(0.9);
}

.product-content {
    flex: 1;
    padding-left: 15px;
}

.product-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.product-border {
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    margin: 6px 0 10px;
}

@media (max-width: 768px) {
    .product-card {
        flex-direction: column !important;
        text-align: center;
    }

    .product-content {
        padding-left: 0;
    }

    .product-img {
        margin-bottom: 10px;
    }
}


.sr-services {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.sr-divider {
  width: 90px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 5px;
}

.sr-underline {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.sr-service-box {
  background: #fff;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sr-service-box:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(229, 7, 14, 0.25);
}

.sr-service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.sr-service-box:hover .sr-service-icon {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(229, 7, 14, 0.5);
}

@media (max-width: 768px) {
  .sr-service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
}