/********** Template CSS **********/
:root {
  --primary: #13c5dd;
  --secondary: #354f8e;
  --light: #eff5f9;
  --dark: #1d2a4d;
}

.btn {
  font-weight: 700;
  transition: 0.5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Jost", sans-serif;
  position: relative;
  margin-left: 30px;
  padding: 30px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

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

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-item {
  position: relative;
  height: 350px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #574b97;
  border-radius: 50%;
  transform: rotate(-14deg);
}

.service-item .service-icon i {
  transform: rotate(15deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

.price-carousel::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: var(--primary);
  border-radius: 8px 8px 50% 50%;
  z-index: -1;
}

.price-carousel .owl-nav {
  margin-top: 35px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

@media (min-width: 576px) {
  .team-item .row {
    height: 350px;
  }
}

.team-carousel .owl-nav {
  position: absolute;
  padding: 0 45px;
  width: 100%;
  height: 45px;
  top: calc(50% - 22.5px);
  left: 0;
  display: flex;
  justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: var(--light);
  border: 2px solid var(--primary);
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 40px;
  height: 40px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 150px;
  height: 150px;
}

.chamber-card {
  background: #efeef7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.chamber-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  border-color: rgba(13, 110, 253, 0.45);
}

.chamber-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.chamber-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.chamber-card:hover .chamber-icon {
  transform: scale(1.06);
}

.chamber-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.chamber-place {
  margin: 2px 0 0 0;
  color: #6c757d;
  font-weight: 600;
}

.chamber-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chamber-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-weight: 700;
  font-size: 13px;
}

.chamber-badge i {
  color: #0d6efd;
}

.chamber-details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 10px;
}

.detail-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #212529;
  font-weight: 600;
}

.detail-row i {
  color: var(--bs-primary);
  margin-top: 3px;
}

.chamber-main {
  border: 2px solid var(--bs-primary);
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.09), #fff);
}

.main-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bs-primary);
  color: #cccccc;
  font-weight: 800;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.chamber-actions a {
  border-radius: 999px;
}

@media (max-width: 575.98px) {
  .chamber-card {
    padding: 20px;
  }
  .chamber-title {
    font-size: 18px;
  }
  .chamber-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
}

.blog-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  height: 100%; /* equal height columns */
}

/* fixed image area */
.blog-img-wrap {
  width: 100%;
  height: 220px; /* same for all */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f6ff;
}

/* show full image without cropping */
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.blog-content {
  padding: 18px;
}

.blog-meta {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-text {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 14px;

  /* keep all cards equal even if text length differs */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 52px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.whatsapp-float i {
  font-size: 30px;
  line-height: 1;
  /* bottom: 70px !important; */
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(0.98);
  color: #fff;
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 18px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    bottom: 52px;
  }
  .whatsapp-float i {
    font-size: 28px;
  }
}

@media (max-width: 376px) {
  .hero-bn-right-top {
    padding-left: 135px;
    padding-top: 60px;
  }

  .hero-bn-right-top h1 {
    margin-top: 10px;
    line-height: 26px;
    font-size: 14px;
    color: #ffffff;
  }
  .hero-bn-right-top h5 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero-bn-right-top {
    padding-left: 135px;
    padding-top: 60px;
  }

  .hero-bn-right-top h1 {
    margin-top: 10px;
    line-height: 26px;
    font-size: 14px;
    color: #ffffff;
  }
  .hero-bn-right-top h5 {
    font-size: 16px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 52px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.whatsapp-float i {
  font-size: 30px;
  line-height: 1;
  /* bottom: 70px !important; */
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(0.98);
  color: #fff;
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 18px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    bottom: 52px;
  }
  .whatsapp-float i {
    font-size: 28px;
  }
}

.whatsapp-card {
  transition: all 0.3s ease;
}

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

.wa-info {
  text-align: left;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 18px;
}

.wa-line {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
}

.wa-line + .wa-line {
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

.wa-line i {
  font-size: 28px;
  color: #198754;
  width: 34px;
  text-align: center;
}

.wa-line .fa-phone-alt {
  color: #0d6efd;
}

.wa-label {
  font-weight: 700;
  color: #6c757d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.wa-number {
  display: inline-block;
  font-weight: 800;
  font-size: 18px;
  color: #212529;
  text-decoration: none;
}

.wa-number:hover {
  color: #574b97;
}

.wa-btn {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.wa-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  transition: all 0.25s ease;
}

.hero-slide {
  position: relative;
  width: 100%;
  /*height: 85vh;*/
}

img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-overlay a,
.hero-overlay button {
  pointer-events: auto;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
}

.carousel-item.active .hero-content > * {
  animation: heroUp 0.75s ease forwards;
}

.carousel-item.active .hero-content h1 {
  animation-delay: 0.1s;
}
.carousel-item.active .hero-content h5 {
  animation-delay: 0.22s;
}
.carousel-item.active .hero-content .pt-2 {
  animation-delay: 0.34s;
}

@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-box {
  padding: 90px 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-pos-1 {
  margin-top: 60px;
  padding-left: 160px;
}

.hero-headline-bn {
  color: #b9aeff !important;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 10px 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero-sub-bn {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600;
  margin: 0 0 14px 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero-bn-right-top {
  padding-left: 600px;
  padding-top: 168px;
  margin: 0;
  z-index: 3;
  max-width: 100%;
  font-size: 4.2rem;
  font-weight: 900;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero-bn-right-top h1 {
  margin-top: 100px;
  line-height: 88px;
  font-size: 56px;
  color: #ffffff;
}
.hero-bn-right-top h5 {
  font-size: 60px;
}

@media (max-width: 1366px) {
  .hero-bn-right-top {
    padding-left: 480px;
    padding-top: 168px;
  }

  .hero-bn-right-top h1 {
    margin-top: 50px;
    line-height: 70px;
    font-size: 40px;
    color: #ffffff;
  }
  .hero-bn-right-top h5 {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  .hero-bn-right-top {
    padding-left: 380px;
    padding-top: 115px;
  }

  .hero-bn-right-top h1 {
    margin-top: 30px;
    line-height: 60px;
    font-size: 36px;
    color: #ffffff;
  }
  .hero-bn-right-top h5 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .hero-bn-right-top {
    padding-left: 330px;
    padding-top: 115px;
  }

  .hero-bn-right-top h1 {
    margin-top: 30px;
    line-height: 50px;
    font-size: 30px;
    color: #ffffff;
  }
  .hero-bn-right-top h5 {
    font-size: 26px;
  }

  .hero-pos-1 {
    margin-top: 60px;
    padding-left: 50px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content h5 {
    font-size: 18px;
  }
  .cst-pad {
    padding: 12px 26px;
  }
}

@media (max-width: 768px) {
  .hero-bn-right-top {
    padding-left: 330px;
    padding-top: 115px;
  }

  .hero-bn-right-top h1 {
    margin-top: 30px;
    line-height: 50px;
    font-size: 30px;
    color: #ffffff;
  }
  .hero-bn-right-top h5 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .hero-bn-right-top {
    padding-left: 230px;
    padding-top: 78px;
  }

  .hero-bn-right-top h1 {
    margin-top: 20px;
    line-height: 30px;
    font-size: 20px;
    color: #ffffff;
  }
  .hero-bn-right-top h5 {
    font-size: 18px;
  }

  .hero-slide {
    width: 100%;
    height: auto;
  }
  .hero-pos-1 {
    margin-top: 40px;
    padding-left: 50px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-content h5 {
    font-size: 16px;
  }
  .cst-pad {
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .hero-headline-bn {
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .hero-sub-bn {
    font-size: 0.98rem;
    line-height: 1.35;
  }
  .hero-bn-right-top {
    padding-left: 205px;
    padding-top: 70px;
  }

  .hero-bn-right-top h1 {
    margin-top: 20px;
    line-height: 26px;
    font-size: 18px;
    color: #ffffff;
  }
  .hero-bn-right-top h5 {
    font-size: 16px;
  }
}

@media (min-width: 576px) {
  .hero-headline-bn {
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .hero-sub-bn {
    font-size: 1.02rem;
    line-height: 1.35;
  }
}

@media (max-width: 576px) {
  .hero-box {
    justify-content: flex-start;
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-pos-1 {
    margin-top: 0;
    padding-left: 60px;
    padding-top: 0px;
  }
  .hero-content h1 {
    font-size: 20px;
  }
  .hero-content h5 {
    font-size: 14px;
  }
  .cst-pad {
    padding: 8px 15px;
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .hero-header {
    position: relative;
  }

  .hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.55) 100%
    );
    background-position: center center !important;
    z-index: 0;
  }

  .hero-header .container,
  .hero-header .container * {
    position: relative;
    z-index: 1;
  }

  .hero-header h1,
  .hero-header h5 {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  }

  .hero-header .text-primary {
    color: #b9aeff !important;
  }

  .hero-header .btn-outline-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(4px);
  }

  .hero-header .btn-outline-light:hover {
    background: #574b97 !important;
    border-color: #574b97 !important;
    color: #ffffff !important;
  }

  .testimonial-item img.rounded-circle {
    width: 110px;
    height: 110px;
  }

  .feature-circle {
    width: 165px;
    height: 165px;
  }
}

@media (max-width: 576px) {
  .hero-header .hero-box {
    margin-top: 55px !important;
  }
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent !important;
  z-index: 0;
}

.chamber-card {
  background: #efeef7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.chamber-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  border-color: rgba(13, 110, 253, 0.45);
}

.chamber-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.chamber-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.chamber-card:hover .chamber-icon {
  transform: scale(1.06);
}

.chamber-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.chamber-place {
  margin: 2px 0 0 0;
  color: #6c757d;
  font-weight: 600;
}

.chamber-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chamber-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-weight: 700;
  font-size: 13px;
}

.chamber-badge i {
  color: #0d6efd;
}

.chamber-details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 10px;
}

.detail-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #212529;
  font-weight: 600;
}

.detail-row i {
  color: var(--bs-primary);
  margin-top: 3px;
}

.chamber-main {
  border: 2px solid var(--bs-primary);
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.09), #fff);
}

.main-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bs-primary);
  color: #cccccc;
  font-weight: 800;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.chamber-actions a {
  border-radius: 999px;
}

@media (max-width: 576px) {
  .chamber-card {
    padding: 20px;
  }
  .chamber-title {
    font-size: 18px;
  }
  .chamber-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
}

.hero-box {
  padding: 90px 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cst-pad {
  padding: 18px 36px;
}

.appointment-section .bg-white {
  transition: all 0.3s ease;
}

.appointment-section .bg-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.appointment-section .form-control,
.appointment-section .form-select {
  border-radius: 14px;
  transition: all 0.25s ease;
}

.appointment-section .form-control:focus,
.appointment-section .form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.appointment-section .btn-primary {
  border-radius: 999px;
  transition: all 0.25s ease;
}

.appointment-section .btn-primary:hover {
  transform: translateY(-2px);
}

.testimonial-item img.rounded-circle {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feature-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 !important;
}

.bg-light-2 {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
}

.bg-light-2 i,
.bg-light-2 h6,
.bg-light-2 small {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.bg-light-2:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.bg-light-2:hover i {
  transform: scale(1.08);
}

.bg-light-2:hover h6,
.bg-light-2:hover small {
  color: #fff !important;
}

.service-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 320px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color(#574b97);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-details {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-item:hover .service-icon {
  transform: scale(1.08) rotate(3deg);
}

.service-item:hover h4 {
  color: #574b97;
}

.service-item:hover .service-details {
  opacity: 1;
  transform: translateY(0);
  max-height: 120px;
  margin-top: 10px;
}

.footer-fb-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fb-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0);
}

.fb-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(
    90deg,
    rgba(185, 174, 255, 0.22),
    rgba(255, 255, 255, 0.06)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.fb-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.2px;
}

.fb-card-title i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(185, 174, 255, 0.22);
  color: #b9aeff;
}

.fb-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.08);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.fb-open-btn:hover {
  transform: translateY(-1px);
  background: rgba(185, 174, 255, 0.16);
  border-color: rgba(185, 174, 255, 0.45);
  color: rgba(255, 255, 255, 0.95);
}

.fb-embed {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
}

.fb-embed-wrap {
  padding: 12px;
}

.fb-embed-frame {
  width: 100%;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 575.98px) {
  .fb-embed-frame {
    height: 420px;
  }
}

@media (min-width: 1400px) {
  .fb-embed-frame {
    height: 420px;
  }
}

.footer-wide {
  max-width: 100% !important;
}

.fb-box iframe {
  height: 340px !important;
}

@media (min-width: 1400px) {
  .fb-box iframe {
    height: 380px !important;
  }
}

.fb-embed-frame {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.fb-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
}

@media (max-width: 575.98px) {
  .fb-embed-frame {
    height: 480px;
  }
}

@media (min-width: 1400px) {
  .fb-embed-frame {
    height: 480px;
  }
}

.bg-light-2 {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
}

.bg-light-2 i,
.bg-light-2 h6,
.bg-light-2 small {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.bg-light-2:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.bg-light-2:hover i {
  transform: scale(1.08);
}

.bg-light-2:hover h6,
.bg-light-2:hover small {
  color: #fff !important;
}

.feature-circle {
  width: 165px;
  height: 165px;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 52px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.whatsapp-float i {
  font-size: 30px;
  line-height: 1;
  /* bottom: 70px !important; */
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(0.98);
  color: #fff;
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 18px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    bottom: 52px;
  }
  .whatsapp-float i {
    font-size: 28px;
  }
  .feature-circle {
    width: 165px;
    height: 165px;
  }
}

.service-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 320px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color(#574b97);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-details {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-item:hover .service-icon {
  transform: scale(1.08) rotate(3deg);
}

.service-item:hover h4 {
  color: #574b97;
}

.service-item:hover .service-details {
  opacity: 1;
  transform: translateY(0);
  max-height: 120px;
  margin-top: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 52px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.whatsapp-float i {
  font-size: 30px;
  line-height: 1;
  /* bottom: 70px !important; */
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(0.98);
  color: #fff;
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 18px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    bottom: 52px;
  }
  .whatsapp-float i {
    font-size: 28px;
  }
}

.appointment-section .bg-white {
  transition: all 0.3s ease;
}

.appointment-section .bg-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.appointment-section .form-control,
.appointment-section .form-select {
  border-radius: 14px;
  transition: all 0.25s ease;
}

.appointment-section .form-control:focus,
.appointment-section .form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.appointment-section .btn-primary {
  border-radius: 999px;
  transition: all 0.25s ease;
}

.appointment-section .btn-primary:hover {
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 52px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.whatsapp-float i {
  font-size: 30px;
  line-height: 1;
  /* bottom: 70px !important; */
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(0.98);
  color: #fff;
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 18px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    bottom: 52px;
  }
  .whatsapp-float i {
    font-size: 28px;
  }
}

.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  height: 360px;
}

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f6ff;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
