/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  transition: 0.5s;
  z-index: 99;
}
.call-icon {
  position: fixed;
  left: 10px;
  bottom: 10px;
  transition: 0.5s;
  z-index: 99;
}
/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.btn.btn-dark {
  color: var(--bs-white);
  border: none;
}

.btn.btn-dark:hover {
  color: var(--bs-primary);
  background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: all 0.4s ease;
}

.nav-bar.scrolled {
  position: fixed;
  top: 0;
  background: #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.nav-bar.scrolled .nav-link.active {
  color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  letter-spacing: 1px;
  color: var(--bs-light);
  font-size: 17px;
  font-weight: 300;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-light);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 10px;
    background: white;
    color: black;
    border-radius: 10px;
    margin: 1px;
  }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

@media (min-width: 1200px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    height: auto;
  }
}

@media (max-width: 1199px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    height: 800px;
  }
}

.header-carousel .owl-nav .owl-prev {
  display: none;
}

.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -60px;
  right: 50%;
  transform: translateY(-50%);
  margin-right: -60px;
  border-radius: 60px;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: carousel-next-btn;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  transition: 1s;
}

@keyframes carousel-next-btn {
  0% {
    margin-top: 35%;
  }
  50% {
    margin-bottom: 70%;
  }
  100% {
    margin-top: 35%;
  }
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.carousel-caption .ticket-form {
  background: rgba(119, 119, 119, 0.4);
  border-radius: 10px;
  border: 2px solid var(--bs-primary);
}

.header-carousel .header-carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes image-zoom {
  0% {
    width: 100%;
    height: 100%;
  }

  25% {
    width: 115%;
    height: 115%;
  }

  50% {
    width: 130%;
    height: 130%;
  }

  75% {
    width: 120%;
    height: 120%;
  }

  100% {
    width: 100%;
    height: 100%;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
  position: relative;
  border-radius: 10px;
  background: transparent;
}

.feature-item .feature-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  margin-top: 0;
  margin-right: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
  position: relative;
  z-index: 5;
}
/*** Feature End ***/

/*** Service Start ***/
.service {
  position: relative;
  overflow: hidden;
  background-image: url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.service .service-section {
  position: relative;
  z-index: 5;
}

.service .service-days {
  border-radius: 10px;
  background: var(--bs-white);
}

.service .service-item {
  position: relative;
  height: 100%;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-white);
  z-index: 1;
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 2;
}

.service .service-item:hover:after {
  height: 100%;
}

.service .service-item i {
  color: var(--bs-primary);
  transition: 0.5s;
}

.service .service-item:hover i {
  color: var(--bs-white);
}

.service .service-item .service-content {
  position: relative;
  z-index: 3;
}

.service .service-item .service-content p {
  transition: 0.5s;
}

.service .service-item:hover .service-content p {
  color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
  transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
  color: var(--bs-white);
}
/*** Service End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: var(--bs-white);
  z-index: 5;
}

.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  background: var(--bs-primary);
  border-radius: 10px;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-dark);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item:hover:after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.team .team-item .team-content .team-icon {
  background: var(--bs-light);
  border-radius: 10px;
  display: flex;
  display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-primary);
}

.team .team-item .team-content p {
  color: var(--bs-white);
  transition: 0.5s;
}

.team .team-item:hover .team-content p {
  color: var(--bs-body);
}
/*** Team End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}

.footer .footer-item .opening-date {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-item .opening-date .opening-clock {
  display: flex;
  align-items: center;
  line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}
/*** copyright end ***/
.hero-text-content {
  max-width: 850px;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  color: #fff;
}

.lock-icon {
  color: #00ff84;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  line-height: 1.4;
  opacity: 0.9;
}

.rating {
  color: #ffc107;
  font-weight: 500;
}
.stats {
  padding: 60px 0;
  background: #1c8f4a;
  color: #fff;
}
.feature {
  background: #fff;
}

.feature-title {
  font-size: 38px;
  font-weight: 700;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-weight: bolder; 
}

.feature-subtitle {
  font-size: 16px;
  color: #777;
}

.feature-box {
  padding: 20px;
}

.feature-number {
  font-size: 64px;
  font-weight: 700;
  color: #6bdc2c; /* green highlight */
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.feature-box h5 {
  font-size: 19.2px;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
}

.feature-box p {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-title {
    font-size: 25px;
  }

  .feature-number {
    font-size: 38px;
  }
}
/* Section Title */
.celebrity-title {
  font-size: 38px;
  font-weight: 700;
  color: #333;
}
@media (max-width: 768px) {
  .celebrity-title {
    font-size: 25px;
  }
  
.green-card h2 {
    font-size: 35px;
}
}

.celebrity-subtitle {
  font-size: 16px;
  color: #777;
}

/* Card Base */
.celebrity-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

/* Image Cards */
.celebrity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Label */
.card-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
}

/* Card Sizes */
.large-card {
  min-height: 420px;
}

.small-card {
  padding: 16px;
  border-radius: 20px;
}

/* Dark Card */
.dark-card {
  background: #2b2b2b;
  color: #fff;
}

.dark-card h5 {
  font-size: 18px;
  margin-top: 15px;
}

/* Green Card */
.green-card {
  background: #7ee35b;
  color: #000;
}

.green-card h2 {
  font-size: 48px;
  font-weight: 700;
}

.green-card h6 {
  font-size: 18px;
  font-weight: 600;
}

.green-card p {
  font-size: 14px;
  margin-top: 10px;
}

/* Respons*
/* Doctor Section */
.doctor-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.doctor-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}
.doctor-title .spppp {
  font-size: 46px;
}
.doctor-title span strong {
  color: #6bdc2c;
}

.doctor-subtitle {
  font-weight: 600;
  color: #444;
  margin: 15px 0;
}

.doctor-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* Philosophy Boxes */
.philosophy-box {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  height: 100%;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
}

.philosophy-box:hover {
  background: #6bdc2c;
  color: #fff;
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  .doctor-title {
    font-size: 30px;
  }
}
.reason-card {
  height: 350px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.reason-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.reason-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.reason-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.reason-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 9px 0px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.stars {
  color: #fbbc04;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.tag {
  display: inline-block;
  background: #39d102;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

.user {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #d9a7ff;
  margin-right: 12px;
  border: 2px solid #00ff84;
}

.user h6 {
  margin: 0;
  font-weight: 600;
}

.user small {
  color: #888;
}
.stats-wrapper {
  background: #39d102;
  border-radius: 18px;
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-wrapper h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 5px;
}

.stats-wrapper p {
  color: #eaffea;
  font-size: 15px;
  margin: 0;
}
.faq-wrapper {
  max-width: 900px;
}

.accordion-item {
  border: none;
  border-radius: 14px;
  margin-bottom: 15px;
  background: #f9fef9;
}

.accordion-button {
  border-radius: 14px;
  font-weight: 600;
  padding: 18px 20px;
  background: #ffffff;
}

.accordion-button:not(.collapsed) {
  background: #ffffff;
  color: #000;
  box-shadow: none;
}

.accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.accordion-button:not(.collapsed)::after {
  content: "−";
}

.accordion-body {
  padding: 0 20px 20px;
  color: #555;
  font-size: 15px;
}
.consultation-section {
  padding: 0px 15px;
  background: radial-gradient(circle at center, #133d1c, #0b0d0c 60%);
  color: #ffffff;
  text-align: center;
}

.badge-step {
  background: #29e44d;
  color: #000;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.consultation-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.consultation-section p.sub-text {
  color: #cfd6cf;
  max-width: 650px;
  margin: 0 auto 25px;
  font-size: 16px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d9fbe3;
}

.feature-item i {
  color: #000000;
  font-size: 16px;
  border: 1px solid green;
  background: #29e44d;
  border-radius: 50%;
  padding: 5px 10px;
}

.consult-card {
  background: #ffffff;
  color: #000;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease;
  height: 100%;
}

.consult-card:hover {
  transform: translateY(-6px);
}

.consult-icon {
  width: 55px;
  height: 55px;
  background: #29e44d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
  color: #000;
}

.consult-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.consult-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #29e44d;
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.btn-book {
  background: #29e44d;
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
  transition: background 0.3s ease;
  font-size: 14px;
}

.btn-book:hover {
  background: #22c63f;
  color: #000;
}
.btn-book1 {
  background: #29e44d;
  color: #000;
  padding: 4px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
  transition: background 0.3s ease;
  font-size: 14px;
}

.btn-book1:hover {
  background: #22c63f;
  color: #000;
}
.note-text {
  font-size: 12px;
  color: #b5bdb6;
  margin-top: 10px;
}

.footer-call {
  margin-top: 10px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #cfd6cf;
}

.footer-call a {
  color: #29e44d;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
.site-footer {
  background: radial-gradient(circle at center, #133d1c, #0b0d0c 70%);
  color: #cfd6cf;
  font-size: 14px;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #29e44d;
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer-text {
  color: #cfd6cf;
  line-height: 1.7;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #29e44d;
  color: #000;
  border-radius: 50%;
  margin-right: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #22c63f;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.footer-list li::before {
  content: "•";
  color: #29e44d;
  position: absolute;
  left: 0;
  top: 0;
}

.payment-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  max-width: 280px;
}

.payment-box img {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 12px;
  color: #aab3ab;
}
.consultation-card {
  max-width: 420px;
  padding: 30px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid #39ff14;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.25);
}

.glass-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #39ff14;
  box-shadow: 0 0 0 0.15rem rgba(57, 255, 20, 0.25);
  color: #fff;
}

.neon-btn {
  background: #39ff14;
  color: #000;
  font-weight: 600;
  padding: 14px;
  border-radius: 14px;
  border: none;
  transition: all 0.3s ease;
}

.neon-btn:hover {
  background: #2ee60f;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}
.text-muted {
  font-size: smaller;
  color: white;
}
@media (max-width: 991px) {
  .mobilenone {
    display: none;
  }
 
}
.consultation-card1 {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 2px solid #39ff14;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.25);
}

.glass-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.glass-input:focus {
background: rgb(0 0 0 / 44%);
    backdrop-filter: blur(14px);
    border-color: #39ff14;
    box-shadow: 0 0 0 0.15rem rgba(57, 255, 20, 0.25);
    color: #ffffff;
}

.neon-btn {
  background: #39ff14;
  color: #000;
  font-weight: 600;
  padding: 14px;
  border-radius: 14px;
  border: none;
  transition: 0.3s ease;
}

.neon-btn:hover {
  background: #2ee60f;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}









.consultationForm input,
.consultationForm select,
.consultationForm textarea {
    margin-bottom: 16px;
    padding: 12px 14px;
    color: #ffffff;
}

.consultationForm .step {
    padding: 10px 0;
}



/* Completely disable dragging */
.header-carousel .owl-stage,
.header-carousel .owl-item {
    pointer-events: none;
}

/* Re-enable interaction for form elements */
.header-carousel input,
.header-carousel select,
.header-carousel textarea,
.header-carousel button {
    pointer-events: auto;
}

.header-carousel {
    cursor: default !important;
}

.header-carousel .owl-stage {
    cursor: default !important;
}



