body {
  font-family: "Poppins", sans-serif;
}

.book-btn {
  background: white;
  color: #000;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
  transition: all 0.3s ease;
}
.book-btn .icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.book-btn .icon-circle i {
  font-size: 11px;
  -webkit-text-stroke: 1px #000;
  color: #000;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(1px);
  transition: all 0.3s ease;
}

.theme-btn {
  background: #3A2546;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #3A2546;
  transition: all 0.3s ease;
  text-decoration: none;
}
.theme-btn .icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3A2546;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.theme-btn .icon-circle i {
  font-size: 11px;
  color: #fff;
  -webkit-text-stroke: 1px #fff;
}
.theme-btn:hover {
  background: #fff;
  color: #3A2546;
}
.theme-btn:hover .icon-circle {
  background: #fff;
  border-color: #3A2546;
}
.theme-btn:hover .icon-circle i {
  color: #3A2546;
  -webkit-text-stroke: 1px #3A2546;
}
.theme-btn.secondary-btn {
  background: #fff;
  color: #3A2546;
}
.theme-btn.secondary-btn .icon-circle {
  background: #fff;
  border-color: #3A2546;
}
.theme-btn.secondary-btn .icon-circle i {
  color: #3A2546;
  -webkit-text-stroke: 0;
}
.theme-btn.secondary-btn:hover {
  background: #3A2546;
  color: #fff;
}
.theme-btn.secondary-btn:hover .icon-circle {
  background: #3A2546;
  border-color: #fff;
}
.theme-btn.secondary-btn:hover .icon-circle i {
  color: #fff;
}
.theme-btn.transparent-btn {
  background: transparent;
  color: #fff;
  border-color: #fff;
  gap: 12px;
  padding: 4px 12px;
}
.theme-btn.transparent-btn > i {
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}
.theme-btn.transparent-btn:hover {
  background: #fff;
  color: #3A2546;
}
.theme-btn.transparent-btn:hover > i {
  color: #3A2546;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 48px;
  font-weight: 500;
  color: #2C3E50;
  line-height: 1.2;
  font-family: "Gloock", serif;
}

.section-description {
  font-size: 15px;
  line-height: 1.8;
  color: #7F8C8D;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.site-header.scrolled .nav-left .nav-menu .nav-item.call-item .nav-link-call {
  border-color: #000;
}
.site-header.scrolled .nav-left .nav-menu .nav-item.call-item .nav-link-call i {
  color: #000;
}
.site-header.scrolled .nav-left .nav-menu .nav-item .nav-link {
  color: #000;
}
.site-header.scrolled .nav-left .nav-menu .nav-item.dot-separator {
  color: #000;
}
.site-header.scrolled .nav-right .contact-link {
  color: #000;
}
.site-header.scrolled .nav-right .book-btn {
  background: #000;
  color: #fff;
}
.site-header.scrolled .nav-right .book-btn .icon-circle {
  background: #000;
  border-color: #fff;
}
.site-header.scrolled .nav-right .book-btn .icon-circle i {
  color: #fff;
  -webkit-text-stroke: 1px #fff;
}
.site-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  max-width: 1400px;
  margin: 0 auto;
}
.site-header .nav-left {
  flex: 1;
}
.site-header .nav-left .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header .nav-left .nav-menu .nav-item {
  display: flex;
  align-items: center;
}
.site-header .nav-left .nav-menu .nav-item.call-item {
  margin-right: 10px;
}
.site-header .nav-left .nav-menu .nav-item.call-item .nav-link-call {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}
.site-header .nav-left .nav-menu .nav-item.call-item .nav-link-call i {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  transition: all 0.3s ease;
}
.site-header .nav-left .nav-menu .nav-item .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.site-header .nav-left .nav-menu .nav-item.dot-separator {
  font-size: 14px;
  color: #fff;
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease;
}
.site-header .logo-center {
  flex-shrink: 0;
  padding: 0 40px;
}
.site-header .logo-center a {
  display: block;
}
.site-header .logo-center a img {
  height: 60px;
  width: auto;
  display: block;
}
.site-header .nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.site-header .nav-right .contact-link {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.site-footer {
  background: #3A2546;
  color: white;
}
.site-footer .footer-main {
  position: relative;
  padding: 60px 0 40px;
}
.site-footer .footer-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.site-footer .footer-main .footer-column .footer-logo {
  margin: 0 0 20px 0;
}
.site-footer .footer-main .footer-column .footer-logo img {
  max-width: 180px;
  height: auto;
  display: block;
}
.site-footer .footer-main .footer-column .footer-description {
  max-width: 380px;
  font-size: 14px;
  line-height: 1.7;
  color: white;
  margin: 0 0 25px 0;
}
.site-footer .footer-main .footer-column .rating-badge {
  margin-top: 25px;
}
.site-footer .footer-main .footer-column .rating-badge img {
  max-width: 180px;
  height: auto;
  display: block;
}
.site-footer .footer-main .footer-column .footer-title {
  padding-left: 180px;
  font-size: 16px;
  font-weight: 700;
  color: #B7AF66;
  margin: 0 0 25px 0;
  letter-spacing: 1px;
}
.site-footer .footer-main .footer-column .footer-links {
  padding-left: 180px;
  list-style: none;
  margin: 0;
}
.site-footer .footer-main .footer-column .footer-links li {
  margin-bottom: 5px;
}
.site-footer .footer-main .footer-column .footer-links li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-footer .footer-main .footer-column .footer-links li a:hover {
  color: white;
}
.site-footer .footer-main .footer-column .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.site-footer .footer-main .footer-column .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  color: white;
}
.site-footer .footer-main .footer-column .contact-list li i {
  font-size: 18px;
  color: white;
  flex-shrink: 0;
  margin-top: 0;
}
.site-footer .footer-main .footer-column .contact-list li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-main .footer-column .contact-list li a.main-phone {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  color: #B7AF66;
}
.site-footer .footer-main .footer-column .contact-list li span {
  line-height: 1.6;
  font-size: 12px;
  color: white;
}
.site-footer .footer-main .footer-column .contact-list li:nth-child(1) i, .site-footer .footer-main .footer-column .contact-list li:nth-child(3) i {
  margin-top: 0px;
}
.site-footer .footer-main .footer-column .contact-list li:nth-child(2) i {
  margin-top: 5px;
}
.site-footer .footer-main .footer-column .social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}
.site-footer .footer-main .footer-column .social-links .social-link {
  width: 30px;
  height: 30px;
  padding: 5px;
  background: rgba(61, 61, 61, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B7AF66;
  transition: all 0.3s ease;
}
.site-footer .footer-main .footer-column .social-links .social-link i {
  font-size: 28px;
}
.site-footer .footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(61, 61, 61, 0.2);
}
.site-footer .footer-bottom .bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .bottom-content .copyright {
  font-size: 13px;
  color: white;
  margin: 0;
}
.site-footer .footer-bottom .bottom-content .copyright .developer-link {
  color: rgb(120, 120, 120);
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-bottom .bottom-content .copyright .developer-link:hover {
  color: white;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom {
  display: flex;
  gap: 15px;
  align-items: center;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom a:hover {
  color: white;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom span {
  color: rgba(61, 61, 61, 0.5);
}

.hero-section {
  margin-bottom: 50px;
  position: relative;
  min-height: 725px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background-image: url("../../public/images/sample/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
  border-top: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 5px;
  height: 15px;
  background: #3A2546;
}
.hero-section .hero-content {
  max-width: 500px;
  margin-top: 0;
}
.hero-section .hero-content .hero-title {
  font-size: 56px;
  font-weight: 500;
  color: white;
  margin: 0 0 25px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-family: "Gloock", serif;
}
.hero-section .hero-content .hero-title .text-purple {
  color: #3A2546;
}
.hero-section .hero-content .hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.hero-section .whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hero-section .whatsapp-float i {
  font-size: 32px;
  color: white;
}

.welcome-section {
  padding: 60px 0;
  background: white;
}
.welcome-section .doctor-card {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.welcome-section .doctor-card .doctor-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin-right: -25px;
}
.welcome-section .welcome-content {
  padding-left: 100px;
}
.welcome-section .welcome-content .section-title {
  margin: 0 0 25px 0;
}
.welcome-section .welcome-content .section-description {
  margin: 0 0 35px 0;
  max-width: 800px;
}

.treatment-section {
  padding: 60px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}
.treatment-section .section-header {
  margin-bottom: 60px;
}
.treatment-section .treatment-slider {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.treatment-section .treatment-slider .slide-item {
  position: relative;
}
.treatment-section .treatment-slider .flip-card {
  width: 100%;
  height: 550px;
  perspective: 1000px;
  cursor: pointer;
}
.treatment-section .treatment-slider .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.treatment-section .treatment-slider .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}
.treatment-section .treatment-slider .flip-card-front,
.treatment-section .treatment-slider .flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  overflow: hidden;
}
.treatment-section .treatment-slider .flip-card-front {
  background: #f0f0f0;
}
.treatment-section .treatment-slider .flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.treatment-section .treatment-slider .flip-card-front .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 300;
  color: #2c3e50;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.treatment-section .treatment-slider .flip-card-front:hover .plus-icon {
  opacity: 1;
}
.treatment-section .treatment-slider .flip-card-back {
  background: #f8f8f8;
  transform: rotateY(180deg);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.treatment-section .treatment-slider .flip-card-back .card-content {
  width: 100%;
  text-align: left;
}
.treatment-section .treatment-slider .flip-card-back .card-content .treatment-name {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  color: #3A2546;
  line-height: 1.2;
  text-transform: capitalize;
}
.treatment-section .treatment-slider .flip-card-back .card-content .options-count {
  font-size: 13px;
  font-weight: 600;
  color: #3A2546;
  opacity: 0.6;
  margin-bottom: 60px;
  display: block;
}
.treatment-section .treatment-slider .flip-card-back .card-content .treatment-description {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #3A2546;
  opacity: 0.6;
  margin-bottom: 60px;
}
.treatment-section .treatment-slider .flip-card-back .card-content .theme-btn {
  background: transparent;
  color: #3A2546;
  border: 2px solid #3A2546;
  padding: 5px 15px;
}
.treatment-section .treatment-slider .flip-card-back .card-content .theme-btn .icon-circle {
  background: #fff;
  border: 2px solid #3A2546;
}
.treatment-section .treatment-slider .flip-card-back .card-content .theme-btn .icon-circle i {
  color: #3A2546;
  -webkit-text-stroke: 1px #3A2546;
}

.featured-treatments-section {
  padding: 60px 0;
}
.featured-treatments-section .section-title {
  margin-bottom: 60px;
}
.featured-treatments-section .treatment-card {
  height: 350px;
  transition: transform 0.4s ease;
}
.featured-treatments-section .treatment-card .card-wrapper {
  border-radius: 25px;
  overflow: hidden;
  border: 3px solid #3A2546;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.featured-treatments-section .treatment-card .treatment-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
  flex-shrink: 0;
}
.featured-treatments-section .treatment-card .treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.featured-treatments-section .treatment-card .treatment-content {
  padding: 15px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #F6F6F6;
  border-radius: 20px 20px 0 0;
  border-top: 10px solid #3A2546;
  position: relative;
  margin-top: -20px;
  z-index: 2;
}
.featured-treatments-section .treatment-card .treatment-content .treatment-title {
  color: #3A2546;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
  font-family: "Gloock", serif;
}
.featured-treatments-section .treatment-card .treatment-content .treatment-category {
  color: #999999;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 40px;
}
.featured-treatments-section .treatment-card .treatment-content .theme-btn {
  margin-top: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 6px 12px;
}
.featured-treatments-section .treatment-card .treatment-content .theme-btn .icon-circle i {
  transform: translateX(1px);
}

.premises-section {
  position: relative;
  padding: 80px 15px;
  overflow: hidden;
}
.premises-section .premises-list {
  position: relative;
}
.premises-section .premises-list .slick-list {
  position: relative;
}
.premises-section .premises-list .slick-list::before, .premises-section .premises-list .slick-list::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.premises-section .premises-list .slick-list::before {
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0) 100%);
}
.premises-section .premises-list .slick-list::after {
  right: 0;
  background: linear-gradient(-90deg, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0) 100%);
}
.premises-section .premises-list .item-row {
  position: relative;
  padding: 0 10px;
}
.premises-section .premises-list .item-row .premises-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
.premises-section .premises-list .item-row .premises-info {
  position: absolute;
  bottom: 40px;
  left: 50px;
  max-width: 450px;
  padding: 30px 35px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.premises-section .premises-list .item-row .premises-info .premises-title {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 500;
  color: #3A2546;
  font-family: "Gloock", serif;
}
.premises-section .premises-list .item-row .premises-info .premises-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}
.premises-section .premises-list .item-row .premises-info .premises-location i {
  margin-top: 3px;
  font-size: 18px;
  color: #3A2546;
  flex-shrink: 0;
}
.premises-section .slider-nav-wrap {
  position: absolute;
  bottom: 53%;
  width: calc(100% - 30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 15;
  pointer-events: none;
}
.premises-section .slider-nav-wrap .slick-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #5a5d62;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
}
.premises-section .slider-nav-wrap .slick-nav i {
  font-size: 20px;
  color: #5a5d62;
  -webkit-text-stroke: 1px #5a5d62;
}
.premises-section .slider-nav-wrap .slick-nav.slick-previous {
  margin-left: 30px;
}
.premises-section .slider-nav-wrap .slick-nav.slick-next {
  margin-right: 30px;
}
.premises-section .slider-nav-wrap .slick-nav.slick-next i {
  transform: translateX(-8px);
}
.premises-section .slick-dots {
  position: relative;
  margin-top: 25px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  list-style: none;
  z-index: 5;
}
.premises-section .slick-dots li {
  margin: 0;
}
.premises-section .slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.premises-section .slick-dots li button::before {
  display: none;
}
.premises-section .slick-dots li.slick-active button {
  background: #3A2546;
  transform: scale(1.25);
}

.packages-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.packages-section .section-header {
  margin-bottom: 50px;
}
.packages-section .row .col-lg-6 .package-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.packages-section .row .col-lg-6 .package-card .package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.packages-section .row .col-lg-6 .package-card .package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.packages-section .row .col-lg-6 .package-card .package-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  font-family: "Playfair Display", serif;
}
.packages-section .row .col-lg-6 .package-card .transparent-btn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.packages-section .row .col-lg-6:first-child .package-card .package-overlay {
  align-items: flex-start;
  text-align: left;
}
.packages-section .row .col-lg-6:last-child .package-card .package-overlay {
  align-items: flex-end;
  text-align: right;
}
.packages-section .section-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #718096;
}

.faq-appointment-section {
  padding: 60px 0;
}
.faq-appointment-section .faq-col {
  background: #3A2546;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.faq-appointment-section .faq-col .section-label {
  margin-bottom: 20px;
  font-weight: 700;
}
.faq-appointment-section .faq-col .section-title {
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
}
.faq-appointment-section .faq-col .section-description {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  text-align: center;
  margin-bottom: 50px;
}
.faq-appointment-section .faq-col .theme-btn.secondary-btn {
  border: 2px solid white;
}
.faq-appointment-section .appointment-col {
  background: #E8E8E8;
  padding: 82px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.faq-appointment-section .appointment-col .section-label {
  color: #ababab;
  font-weight: 700;
  margin-bottom: 20px;
}
.faq-appointment-section .appointment-col .section-title {
  color: #3A2546;
  margin-bottom: 20px;
  font-family: "Gloock", serif;
}
.faq-appointment-section .appointment-col .section-description {
  color: #3A2546;
  max-width: 500px;
  text-align: center;
  margin-bottom: 50px;
}
.faq-appointment-section .appointment-col .theme-btn:hover {
  background: #E8E8E8;
}
.faq-appointment-section .appointment-col .theme-btn:hover .icon-circle {
  background: #E8E8E8;
}

.news-section {
  padding: 60px 0;
  background: white;
}
.news-section .section-title {
  margin-bottom: 60px;
}
.news-section .news-card {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-section .news-card .news-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.news-section .news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-section .news-card .news-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-section .news-card .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.news-section .news-card .news-content .news-meta i {
  color: #3A2546;
  font-size: 14px;
}
.news-section .news-card .news-content .news-meta .news-date {
  color: #ababab;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.news-section .news-card .news-content .news-title {
  color: #3A2546;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
  font-family: "Gloock", serif;
  flex: 1;
}
.news-section .news-card .news-content .theme-btn.secondary-btn {
  gap: 20px;
  padding: 5px 10px;
  align-self: flex-start;
}
.news-section .news-card .news-content .theme-btn.secondary-btn i {
  font-size: 14px;
}

.webinar-section {
  padding: 60px 0;
  background: white;
}
.webinar-section .webinar-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 350px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.webinar-section .webinar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 3px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgb(0, 0, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
}
.webinar-section .webinar-card .row {
  position: relative;
}
.webinar-section .webinar-card .webinar-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
}
.webinar-section .webinar-card .webinar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}
.webinar-section .webinar-card .webinar-content {
  position: relative;
  padding: 60px 70px;
  background: linear-gradient(90deg, #D4B71D 0%, #D4B71D 70%, rgba(212, 183, 29, 0.9) 85%, rgba(212, 183, 29, 0) 100%);
  z-index: 2;
}
.webinar-section .webinar-card .webinar-content .section-label {
  color: #3d3d3d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.webinar-section .webinar-card .webinar-content .section-title {
  color: #3d3d3d;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: "Gloock", serif;
}
.webinar-section .webinar-card .webinar-content .section-description {
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 600px;
}
.webinar-section .webinar-card .webinar-content .secondary-btn {
  gap: 15px;
  padding: 8px 25px;
  background: transparent;
  color: #3d3d3d;
}
.webinar-section .webinar-card .webinar-content .secondary-btn i {
  font-size: 20px;
  color: #3d3d3d;
  transition: transform 0.3s ease;
}
.webinar-section .webinar-card .webinar-content .secondary-btn:hover {
  background: #3d3d3d;
  color: #D4B71D;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.webinar-section .webinar-card .webinar-content .secondary-btn:hover i {
  color: #D4B71D;
}

.testimonials-section {
  padding: 80px 0;
}
.testimonials-section .testimonials-slider {
  position: relative;
  padding: 0 50px;
}
.testimonials-section .testimonials-slider .slick-list {
  overflow: hidden;
  padding: 30px 0 0px;
}
.testimonials-section .testimonials-slider .testimonial-item {
  padding: 0 15px;
  outline: none;
}
.testimonials-section .testimonials-slider .testimonial-card {
  background: white;
  border: 2px solid #d1d1d1;
  border-radius: 25px;
  padding: 20px 40px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.testimonials-section .testimonials-slider .testimonial-card .client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
}
.testimonials-section .testimonials-slider .testimonial-card .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-section .testimonials-slider .testimonial-card .testimonial-text {
  color: #999999;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  min-height: 100px;
}
.testimonials-section .testimonials-slider .testimonial-card .client-name {
  color: #3d3d3d;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Playfair Display", serif;
}
.testimonials-section .testimonials-slider .testimonial-card .client-position {
  color: #C4A747;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.testimonials-section .slick-dots {
  position: relative;
  margin-top: 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.testimonials-section .slick-dots li {
  margin: 0;
}
.testimonials-section .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: #d4d4d4;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-section .slick-dots li button::before {
  display: none;
}
.testimonials-section .slick-dots li.slick-active button {
  background: #C4A747;
  border-radius: 10px;
}

.gallery-section {
  padding: 0;
  margin: 0;
  background: white;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.gallery-section .gallery-grid .gallery-item {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  cursor: pointer;
}
.gallery-section .gallery-grid .gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-section .gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-section .gallery-grid .gallery-item .gallery-overlay i {
  font-size: 60px;
  color: white;
  transition: transform 0.3s ease;
}
.gallery-section .gallery-grid .gallery-item.video-item .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.3);
}
.gallery-section .gallery-grid .gallery-item.video-item .gallery-overlay i {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.gallery-section .gallery-grid .gallery-item.video-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/*# sourceMappingURL=app.css.map */
