/* Banner Slider */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides */
.slide {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.5s ease;
}

/* Blurred Background only */
.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) blur(2px);
  transition: all 1s ease;
  z-index: -2;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Overlay for extra contrast */
.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

/* Slide Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 2;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Sub-title */
.slide-sub-title {
  font-size: 22px;
  font-weight: 700;
  color: #00e5ff;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s ease;
}

.slide.active .slide-sub-title {
  opacity: 1;
  transform: translateY(0);
}

/* Title */
.slide-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2em;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1.2s ease;
  color: #fff;
}

.slide-title span {
  color: #ffbd45;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateX(0);
}

/* Text */
.slide-text {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.4s ease;
  color: #f0f0f0;
}

.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
}

/* Button */
.slide-btn {
  display: inline-block;
  padding: 14px 42px;
  background: #00e5ff;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.slide-btn:hover {
  background: #ffbd45;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.4s ease;
}

.slider-dots span:hover {
  transform: scale(1.3);
  background: #ffbd45;
}

.slider-dots span.active {
  background: #00e5ff;
  transform: scale(1.5);
  box-shadow: 0 0 8px #00e5ff;
}

/* Responsive */
@media (max-width: 992px) {
  .slide-title { font-size: 38px; }
  .slide-text { font-size: 16px; }
  .slide-content { left: 7%; }
}

@media (max-width: 576px) {
  .slide-title { font-size: 28px; }
  .slide-sub-title { font-size: 16px; }
  .slide-text { font-size: 14px; }
  .slide-content { left: 5%; max-width: 90%; }
}


/*==============================================
    Banner Two
===============================================*/
.banner-two {
    position: relative;
    display: block;
    background-color: #FFF3EA;
    padding: 210px 0 90px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
}

.banner-two__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 58.5%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .20;
    z-index: -1;
}

.banner-two__left {
    position: relative;
    display: block;
    margin-right: 60px;
    margin-top: 35px;
}

.banner-two__review-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-two__review-img-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.banner-two__review-img-box li {
    position: relative;
    display: block;
}

.banner-two__review-img-box li+li {
    margin-left: -25px;
}

.banner-two__review-img-box li:last-child {
    z-index: 1;
}

.banner-two__review-img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 50px;
    border-radius: 50%;
    z-index: 1;
}

.banner-two__review-img img {
    width: 100%;
    border: 2px solid var(--careon-white);
    border-radius: 50%;
}

.banner-two__review-count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--careon-black);
    border: 2px solid var(--careon-white);
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.banner-two__review-count {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-two__review-count h3 {
    font-size: 18px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 18px !important;
    font-family: var(--careon-font) !important;
}

.banner-two__review-count span {
    font-size: 18px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 18px;
    font-family: var(--careon-font);
}

.banner-two__review-content-box {
    position: relative;
    display: block;
}

.banner-two__review-content-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 23px;
}

.banner-two__review-rating-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.banner-two__review-rating-box p {
    font-size: 18px;
    color: var(--careon-black);
    font-weight: 700;
    line-height: 18px;
}

.banner-two__review-start {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.banner-two__review-start span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--careon-primary);
}

.banner-two__title {
    font-size: 75px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.1em;
    margin-top: 30px;
    margin-bottom: 23px;
}

.banner-two__title span {
    font-weight: 300;
}

.banner-two__title .split-line {
    text-transform: none;
}

.banner-two__text {
    margin-bottom: 31px;
}

.banner-two__btn-box {
    position: relative;
    display: block;
}

.banner-two__btn-box .thm-btn {
    background-color: var(--careon-base);
}

.banner-two__btn-box .thm-btn::before,
.banner-two__btn-box .thm-btn:after {
    background-color: var(--careon-black);
}

.banner-two__counter-box {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--careon-black-rgb), .20);
    padding-top: 20px;
    margin-top: 25px;
}

.banner-two__counter {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.banner-two__counter li {
    position: relative;
    display: block;
}

.banner-two__counter-single {
    position: relative;
    display: block;
}

.banner-two__counter-count {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1px;
}

.banner-two__counter-count h3 {
    font-size: 32px;
    color: var(--careon-black);
    font-weight: 800;
    line-height: 32px !important;
    font-family: var(--careon-font) !important;
}

.banner-two__counter-count span {
    font-size: 32px;
    color: var(--careon-black);
    font-weight: 800;
    line-height: 32px;
    font-family: var(--careon-font);
}

.banner-two__counter-text {
    font-size: 15px;
    color: var(--careon-gray);
    font-weight: 400;
}

.banner-two__right {
    position: relative;
    display: block;
    margin-left: 4px;
}

.banner-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    animation: topBottom 3s ease-in-out infinite;
    z-index: 1;
}

.banner-two__img::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.banner-two__img:hover::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.banner-two__img>img {
    width: 100%;
    border: 4px solid var(--careon-white);
    border-radius: 10px;
}

.banner-two__call {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 15px 22px 15px;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    bottom: 10px;
    right: 10px;
}

.banner-two__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.banner-two__call-icon img {
    width: auto;
}

.banner-two__call-number {
    margin-left: 20px;
}

.banner-two__call-number p {
    font-size: 16px;
    margin: 0;
    line-height: 16px;
    color: var(--careon-gray);
    font-weight: 400;
    margin-bottom: 11px;
}

.banner-two__call-number h5 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}

.banner-two__call-number h5 a {
    color: var(--careon-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-two__call-number a:hover {
    color: var(--careon-base);
}

























/*==============================================
    End
===============================================*/