/*==============================================
    Brand One
/* Brand One Section */
.brand-one {
  position: relative;
  display: block;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff, #eef5ff);
  z-index: 1;
  overflow: hidden;
}
/* Decorative gradient circles */
.brand-one::before,
.brand-one::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.15;
}

/* पहले वाला top-left अब हो गया left-bottom */
.brand-one::before {
  bottom: -120px;   /* पहले top था */
  left: -120px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #0d6efd, transparent);
}

/* पहले वाला bottom-right अब हो गया right-top */
.brand-one::after {
  top: -150px;      /* पहले bottom था */
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00c6ff, transparent);
}


/* Section Title */
.section-title__tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--careon-base);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title__title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.section-title__title .highlight {
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Carousel */
.brand-one__carousel {
  position: relative;
  z-index: 2;
}

.brand-one__single {
  text-align: center;
  position: relative;
}

/* Card effect */
.brand-one__card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.brand-one__card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Brand Logo */
.brand-one__img img {
  max-height: 80px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.brand-one__card:hover .brand-one__img img {
  transform: scale(0.9) rotate(-5deg);
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
    padding: 0 0 0;
    z-index: 1;
}

.brand-two__inner {
    position: relative;
    display: block;
    background-color: var(--careon-base);
    padding: 53px 0;
    border-radius: 20px;
}

.brand-two__carousel {
    position: relative;
    display: block;
}

.brand-two__single {
    position: relative;
    display: block;
    text-align: center;
}

.brand-two__img {
    position: relative;
    display: block;
}

.brand-two__img>img {
    width: auto !important;
    margin: 0 auto 0;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.brand-two__single:hover .brand-two__img>img {
    transform: scale(.9);
}














/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/