* body {
  overflow-x: hidden;
}

.body, * {
  font-family: 'Roboto', sans-serif !important;
  font-weight: strong !important;
  
}

.carousel-section {
  margin-top: 4.25rem;
  position: relative;
  background: linear-gradient(to right, #eaf6ff, #ffffff);
}

/* Carousel Image and Caption Styles */
.carousel-inner img {
  height: 45vh;
  object-fit: contain;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.2);
  border-radius: 4px;
  
}

.carousel-caption {
  bottom: 12%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  padding: 2rem;
  border-radius: 20px;
  color: #FFF;
  animation: fadeInUp 1.2s ease-in-out;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);

}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #20c997;
}

.carousel-caption h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: whitesmoke !important;
  margin-bottom: 0.75rem;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* .features-section {
        background: linear-gradient(to right, #f5fafd, #ffffff);
        padding: 80px 0;
      }

      .features-section .section-title {
        text-align: center;
        margin-bottom: 50px;
      } */
/* Features Section Styles */
.features-section {
  background: linear-gradient(to right, #f5fafd, #ffffff);
  padding: 80px 0;
}

.features-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.feature-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.feature-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  padding: 30px;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-20px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* .feature-card img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 15px;
      } */

/* .feature-card h5 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 10px;
      } */

/* .feature-card p {
        font-size: 0.95rem;
        color: #666;
        margin: 0;
      } */

/* Category Section Styles */
.category-section {
  background: linear-gradient(to right, #f0f9ff, #ffffff);
  padding: 80px 0;
  align-items: center !important;
  left: 0 !important;
}

.category-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.category-slider {
  display: flex;
  gap: 5px !important;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.category-card {
  flex: 0 0 auto;
  width: 260px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.category-card img {
  height: 160px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 15px;
}

.category-card h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.category-card .btn {
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 8px;
}

.category-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.category-card {
  flex: 0 0 auto;
  width: 260px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.category-card img {
  height: 160px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 15px;
}

h2 {
  text-align: center !important;
}

/* Section background theme */
.brands-section {
  background: linear-gradient(to right, #effff0, #fff5f5);
}

/* Grid layout */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

/* Custom column: 5 per row */
.brand-col {
  flex: 0 0 calc(20% - 28px);
  max-width: calc(20% - 28px);
  min-width: 220px;
}

/* Responsive breakpoints */
@media (max-width: 1400px) {
  .brand-col {
    flex: 0 0 calc(25% - 28px);
    max-width: calc(25% - 28px);
  }
}

@media (max-width: 992px) {
  .brand-col {
    flex: 0 0 calc(33.33% - 28px);
    max-width: calc(33.33% - 28px);
  }
}

@media (max-width: 768px) {
  .brand-col {
    flex: 0 0 calc(50% - 28px);
    max-width: calc(50% - 28px);
  }
}

@media (max-width: 480px) {
  .brand-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Card styling */
.brand-card {
  background-color: #f8fdf8;
  border: 1px solid #ffecec;
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-5px);
}

/* Image fit */
.brand-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 6px;
}

/* Brand title with hover effect */
.brand-title {
  font-weight: 700;
  color: #444;
  transition: color 0.3s ease;
}

.brand-title:hover {
  color: #e74c3c;
  /* soft red on hover */
}

/* Center h2 globally */
h2 {
  text-align: center;
}

.testimonial-section {
  background: linear-gradient(to right, #f0fff0, #fff5f5);
  overflow: hidden;
}

.testimonial-marquee {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 25s linear infinite;
  will-change: transform;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  min-width: 300px;
  max-width: 320px;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d6f1d6;
}

.testimonial-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
}

.testimonial-text {
  font-size: 0.88rem;
  color: #555;
}

/* Animation */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #d1f5d1;
  color: #444;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#scrollTopBtn:hover {
  background-color: #ffdddd;
  transform: scale(1.1);
}

/* Common animated background style */
.section-with-animated-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-with-animated-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, #bb292e, #8dc247, #962024);
  background-size: 400% 400%;
  animation: flowingBG 10s ease-in-out infinite;
  opacity: 0.2;
  /* Soft appearance */
  z-index: -1;
  pointer-events: none;
}

/* Animation keyframes */
@keyframes flowingBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Individual sections with gradient overlays and padding */
.brands-section,
.features-section,
.category-section {
  background: linear-gradient(to right, #effff0, #fff5f5);
  /* default fallback gradient */
  padding: 80px 0;
}



h2:not(.carousel-caption h2):hover {
  background: linear-gradient(90deg, #ea3339c0, #abed54b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
}

.item-center-all {
  justify-content: center !important;
  align-items: center !important;
}