* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

.link-btn {
  text-align: center;
}
.link-btn a {
  background: #00b8d4;
  border-radius: 30px;
  height: 48px;
  padding: 13px 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
}

.section-header {
  text-align: center;
}
.section-header .section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
}
.section-header .section-subheading {
  font-size: 18px;
  font-weight: 400;
  padding-top: 16px;
  line-height: 24px;
  color: #4b5563;
}
@media (max-width: 767px) {
  .section-header .section-heading {
    font-size: 30px;
  }
  .section-header .section-subheading {
    font-size: 16px;
  }
}

.voit-popup {
  display: none;
  overflow-y: hidden;
}

/* Overlay styles */
.vp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Popup container */
.vp-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 896px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  z-index: 99999;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Image container */
.vp-image-container {
  width: 50%;
}
.vp-image-container img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
}

/* Content container */
.vp-content {
  width: 50%;
  padding: 25px 30px;
  position: relative;
}

/* Close button */
.vp-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #777;
}

/* Program label */
.vp-program-label {
  display: inline-block;
  padding: 3px 15px;
  background-color: #EFF6FF;
  color: #00B8D4;
  border: 1px solid #00B8D4;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

/* Heading */
.vp-heading {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

/* Subheading */
.vp-subheading {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Feature list */
.vp-feature-list {
  list-style: none;
  margin-bottom: 25px;
}

.vp-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.vp-feature-item img {
  margin-right: 10px;
}

.vp-feature-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 12px;
  margin-top: 2px;
  color: #00b8d4;
}

.vp-feature-text {
  font-size: 14px;
  font-weight: 400;
  color: #374151;
  line-height: 1.4;
}

.vp-price {
  font-weight: 700;
  margin-top: 5px;
}

.vp-highlight {
  color: #00b8d4;
  font-weight: bold;
}

/* Slots available */
.vp-slots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background-color: #DBEAFE;
  border-radius: 5px;
  margin-bottom: 20px;
  color: #00A0B8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.vp-slots img {
  margin-right: 5px;
}

/* Book now button */
.vp-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #06B6D4;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .voit-popup {
    overflow-y: scroll;
  }
  .vp-popup {
    flex-direction: column;
  }
  .vp-image-container {
    display: none;
    min-width: 100%;
    width: 100%;
  }
  .vp-image-container img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px 10px 0 0;
  }
  .vp-close img {
    width: 30px;
  }
  .vp-content {
    padding: 20px;
    width: 100%;
  }
  .vp-heading {
    font-size: 16px;
  }
  .vp-feature-text {
    font-size: 12px;
  }
  .vp-feature-item {
    margin-bottom: 7px;
  }
}
/*hero section css**/
.hero-sec {
  background: url(../../images/home-bg.png) no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.hero-sec .hero-content {
  text-align: center;
  padding: 0 15px;
}
.hero-sec p {
  font-size: 16px;
  font-weight: 400;
}
.hero-sec p i {
  color: #00b8d4;
}
.hero-sec h1 {
  font-size: 72px;
  font-weight: 700;
  padding: 18px 0 18px;
  color: #ffffff;
}
.hero-sec h2 {
  font-size: 48px;
  font-weight: 700;
  color: #00b8d4;
}
.hero-sec h4 {
  font-size: 20px;
  font-weight: 400;
  padding-top: 24px;
  color: #ffffff;
}
.hero-sec .hero-btm-txt {
  font-size: 14px;
  font-weight: 400;
  padding-top: 10px;
}
.hero-sec .link-btn {
  padding: 32px 0 16px;
  display: flex;
  justify-content: center;
}
.hero-sec .link-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
}
@media (max-width: 767px) {
  .hero-sec {
    height: 70vh;
  }
  .hero-sec h1 {
    font-size: 30px;
    font-weight: 700;
    padding: 14px 0 15px;
  }
  .hero-sec h2 {
    font-size: 22px;
  }
  .hero-sec h4 {
    font-size: 16px;
  }
}

.video-sec video {
  width: 100%;
  display: block;
}
.video-sec .vc-video-wrapper {
  position: relative;
}
.video-sec .vc-play-pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(220, 220, 220, 0.6);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  padding: 15px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  -webkit-backdrop-filter: blured(10px);
          backdrop-filter: blured(10px);
}
.video-sec .vc-play-pause-btn.hidden {
  display: none;
}

/**premium sec***/
.premium-sec {
  /**/
}
.premium-sec .premium-top {
  max-width: 706px;
  margin: 0 auto;
  border-radius: 23px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #ffffff;
  margin-top: -20px;
  position: relative;
  top: -15px;
  z-index: 1;
}
.premium-sec .premium-topbox {
  background: #00b8d4;
  box-shadow: 0px 6.45px 9.67px -1.93px rgba(0, 0, 0, 0.1019607843);
  text-align: center;
  padding: 20px 0;
  border-radius: 10px;
  color: #ffffff;
}
.premium-sec .premium-topbox .premium-topbox-number {
  font-size: 22px;
  font-weight: 700;
  padding: 8px 0;
}
.premium-sec .premium-topbox .premium-topbox-subtxt {
  font-size: 12px;
  font-weight: 400;
}
.premium-sec .premium-topbox .premium-topbox-btmtxt {
  font-size: 14px;
  font-weight: 400;
  padding-top: 8px;
  line-height: 16px;
}
.premium-sec .premium-btm {
  padding-top: 50px;
}
.premium-sec .premium-btm-header {
  text-align: center;
}
.premium-sec .premium-btm-header h2 {
  color: #00b8d4;
  font-size: 48px;
  font-weight: 700;
}
.premium-sec .premium-btm-header h3 {
  color: #333333;
  font-size: 30px;
  font-weight: 700;
  padding-top: 12px;
}
.premium-sec .premium-btm-header h3 span {
  color: #00b8d4;
}
.premium-sec .premium-btm-header p {
  font-weight: 400;
  color: #4b5563;
  font-size: 18px;
  padding-top: 15px;
  margin-bottom: 0;
}
.premium-sec .premium-btm-header p img {
  margin-right: 10px;
  vertical-align: middle;
}
.premium-sec .premium-btm-header p span {
  font-size: 16px;
}
.premium-sec .il-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 896px;
  margin: 0px auto;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
  margin-top: 40px;
}
.premium-sec .il-left {
  flex: 1 1 50%;
  min-width: 300px;
  background-color: #fff;
}
.premium-sec .il-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.premium-sec .il-right {
  flex: 1 1 50%;
  min-width: 300px;
  background-color: #59c4e1;
  color: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.premium-sec .il-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.premium-sec .il-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.premium-sec .il-timer-box {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 30px;
  padding-bottom: 50px;
}
.premium-sec .il-timer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  margin-bottom: 18px;
}
.premium-sec .il-time {
  font-size: 40px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.premium-sec .il-time-box {
  background: white;
  color: #00b8d4;
  border-radius: 10px;
  width: 80px;
  height: 80px;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.premium-sec .il-btn {
  padding: 15px;
  background: white;
  color: #00a0b8;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
}
.premium-sec .il-btn:hover {
  background: #e0f7ff;
}
@media (max-width: 767px) {
  .premium-sec {
    padding: 0 15px;
  }
  .premium-sec .premium-btm {
    padding-top: 30px;
  }
  .premium-sec .premium-top {
    grid-template-columns: 1fr;
    position: static;
    margin-top: 30px;
  }
  .premium-sec .premium-btm-header h2 {
    font-size: 35px;
  }
  .premium-sec .premium-btm-header h3 {
    font-size: 25px;
  }
  .premium-sec .il-container {
    flex-direction: column;
  }
  .premium-sec .il-right {
    padding: 20px;
  }
  .premium-sec .il-time {
    font-size: 30px;
  }
}

/**new smile css**/
.smile-sec {
  background: linear-gradient(90deg, #E6F8FA 0%, #F9FAFB 100%);
  margin-top: 80px;
  padding: 80px 15px;
  /* Container */
  /* Main section */
  /* Left content */
  /* Right image */
  /* Heading */
  /* Underline */
  /* Intro text */
  /* Highlight box */
  /* Checklist */
  /* Price section */
  /* Description paragraphs */
  /* Button */
  /* Responsive styles */
}
.smile-sec .ns-container {
  max-width: 1152px;
  margin: 0 auto;
  margin-top: 40px;
  background: #ffffff;
  border-radius: 16px;
}
.smile-sec .ns-main-section {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.smile-sec .ns-left-content {
  flex: 1;
  padding: 48px;
  max-width: 50%;
}
.smile-sec .ns-right-image {
  flex: 1;
  max-width: 50%;
}
.smile-sec .ns-right-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 16px 16px 0;
}
.smile-sec .ns-heading {
  font-size: 24px;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 700;
}
.smile-sec .ns-underline {
  display: block;
  width: 90px;
  height: 4px;
  background-color: #00B8D4;
  margin-bottom: 25px;
}
.smile-sec .ns-intro-text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 30px;
  line-height: 24px;
}
.smile-sec .ns-highlight-box {
  background-color: #E6F8FA;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
}
.smile-sec .ns-highlight-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 15px;
}
.smile-sec .ns-discount {
  color: #4BADC7;
  font-weight: 700;
}
.smile-sec .ns-checklist {
  list-style: none;
  margin-top: 15px;
}
.smile-sec .ns-checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}
.smile-sec .ns-price {
  font-size: 30px;
  font-weight: 700;
  color: #00B8D4;
  margin-bottom: 5px;
}
.smile-sec .ns-price-description {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 25px;
}
.smile-sec .ns-description {
  font-size: 16px;
  color: #4B5563;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.7;
}
.smile-sec .ns-button {
  display: inline-block;
  background-color: #00B8D4;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}
.smile-sec .ns-button:hover {
  background-color: #3a98b0;
}
@media (max-width: 992px) {
  .smile-sec .ns-main-section {
    flex-direction: column-reverse;
  }
  .smile-sec .ns-right-image {
    max-width: 100%;
  }
  .smile-sec .ns-right-image img {
    border-radius: 16px;
  }
  .smile-sec .ns-heading {
    font-size: 28px;
  }
  .smile-sec .ns-price {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .smile-sec .ns-left-content {
    max-width: 100%;
    padding: 0px;
    padding-top: 30px;
  }
  .smile-sec .ns-heading {
    font-size: 24px;
  }
  .smile-sec .ns-intro-text,
  .smile-sec .ns-highlight-text,
  .smile-sec .ns-checklist-item,
  .smile-sec .ns-price-description {
    font-size: 16px;
  }
  .smile-sec .ns-price {
    font-size: 32px;
  }
  .smile-sec .ns-description {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .smile-sec .ns-container {
    padding: 15px;
  }
  .smile-sec .ns-heading {
    font-size: 22px;
  }
  .smile-sec .ns-button {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/**transforming css ***/
.transform-sec {
  padding-top: 80px;
}
.transform-sec .transform-container {
  max-width: 1024px;
  margin: 40px auto;
  display: flex;
}
.transform-sec .transform-container .transform-box {
  margin: 0 10px;
}
.transform-sec .transform-container .transform-box img {
  width: 100%;
}
.transform-sec .slick-dots li button:before {
  content: "";
  background: #D1D5DB;
  width: 20px;
  height: 6px;
  border-radius: 10px;
}
.transform-sec .slick-dots li.slick-active button:before {
  background: #00B8D4;
}
.transform-sec .slick-prev {
  left: -10px;
  z-index: 9;
}
.transform-sec .slick-prev:before {
  content: url(../images/prev-icon.svg);
}
.transform-sec .slick-next {
  right: 25px;
  z-index: 9;
}
.transform-sec .slick-next:before {
  content: url(../images/next-icon.svg);
}

/*Embark css ***/
.embark-sec {
  padding-top: 100px;
  /* Container styles */
  /* Video thumbnail container */
  /* Thumbnail image */
  /* Play button */
  /* Video popup */
  /* Close button */
  /* Responsive adjustments */
}
.embark-sec .embark-container {
  max-width: 905px;
  margin: 0 auto;
}
.embark-sec .embark-header {
  text-align: center;
}
.embark-sec .embark-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
}
.embark-sec .embark-header h5 {
  font-size: 18px;
  font-weight: 500;
  color: #00B8D4;
  line-height: 28px;
  padding: 16px 0 8px;
}
.embark-sec .embark-header p {
  color: #4B5563;
  font-size: 16px;
  font-weight: 400;
  padding: 0 60px;
  line-height: 24px;
}
.embark-sec .ev-container {
  width: 100%;
  padding-top: 55px;
}
.embark-sec .ev-video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.embark-sec .ev-thumbnail-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.embark-sec .ev-video-thumbnail:hover .ev-thumbnail-img {
  transform: scale(1.02);
}
.embark-sec .ev-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.embark-sec .ev-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 5px;
}
.embark-sec .ev-video-thumbnail:hover .ev-play-button {
  background-color: rgba(255, 255, 255, 0.5);
}
.embark-sec .ev-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.embark-sec .ev-popup-container {
  position: relative;
  width: 90%;
  max-width: 900px;
}
.embark-sec .ev-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}
.embark-sec .ev-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.embark-sec .ev-close-button {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.embark-sec .ev-close-button::before,
.embark-sec .ev-close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
}
.embark-sec .ev-close-button::before {
  transform: rotate(45deg);
}
.embark-sec .ev-close-button::after {
  transform: rotate(-45deg);
}
.embark-sec .embark-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.embark-sec .embark-link a {
  background: #00B8D4;
  color: #ffffff;
  width: 250px;
  height: 48px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .embark-sec {
    padding-top: 50px;
  }
  .embark-sec .embark-header {
    padding-bottom: 40px;
  }
  .embark-sec .embark-header h2 {
    font-size: 30px;
  }
  .embark-sec .ev-container {
    padding: 0 15px;
  }
  .embark-sec .ev-play-button {
    width: 60px;
    height: 60px;
  }
  .embark-sec .ev-play-icon {
    border-width: 12px 0 12px 20px;
  }
}
@media (max-width: 480px) {
  .embark-sec .ev-play-button {
    width: 50px;
    height: 50px;
  }
  .embark-sec .ev-play-icon {
    border-width: 10px 0 10px 16px;
  }
}

/*voit audio css**/
.voit-audio {
  padding-top: 100px;
  padding-bottom: 70px;
}
.voit-audio .voit-audio-container {
  max-width: 896px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .voit-audio {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .voit-audio .voit-audio-container {
    padding: 0 15px;
  }
}

/**Finance sec**/
.finance-sec {
  padding-top: 80px;
  background: #F9FAFB;
}
.finance-sec .section-header .section-subheading {
  color: #00B8D4;
  font-size: 20px;
  font-weight: 700;
}
.finance-sec .fs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1024px;
  margin: 0 auto;
  margin-top: 100px;
}
.finance-sec .fs-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.finance-sec .fs-card-left .fs-card-header {
  background-color: #eaf8fc;
  padding: 20px;
  border-radius: 16px 16px 0 0;
}
.finance-sec .fs-card-left .fs-card-header .fs-title {
  color: #00B8D4;
}
.finance-sec .fs-card-left .fs-card-header .fs-price {
  color: #333333;
}
.finance-sec .fs-card-right {
  border: 1px solid #00B8D4;
}
.finance-sec .fs-card-right .fs-card-header {
  background-color: #53bcd4;
  color: white;
  padding: 20px;
  border-radius: 16px 16px 0 0;
}
.finance-sec .fs-title {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.finance-sec .fs-price {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}
.finance-sec .fs-price-note {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.finance-sec .fs-card-btm {
  padding: 20px 30px;
}
.finance-sec .fs-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.finance-sec .fs-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  color: #333333;
}
.finance-sec .fs-list li img {
  margin-right: 10px;
}
.finance-sec .fs-link {
  color: #5b2a86;
  text-decoration: underline;
  cursor: pointer;
}
.finance-sec .fs-button {
  background-color: #00B8D4;
  color: white;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  margin-top: auto;
  display: block;
  text-decoration: none;
}
.finance-sec .fs-button:hover {
  background-color: #34a1b8;
}
@media (max-width: 768px) {
  .finance-sec {
    padding: 0 15px;
  }
  .finance-sec .fs-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .finance-sec .fs-card {
    width: 100%;
  }
}

/**finance option css**/
.finance-option-sec {
  padding-top: 150px;
  background: #F9FAFB;
}
.finance-option-sec .fo-container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  max-width: 1152px;
  margin: 0 auto;
  margin-top: 20px;
}
.finance-option-sec .fo-left, .finance-option-sec .fo-right {
  flex: 1;
  padding: 0;
}
.finance-option-sec .fo-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
}
.finance-option-sec .fo-right {
  padding: 30px;
}
.finance-option-sec .fo-right h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333333;
}
.finance-option-sec .fo-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}
.finance-option-sec .fo-feature-icon {
  margin-right: 10px;
}
.finance-option-sec .fo-feature-text {
  flex: 1;
}
.finance-option-sec .fo-feature-text h4 {
  margin-bottom: 5px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
}
.finance-option-sec .fo-feature-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4B5563;
}
.finance-option-sec .fo-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #00B8D4;
  color: white;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}
.finance-option-sec .fo-button:hover {
  background-color: #009ec1;
}
@media (max-width: 768px) {
  .finance-option-sec {
    padding: 0 15px;
    padding-top: 50px;
  }
  .finance-option-sec .fo-left, .finance-option-sec .fo-right {
    flex: 100%;
  }
  .finance-option-sec .fo-right {
    padding: 0;
    padding-top: 20px;
  }
  .finance-option-sec .fo-button {
    display: block;
    text-align: center;
  }
}

/**dental implants***/
.dental-implants {
  padding-bottom: 80px;
}
.dental-implants .fo-container {
  flex-direction: row-reverse;
  align-items: center;
}

/*meet doctor css**/
.meet-doctor {
  background: #ffffff;
}
.meet-doctor .fo-container {
  padding-top: 60px;
}
.meet-doctor .fo-right {
  /* Underline */
}
.meet-doctor .fo-right h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  padding-bottom: 20px;
}
.meet-doctor .fo-right .md-underline {
  display: block;
  width: 64px;
  height: 4px;
  background-color: #00B8D4;
  margin-bottom: 25px;
}
.meet-doctor .fo-right .fo-feature p {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .meet-doctor .fo-container {
    padding-top: 30px;
  }
}

.contact-us {
  padding-top: 150px;
}

.faq-sec {
  padding-top: 150px;
  /* Responsive styles */
}
.faq-sec .fq-container {
  width: 100%;
  max-width: 768px;
  margin: 40px auto;
  padding: 0 15px;
}
.faq-sec .fq-accordion {
  list-style: none;
}
.faq-sec .fq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.faq-sec .fq-question {
  position: relative;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-sec .fq-question:hover {
  background-color: #f9f9f9;
}
.faq-sec .fq-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.faq-sec .fq-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #666;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-sec .fq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: all 0.3s ease;
  line-height: 1.6;
  color: #555;
}
.faq-sec .fq-answer ul {
  list-style: disc;
  padding-left: 20px;
}
.faq-sec .fq-item.fq-active .fq-question {
  border-bottom: 1px solid #eee;
}
.faq-sec .fq-item.fq-active .fq-arrow {
  transform: rotate(180deg);
}
.faq-sec .fq-item.fq-active .fq-answer {
  max-height: 1010px;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .faq-sec .fq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .faq-sec .fq-item.fq-active .fq-answer {
    padding: 15px 20px;
  }
}
@media (max-width: 480px) {
  .faq-sec .fq-question {
    padding: 12px 15px;
    font-size: 15px;
  }
  .faq-sec .fq-item.fq-active .fq-answer {
    padding: 12px 15px;
  }
}

.link-btn {
  text-align: center;
}
.link-btn a {
  background: #00b8d4;
  border-radius: 30px;
  height: 48px;
  padding: 13px 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
}

.section-header {
  text-align: center;
}
.section-header .section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
}
.section-header .section-subheading {
  font-size: 18px;
  font-weight: 400;
  padding-top: 16px;
  line-height: 24px;
  color: #4b5563;
}
@media (max-width: 767px) {
  .section-header .section-heading {
    font-size: 30px;
  }
  .section-header .section-subheading {
    font-size: 16px;
  }
}

.smile-gallery-page {
  padding: 100px 0;
}
.smile-gallery-page .smile-gallery-boxes {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.smile-gallery-page .smile-gallery-box img {
  width: 100%;
}
@media (max-width: 767px) {
  .smile-gallery-page {
    grid-template-columns: 1fr;
  }
}

/*ready transfrom css ***/
.ready-transform-sec {
  padding-bottom: 50px;
  /* Responsive styles */
}
.ready-transform-sec .rt-hero-section {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #E6F8FA 0%, #F9FAFB 100%);
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.ready-transform-sec .rt-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ready-transform-sec .rt-content {
  flex: 1;
  padding-left: 40px;
  max-width: 500px;
  z-index: 2;
}
.ready-transform-sec .rt-heading {
  font-size: 48px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
.ready-transform-sec .rt-subtext {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}
.ready-transform-sec .rt-button {
  display: inline-block;
  background-color: #00B8D4;
  color: white;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.ready-transform-sec .rt-button:hover {
  background-color: #0095a8;
}
.ready-transform-sec .rt-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}
.ready-transform-sec .rt-hero-image {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .ready-transform-sec .rt-container {
    flex-direction: column;
    text-align: center;
  }
  .ready-transform-sec .rt-content {
    max-width: 100%;
    margin-bottom: 30px;
    padding: 20px;
  }
  .ready-transform-sec .rt-image-container {
    justify-content: center;
    width: 100%;
  }
  .ready-transform-sec .rt-hero-image {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .ready-transform-sec .rt-heading {
    font-size: 2rem;
  }
  .ready-transform-sec .rt-subtext {
    font-size: 0.9rem;
  }
  .ready-transform-sec .rt-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.sg-show-more {
  transition: 0.5s ease;
}

.gallery-show-less {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.gallery-show-less button {
  border: 1px solid #00B8D4;
  border-radius: 6px;
  height: 44px;
  padding: 15px 20px;
  color: #00B8D4;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.gallery-show-less button:hover {
  background: #f0f0f0;
}/*# sourceMappingURL=home.css.map */