/* ===== FONT DECLARATIONS ===== */

/* Google Font - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Local Font - IvyMode */
@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-Thin.eot');
  src: url('../fonts/IvyMode-Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-Thin.woff2') format('woff2'),
    url('../fonts/IvyMode-Thin.woff') format('woff'),
    url('../fonts/IvyMode-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-ThinItalic.eot');
  src: url('../fonts/IvyMode-ThinItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-ThinItalic.woff2') format('woff2'),
    url('../fonts/IvyMode-ThinItalic.woff') format('woff'),
    url('../fonts/IvyMode-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-Light.eot');
  src: url('../fonts/IvyMode-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-Light.woff2') format('woff2'),
    url('../fonts/IvyMode-Light.woff') format('woff'),
    url('../fonts/IvyMode-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-LightItalic.eot');
  src: url('../fonts/IvyMode-LightItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-LightItalic.woff2') format('woff2'),
    url('../fonts/IvyMode-LightItalic.woff') format('woff'),
    url('../fonts/IvyMode-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-Regular.eot');
  src: url('../fonts/IvyMode-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-Regular.woff2') format('woff2'),
    url('../fonts/IvyMode-Regular.woff') format('woff'),
    url('../fonts/IvyMode-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-Italic.eot');
  src: url('../fonts/IvyMode-Italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-Italic.woff2') format('woff2'),
    url('../fonts/IvyMode-Italic.woff') format('woff'),
    url('../fonts/IvyMode-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-SemiBold.eot');
  src: url('../fonts/IvyMode-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-SemiBold.woff2') format('woff2'),
    url('../fonts/IvyMode-SemiBold.woff') format('woff'),
    url('../fonts/IvyMode-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-SemiBoldItalic.eot');
  src: url('../fonts/IvyMode-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-SemiBoldItalic.woff2') format('woff2'),
    url('../fonts/IvyMode-SemiBoldItalic.woff') format('woff'),
    url('../fonts/IvyMode-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-Bold.eot');
  src: url('../fonts/IvyMode-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-Bold.woff2') format('woff2'),
    url('../fonts/IvyMode-Bold.woff') format('woff'),
    url('../fonts/IvyMode-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyMode';
  src: url('../fonts/IvyMode-BoldItalic.eot');
  src: url('../fonts/IvyMode-BoldItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/IvyMode-BoldItalic.woff2') format('woff2'),
    url('../fonts/IvyMode-BoldItalic.woff') format('woff'),
    url('../fonts/IvyMode-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ===== LOADER STYLES ===== */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.loader-tooth {
  position: relative;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-tooth svg {
  filter: drop-shadow(0 0 10px rgba(73, 172, 136, 0.3));
}

.loader-text {
  font-family: 'IvyMode', serif;
  font-size: 18px;
  color: var(--primary-green);
  letter-spacing: 1px;
  animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

/* ===== CSS RESET ===== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary-green: #49AC88;
  --secondary-green: #54C79D;
  --text-dark: #323232;
  --white: #FFFFFF;
  --black: #333333;
  --fade-black: #5F5F5F;
  --light-gray: #F8F9FA;
  --border-gray: #E5E5E5;
}

/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'IvyMode', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-green);
}


/* ===== LAYOUT UTILITIES ===== */

section {
  height: max-content;
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 16px;
}

.container-fluid {
  width: 100%;
  padding: 0 16px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}


.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-ivy {
  font-family: 'IvyMode', serif;
}


/* ===== UTILITY CLASSES ===== */

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.h-100 {
  height: 100%;
}

.h-75 {
  height: 75%;
}

.h-50 {
  height: 50%;
}

.h-25 {
  height: 25%;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-sticky {
  position: sticky;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.transition {
  transition: all 0.3s ease;
}

.transition-fast {
  transition: all 0.15s ease;
}

.transition-slow {
  transition: all 0.5s ease;
}

/* ===== BUTTON RIPPLE EFFECT ===== */

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== HEADER STYLES ===== */

.header {

  padding: 20px 0;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0 0 60px 60px;
  top: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header.scrolled .header-content {
  align-items: center;
  padding: 0 50px;
}


.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 60px 0 100px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  height: 50px;
  width: auto;
}



.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--secondary-green);
  padding: 6px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
  padding-right: 10px;
}

.phone-number:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(73, 172, 136, 0.3);
  color: var(--white);
}

.phone-number:hover svg circle {
  fill: var(--white);
}

.phone-number:hover svg path {
  fill: var(--secondary-green);
}




/* ===== HERO SECTION ===== */

.hero-section {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 0 50px;
  padding-bottom: 80px;
  margin-top: 60px;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}



.hero-banner-img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  object-position: center;
  border-radius: 40px;
}

.first-hero-banner {
  height: fit-content;
}

.hero-text {
  position: absolute;
  top: 18%;
  left: 5%;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 40px;
}


@media (max-width: 1570px) {
  .hero-text-content {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
  }
}


/* .hero-text-content {
    max-width: 500px;
} */

.hero-small-text {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 60px;
  font-weight: 600;
  max-width: 340px;
}

.hero-big-text-content {
  font-family: 'IvyMode', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--black);
}

.hero-button {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-button-link {
  background: var(--primary-green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(73, 172, 136, 0.3);
}

.hero-button-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

/* .hero-button-link:hover::before {
  left: 100%;
} */

.hero-button-link::before {
  animation: slideLeftRight 2s ease infinite;
}

@keyframes slideLeftRight {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

/* .hero-button-link:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(73, 172, 136, 0.4);
    color: var(--white);
} */

.hero-button a:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  /* color: var(--text-dark); */
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--primary-green);
  border-radius: 25px;
  color: #fff;
  /* padding: 5px 10px; */
}

.hero-button a:last-child svg {
  transition: all 0.3s ease;
}

/* 
.hero-button a:last-child:hover svg {
    transform: scale(1.1);
}

.hero-button a:last-child:hover svg path:first-child {
    fill: var(--primary-green);
}

.hero-button a:last-child:hover svg path:last-child {
    stroke: var(--white);
} */

.hero-bottom-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  opacity: 0.8;
}

.bottom-circle-img {
  width: 200px;
  height: auto;

}

.similartext {
  position: absolute;
  top: 25%;
  right: 3.5%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  width: 25%;
}

.similar-text-content {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  max-width: 300px;
  text-align: center;
}

.similar-text-content.mobile {
  display: none;
}

/* ===== SWIPER STYLES ===== */

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide {
  position: relative;
}

.heroSwiper .swiper-pagination {
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  position: absolute;
  width: auto;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  left: auto;
  z-index: 4;
}

.heroSwiper .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.heroSwiper .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid var(--black);

}

.heroSwiper .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
}

.heroSwiper .swiper-pagination-bullet:hover:not(.swiper-pagination-bullet-active) {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.2);
}

/* ===== RESPONSIVE DESIGN of header and hero section ===== */

@media screen and (min-width: 1600px) {
  .header {
    top: 86px;
  }

  .brand-logo {
    height: auto;
  }

  .phone-number {
    font-size: 18px;
    line-height: 26px;
    padding: 5px;
    width: 220px;
    height: 52px;
  }

  .bottom-circle-img {
    width: 215px;
  }

  .hero-text {
    padding: 0 50px;
  }

  .similartext {
    right: 5%;
  }

  .header-content {
    padding: 0 80px 0 100px;
  }

  .hero-section {
    padding: 0 60px;
    padding-bottom: 80px;
  }

  .hero-text-content {
    margin-top: 40px;
  }

  .hero-button-link {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    padding: 0;
  }

  .bottom-circle-img {
    width: 100%;
  }

  .hero-bottom-text {
    padding: 10px 10px;
    font-size: 16px;
    position: relative;
    font-weight: 500;
    color: var(--fade-black);
  }

}

@media screen and (min-width: 1699px) {
  .hero-big-text-content {
    font-size: 52px;
  }

  .header-content {
    padding: 0 100px 0 130px
  }

  .header {
    top: 86px;
  }

  .brand-logo {
    height: auto;
  }

  .phone-number {
    font-size: 18px;
    line-height: 26px;
    padding: 5px;
    width: 220px;
    height: 52px;
  }

  .hero-text {
    padding: 0 70px;
  }

  .hero-section {
    padding: 0 60px;
    padding-bottom: 80px;
  }

  .hero-text-content {
    margin-top: 40px;
  }

  .hero-button-link {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    padding: 0;
  }

  .bottom-circle-img {
    width: 100%;
  }

  .similar-text-content {
    font-size: 18px;
    line-height: 26px;
  }

  .similartext {
    right: 7%;
  }

  .hero-bottom-text {
    padding: 10px 10px;
    font-size: 16px;
    position: relative;
    font-weight: 500;
    color: var(--fade-black);
  }
}


.hero-bottom-text {
  padding: 10px 10px;
  font-size: 16px;
  position: relative;
  font-weight: 500;
  color: var(--fade-black);
}

@media screen and (max-width: 1299px) {
  .bottom-circle-img {
    width: 180px;
  }

  .header-content {
    padding: 0 60px 0 80px;
  }

  .hero-text {
    padding: 0 30px;
  }

  .hero-big-text-content {
    font-size: 36px;
  }

  .hero-button-link {
    font-size: 15px;
    padding: 16px 25px;
  }

  .phone-number {
    font-size: 15px;
  }

  .phone-number svg {
    width: 35px;
    height: 35px;
  }

  .similartext {
    right: 2%;
  }

  .hero-bottom-text {
    padding: 10px 10px;
    font-size: 16px;
    position: relative;
    font-weight: 500;
    color: var(--fade-black);
  }
}

@media screen and (max-width: 1290px) {
  .hero-small-text {
    margin-bottom: 30px;
  }

  .similar-logo-desk img {
    max-width: 200px;
  }

  .similar-logo-desk {
    left: calc(50% - 100px);
  }
}

@media screen and (max-width: 1200px) {
  .similartext {
    right: 3%;
  }

  .hero-text {
    top: 20%;
    left: 0;
  }
}


@media screen and (max-width: 900px) {
  .hero-small-text {
    margin-bottom: 10px;
  }

  .consultation-btn,
  .watch-video-desk span {
    font-size: 12px;
  }
}


@media screen and (max-width: 800px) {
  .similartext-new .similar-text-content .back-img {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .similar-text-content {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    max-width: 200px;
  }

  .hero-small-text {
    max-width: 240px;
    font-size: 13px;
  }

  .header {
    top: 30px;
  }

  .hero-section {
    padding: 0 30px 80px 30px;
  }

  .header-content {
    padding: 0 35px 0 50px;
  }

  .brand-logo {
    height: 40px;
  }

  .phone-number svg {
    width: 25px;
    height: 25px;
  }

  .phone-number {
    font-size: 14px;
    padding-right: 6px;
  }

  .bottom-circle-img {
    width: 140px;
  }

  .hero-big-text-content {
    font-size: 30px;
  }

  .hero-big-text-content {
    margin-bottom: 20px;
  }

  .hero-button {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .bottom-circle-img {
    width: 100px;
  }

  .hero-section {
    padding-bottom: 36px;
  }

  .hero-button-link {
    padding: 10px 25px;
  }

  .phone-number {
    font-size: 12px;
  }

  .heroSwiper .swiper-pagination {
    top: 58%;
  }
}

@media screen and (max-width:991px) {
  .heroSwiper .swiper-pagination {
    top: 65%;
  }

  .similar-text-content {
    max-width: 158px;
  }

  .header {
    top: 0;
    padding: 10px 0;
  }

  .header-content {
    padding: 0 32px;
  }

  .hero-section {
    padding-bottom: 36px;
    position: relative;
    margin-top: 45px;
  }

  .hero-big-text-content {
    font-size: 26px;
  }

  .hero-button a:last-child:hover svg {
    width: 40px;
    height: 40px;
  }

  .bottom-circle-img {
    width: 80px;
  }

  .hero-button a:last-child:hover svg {
    transform: none;
  }
}

/* ===== RESPONSIVE DESIGN ===== */


@media (max-width: 767px) {

  .hero-bottom-text {
    padding: 10px 10px;
    font-size: 12px;
    position: relative;
    font-weight: 500;
    color: var(--fade-black);
  }

  .header.scrolled .header-content {
    padding: 0 15px;
  }

  .heroSwiper .swiper-pagination {
    top: 50%;
  }

  .similartext {
    display: none;
  }

  .similar-text-content.mobile {
    max-width: 100%;
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .heroSwiper .swiper-pagination {
    bottom: 20px;
    gap: 6px;
  }

  .heroSwiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .heroSwiper .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }

  .heroSwiper .swiper-pagination-bullet-active::before {
    width: 4px;
    height: 4px;
  }

  .header.scrolled {
    border-radius: 0;
  }

  .container {
    padding: 0 12px;
  }

  .phone-number span {
    display: none;
  }

  .hero-text {
    position: static;
    padding: 0 15px
  }

  .header {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 15px 0;
    background: var(--white);
  }

  .header-content {
    align-items: center;
    gap: 15px;
    padding: 0 15px;
  }

  .phone-number svg {
    width: 40px;
    height: 40px;
  }


  .logo-section {
    justify-content: center;
  }

  .brand-logo {
    height: 50px;
  }

  .hero-section {
    margin-top: 82px;
    padding: 0;
  }

  .hero-banner-img {
    border-radius: 0;
  }


  .hero-big-text-content {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1.3;
  }

  .hero-small-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .hero-button {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-button a:last-child svg path {
    stroke: var(--primary-green);
  }

  .hero-button-link {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  .hero-button a:last-child {
    align-self: flex-start;
  }

  .hero-bottom-circle {
    display: none;
  }

  .hero-big-text-content br {
    display: none;
  }


}

@media (max-width: 576px) {
  .container {
    padding: 0 8px;
  }
}

/* why invisalign section */
.why-invisalign-section {
  padding: 40px 0 50px 0;
  overflow: hidden;
}

.invisalignTopheading {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  width: 50%;
  align-items: center;
}

.invisalign-heading {
  margin-bottom: 0;

  color: var(--text-dark);
}

.invisalignTopheading p {
  font-size: 16px;
  flex: 1;
  font-weight: 400;
  color: var(--fade-black);
  line-height: 24px;
  margin-bottom: 0;
}

.invis-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
}

.invis-col {
  width: 50%;
}

.invis-col-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.invis-feature {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 25px 0 18px 0;
  border-bottom: 1px solid #442e233d;
}

.invis-col-content-left .invis-feature:first-child {
  border-top: 1px solid #442e233d;
}

.invis-col-content-left .invis-feature:last-child {
  border-bottom: 1px solid #442e233d;
}

.invis-feature:last-child {
  border-bottom: none;
}

.invis-feature-icon {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.invis-feature-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background: var(--secondary-green);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.invis-feature-icon img,
.invis-feature-icon svg {
  position: relative;
  z-index: 1;
}

.invis-feature-text {
  flex: 1;
  min-width: 0;
}

.invis-feature-title {
  font-family: 'IvyMode', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.invis-feature-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--fade-black);
  line-height: 1.6;
  max-width: 300px;
}

.invis-col-content {
  height: 100%;
}

/* Desktop image alignment and border radius for Why Invisalign image */
.invis-col-content img,
.invis-col-img {
  border-radius: 32px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  height: 100%;
}

.mob-text-off {
  min-width: 100%;
  text-align: center;
}

.off-green {
  color: #54C79D;
  font-weight: 700;
}

/* Decorative SVGs for Why Invisalign image */
.invis-col-content {
  position: relative;
}

.decor-teeth-cloud {
  position: absolute;
  top: -56px;
  left: 28%;
  transform: translateX(-50%);
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.decor-half-circle {
  position: absolute;
  top: -25px;
  right: -83px;
  width: fit-content;
  z-index: -1;
  height: 87vh;
  pointer-events: none;
}

.decor-half-circle img {
  /* transform: scale(.9); */
  height: 100%;
}

@media screen and (min-width: 1699px) {
  .invisalignTopheading p {
    font-size: 18px;
  }

  .invis-feature {
    padding: 32px 0 24px 0;
  }

  .invis-feature-title {
    font-size: 30px;
  }

  .invis-feature-desc {
    font-size: 18px;
    max-width: 400px;
  }

  .invis-feature-icon {
    width: 100px;
    height: 100px;
  }

  .decor-half-circle {
    top: -37px;
  }

  .decor-half-circle img {
    transform: scale(1);
  }
}

@media screen and (max-width: 1299px) {
  .invisalignTopheading {
    width: 75%;
  }
}

@media screen and (max-width: 1024px) {
  .invis-feature-title {
    font-size: 22px;
  }

  /* .why-invisalign-section{padding-bottom: 150px;} */
}

@media (max-width: 991px) {

  .invisalignTopheading {
    width: 90%;
  }

  .decor-half-circle {
    top: -29px;
  }

  .decor-half-circle img {
    transform: none;
  }
}


@media screen and (max-width: 767px) {

  .invis-row {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }

  .invis-col {
    width: 100%;
    max-width: 100%;
  }

  .invis-col-content {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    margin-top: 16px;
  }

  .invisalignTopheading {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .invis-col-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
    object-fit: cover;
  }

  .decor-teeth-cloud {
    top: -41px;
    width: 124px;
  }

  .decor-half-circle {
    top: -66px;
    /* right: -10px; */
    width: 230px;
  }

  .why-invisalign-section {
    padding-bottom: 50px;
  }

  .invis-feature {
    gap: 20px;
  }
}

/* Why Choose Clove Dental Section */
.why-choose-section {
  padding: 80px 0 0px 0;
  background: #fff;
  /* overflow: hidden; */
  position: relative;
}

.why-choose-col {
  flex: 1;
}

.why-choose-heading {
  font-family: 'IvyMode', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0;
}

.smile-emoji {
  color: #E9883D;
  font-size: 36px;
  font-family: inherit;
}

.why-choose-subheading {
  font-size: 16px;
  color: var(--fade-black);
  line-height: 1.5;
  margin-bottom: 0;
}

.why-choose-icon {

  position: absolute;
  top: 42px;
  left: 60%;
  transform: translateX(-60%);
}

.why-choose-icon img {
  width: 100px;
  height: auto;
}

.why-choose-col-right {
  margin-top: 50px;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 28px;
}

.why-choose-card {

  background: #FCEEEC;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(73, 172, 136, 0.04);
  padding: 28px 22px 0 22px;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  max-height: 260px;
}

.why-choose-card-text {
  margin-bottom: 50px;
  /* flex: 1; */
  flex: 0 0 70%;
}

.why-choose-card-title {
  font-family: 'IvyMode', serif;
  font-size: 22px;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 30px;
}

.why-choose-card-desc {
  font-size: 15px;
  color: var(--fade-black);
  font-weight: 400;
  line-height: 1.5;
}

.why-choose-card-img {
  width: 94%;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  mix-blend-mode: darken;
  flex: 1;
  position: absolute;
  bottom: 0;
  right: 0;
}

.why-choose-card-img img {
  max-width: 100%;
  max-height: 150px;
  border-radius: 0 0 24px 24px;
  object-fit: contain;
  display: block;
}

/* Responsive grid for 5 cards: 3 on top row, 2 on bottom row */
.why-choose-card:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.why-choose-card:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.why-choose-card:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  flex-direction: column;
  max-height: 100%;
}

.why-choose-card:nth-child(2) .why-choose-card-img {
  bottom: -10px;
}

.why-choose-card:nth-child(2) .why-choose-card-img img {
  max-height: 182px;
}

.why-choose-card:nth-child(4) .why-choose-card-img {
  bottom: -10px;
}

.why-choose-card:nth-child(4) .why-choose-card-img img {
  max-height: 215px;
}

.why-choose-card:nth-child(5) .why-choose-card-img img {
  max-height: 186px;
}

.why-choose-card:nth-child(3) .why-choose-card-img {
  justify-content: center;
  bottom: -22px;
  right: 10;
}

.why-choose-card:nth-child(3) .why-choose-card-img img {
  max-height: 100%;
}

.why-choose-card:nth-child(3) .why-choose-card-text {
  padding-right: 35%;
}

@media screen and (min-width: 1699px) {
  .why-choose-card {
    padding: 32px 32px 0 32px;
    min-height: 300px;
  }

  .why-choose-card-title {
    font-size: 29px;
    line-height: 40px;
  }

  .why-choose-card-desc {
    font-size: 18px;
  }

  .why-choose-card-img img {
    max-height: 100%;
  }

  .why-choose-cards {
    gap: 30px;
  }

  .why-choose-icon img {
    width: 100%;
  }

}

@media screen and (max-width: 1399px) {
  .why-choose-card-title {
    font-size: 20px;
  }

  .why-choose-card-desc {
    font-size: 14px;
  }

}

@media screen and (max-width: 1299px) {
  .why-choose-icon {
    left: 75%;
  }
}

@media (max-width: 1200px) {
  .why-choose-row {
    flex-direction: column;
    gap: 32px;
  }

  .why-choose-card {
    max-height: 100%;
  }

  .why-choose-col-left {
    max-width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .why-choose-heading {
    font-size: 32px;
  }

  .why-choose-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .why-choose-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .why-choose-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .why-choose-card:nth-child(3) .why-choose-card-text {
    margin-bottom: 65%;
  }

  .why-choose-card:nth-child(4) .why-choose-card-img img {
    max-height: 300px;
  }

  .why-choose-card:nth-child(5) .why-choose-card-text {
    margin-bottom: 100px;
  }

  .why-choose-card:nth-child(4) .why-choose-card-text {
    margin-bottom: 100px;
  }

  .why-choose-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 991px) {
  .why-choose-card {
    max-height: 100%;
    flex-direction: column;
  }

  .why-choose-icon {
    top: 0;
  }

  /* .why-choose-card-img{justify-content: flex-end;} */
  .why-choose-card-text {
    padding-right: 25%;
  }

  .why-choose-card:nth-child(3) .why-choose-card-text {
    padding-right: 25%;
  }
}

@media (max-width: 767px) {
  .why-choose-section {
    padding: 32px 0 32px 0;
  }

  .why-choose-card-text {
    padding-right: 0;
  }

  .why-choose-card {
    flex-direction: row;
  }

  .why-choose-card-text {
    flex: 0 0 60%;
  }

  .why-choose-card:nth-child(1) .why-choose-card-img img {
    max-height: 120px;
  }

  .why-choose-card:nth-child(3) .why-choose-card-text {
    margin-bottom: 67%;
  }

  .why-choose-card:nth-child(4) .why-choose-card-img img {
    max-height: 190px;
  }

  .why-choose-row {
    flex-direction: column;
    gap: 18px;
  }

  .why-choose-heading {
    font-size: 26px;
  }

  .why-choose-cards {

    gap: 18px;
  }

  .why-choose-card:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 6;
    flex-direction: column;
    max-height: 100%;
    margin-top: -13px;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .why-choose-card-img {
    min-height: 80px;
  }

  .dental br {
    display: block;
  }

  .why-choose-icon {
    margin-top: 18px;
    position: absolute;
    top: 0;
    left: 76%;
    transform: translateX(-60%);
  }

  /* .why-choose-card-img{justify-content: center;} */


}

/* Success Stories Section */
.success-stories-section {
  padding: 80px 0 0px 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.success-stories-header {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
  /* position: relative; */
}

.success-stories-title {
  font-family: 'IvyMode', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0;
}

.success-stories-desc {
  font-size: 16px;
  color: var(--fade-black);
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1;
}

.success-stories-icon {
  margin-left: auto;
}

.success-stories-icon img {
  width: 60px;
  height: auto;
}

.success-stories-slider-wrap {
  position: relative;
  margin-top: 50px;
  z-index: 3;
}

.successStoriesSwiper {
  width: 100%;
  padding-bottom: 10px;
}

.success-story-slide {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
}

.success-story-media {
  position: relative;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(24, 14, 6, 0.06);
  background: #E9F0F7;
  min-height: 420px;
  max-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.success-story-img,
.success-story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
  transition: opacity 0.3s;
}

.success-story-media video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #000;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.success-story-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 0.2s;
}

.success-story-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.success-story-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px 28px 20px;
  color: #fff;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  z-index: 4;
  background: linear-gradient(180deg, rgba(24, 14, 6, 0) 39.45%, #180E06 98.55%);
  border-radius: 0 0 32px 32px;
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.success-story-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-right: 4px;
}

.success-stories-arrow {
  position: absolute;
  width: 41px;
  height: 41px;
  top: 50%;
  z-index: 20;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: none;
}

.success-stories-arrow svg {
  width: 41px;
  flex: 0 0 41px;
  height: 41px;
  transition: all 0.3s ease;
}

.success-stories-arrow svg path {
  transition: all 0.3s ease;
}

.success-stories-arrow:hover svg path {
  border-color: #54C79D;
  fill: #54C79D;
  stroke: #fff;
  stroke-width: 1.34483;

}

.swiper-button-prev.success-stories-arrow {
  left: auto;
  right: 60px;
  top: -45px;
  background: transparent;
  border: 0;
  transform: rotate(180deg);
  transform-origin: 59% 24%;
}

.success-stories-arrow {

  background: transparent;
  border: 0;
}

.swiper-button-next.success-stories-arrow {
  right: 0;
  top: -45px;
}

.success-stories-arrow.swiper-button-prev:after,
.success-stories-arrow.swiper-button-next:after {
  display: none;
}

@media (max-width: 767px) {
  .success-stories-section {
    padding: 32px 0 32px 0;
  }

  .success-stories-title {
    font-size: 22px;
  }

  .success-story-img,
  .success-story-media video {
    border-radius: 18px;
  }

  .success-story-overlay {
    border-radius: 0 0 18px 18px;

    padding: 10px 13px 20px 25px;
  }

  .mobile-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .success-stories-arrow {
    width: 36px;
    height: 36px;
    position: static;
    text-align: center;
    margin-top: 25px;
    transform: none !important;
    margin-bottom: 0 !important;

  }

  .swiper-button-prev.success-stories-arrow {
    transform: rotate(180deg) !important;
    transform-origin: 50% 50% !important;

  }

}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
  padding: 80px 0 0px 0;
  background: #fff;
  position: relative;
}

.achievements-title {
  text-align: center;

}

.achievements-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #00000033;
  width: fit-content;
  margin: auto;
}

.achievements-tab {
  background: none;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--fade-black);
  padding: 0 10px 12px 10px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.achievements-tab.active {
  color: var(--text-dark);
  font-weight: 600;
}


.achievements-tab.active::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-green);
  border-radius: 2px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.achievements-tabs-content {
  margin-top: 0;
}

.achievements-tab-panel {
  display: none;
}

.achievements-tab-panel.active {
  display: block;
}

.achievementsSwiper,
.certificationsSwiper {
  width: 100%;
  padding: 10px;
  margin-top: 30px;

}

.achievements-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: -1px 0px 9px 0px #00000029;


  padding: 32px 24px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: box-shadow 0.3s;
}

.achievements-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

.achievements-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.achievements-card-year-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.achievements-arrow-svg {
  width: 38px;
  height: 3px;
  min-width: 30px;
}

.achievements-card-year {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: var(--primary-green);
  font-weight: 500;
  margin: 0 4px;
  letter-spacing: 1px;
  display: inline-block;
}

.achievements-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
  margin-top: 2px;
  text-align: center;
}

.achievements-card-desc {
  font-size: 15px;
  color: var(--fade-black);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.achievements-card {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: -1px 0px 9px 0px #00000029;

  padding: 25px;
}

.achievements-tabs-wrap {
  position: relative;
}

.parent-achive-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1699px) {
  .achievements-card-title {
    font-size: 20px;
  }

  .achievements-card-desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 1400px) {
  .achievements-card-title {
    font-size: 15px;
  }


}

@media (max-width: 991px) {


  .achievements-leaf {
    width: 50px;
  }

  .achievements-arrow-svg {
    width: 24px;
  }

  .achievements-card-year {
    font-size: 16px;
  }

  .achievements-card-title {
    font-size: 15px;
  }

  .achievements-card-desc {
    font-size: 12px;
  }
}

.achievements-section .success-stories-arrow {
  top: 44px;
}

@media (max-width: 991px) {
  .achievements-section {
    padding: 36px 0 36px 0;
  }

  .achievements-title {
    font-size: 26px;
  }

  .achievements-card-year {
    font-size: 20px;
  }

  .achievements-card-title {
    font-size: 14px;
  }

  .achievements-card-desc {
    font-size: 14px;
  }

  .achievements-arrows {
    margin-top: 10px;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .achievements-tabs {
    gap: 18px;
  }

  .achievements-tabs-underline {
    max-width: 220px;
    margin-bottom: 16px;
  }

  .achievements-arrows {
    justify-content: center;
    margin-top: 12px;
  }

  .achievements-leaf {
    width: 70px;
  }

  .achievements-arrow-svg {
    width: 14px;
  }

}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 60px 0 60px 0;
  background: #fff;
  position: relative;
}

.gallery-title {
  text-align: center;

}

.gallery-slider-wrap {
  position: relative;
  margin-top: 50px;
}

.gallerySwiper {
  width: 100%;
  padding-bottom: 10px;
}

.gallery-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;


  transition: box-shadow 0.3s;
}

.gallery-img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.gallery-arrow {
  background: transparent;
  border: 0;
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: none;
}


@media (max-width: 767px) {
  .gallery-section {
    padding: 32px 0 32px 0;
  }


}

/* ===== SMILE INFLUENCER SECTION ===== */

.smile-influencer-section {
  padding: 80px 0 0px 0;
  background: #fff;
  position: relative;
}

.smile-influencer-header {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
  justify-content: flex-start;
}

.smile-influencer-title {
  font-family: 'IvyMode', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0;
}

.smile-influencer-desc {
  font-size: 16px;
  color: var(--fade-black);
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1;
}

.smile-influencer-slider-wrap {
  position: relative;
  z-index: 3;
  margin-top: 50px;
}

.smileInfluencerSwiper {
  width: 100%;
  padding-bottom: 10px;
}

.smile-influencer-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(73, 172, 136, 0.08);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.smile-influencer-media {
  position: relative;
  width: 100%;
  min-height: 420px;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.smile-influencer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.smile-influencer-play {
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 0.2s;
}

.smile-influencer-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.smile-influencer-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px 28px 20px;
  color: #fff;
  font-size: 18px;
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  z-index: 4;
  background: linear-gradient(180deg, rgba(24, 14, 6, 0) 39.45%, #180E06 98.55%);
  border-radius: 0 0 24px 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;

}

.smile-influencer-caption span {
  display: block;
  font-weight: 400;
  color: #fff;
}

.smile-influencer-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: #000;
}

.smile-influencer-media {
  position: relative;
  overflow: hidden;
}

.smile-influencer-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  /* Prevent video interaction */
}

.play-button {
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.play-icon {
  width: 30px;
  height: 30px;
}

.video-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-popup-overlay.active {
  display: flex;
}

.video-popup {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 800px;
  width: 90%;
  position: relative;
  animation: popupFadeIn 0.3s ease;
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
}

#popupVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup-close {
  z-index: 100;
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  border: 2px solid #54C79D;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  color: #54C79D;
  transition: all 0.3s;
}

.popup-close:hover {
  background: #54C79D;
  color: #fff;
}

@keyframes popupFadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-popup {
    width: 95%;
    padding: 15px;
  }

  .first-hero-banner {
    position: relative;
    max-height: 800px;
    display: flex;
    justify-content: center;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .video-popup {
    width: 70%;
    padding: 10px;
    max-width: 260px;
  }

  .video-container {
    aspect-ratio: 9 / 16;
  }

  .popup-close {
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    font-size: 16px;
    line-height: 21px;
  }
}

@media (max-width: 615px) {
    .first-hero-banner {
      max-height: 635px;
    }
}

@media (max-width: 550px) {
    .first-hero-banner {
      max-height: 527px;
    }
}
@media (max-width: 991px) {
  .smile-influencer-title {
    font-size: 26px;
  }

  .smile-influencer-img {

    border-radius: 16px;
  }

  .smile-influencer-caption {
    font-size: 16px;

  }
}

@media (max-width: 767px) {

  .success-story-media,
  .smile-influencer-media {
    min-height: 320px;
    max-height: 320px;
  }

  .smile-influencer-section {
    padding: 32px 0 32px 0;
  }

  .smile-influencer-title {
    font-size: 20px;
  }

  .smile-influencer-img {
    border-radius: 10px;
  }
}

/* ===== PRESENCE SECTION (MAP) ===== */
.presence-section {
  background: #fff;
  padding: 80px 0 0px 0;
  position: relative;
}

.presence-header {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
  justify-content: flex-start;
}

.presence-map-wrap {
  width: 100%;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(24, 14, 6, 0.06);
  background: #fff;
  margin-top: 50px;
  position: relative;
  z-index: 3;
}

.presence-map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 24px;
  display: block;
}

@media screen and (min-width: 1699px) {
  .presence-map-wrap iframe {
    height: 650px;
  }
}

@media (max-width: 767px) {
  .presence-section {
    padding: 32px 0 32px 0;
  }

  .presence-title {
    font-size: 20px;
  }

  .presence-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .success-stories-section::before,
  .gallery-section::before,
  .achievements-section::before,
  .presence-section::before,
  .smile-influencer-section::before {
    content: "";
    border-top: 3px solid #EFEFEF;
    width: 90%;
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0 20px;
  }

}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff;
  padding: 60px 0 60px 0;
  position: relative;
}

.faq-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 32px;
}

.faq-header-text {
  flex: 1;
}

.faq-title {
  font-family: 'IvyMode', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

.faq-header-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.faq-header-icon img {
  width: 80px;
  height: auto;
}

.faq-content-row {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.faq-col {
  flex: 1;
  min-width: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #E5E5E5;
  padding: 0;
  background: none;
}

.faq-item.active .faq-question {
  font-weight: 500;
  color: #444444;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #444444;
  font-weight: 400;
  text-align: left;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s, font-weight 0.2s;
  gap: 12px;
}

.faq-accordion .faq-item:first-child {
  border-top: 1px solid #E5E5E5;
}

.faq-item.active .faq-question {
  color: #444444;
  font-size: 26px;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.faq-icon svg {
  width: 35px;
  height: 35px;
}

.faq-plus {
  display: none;
}

.faq-minus {
  display: none;
}

.faq-item .faq-minus {
  display: inline-flex;
}

.faq-item.active .faq-minus {
  display: none;
}

.faq-item.active .faq-plus {
  display: inline-flex;
}

.faq-answer {
  font-size: 16px;
  color: #444444;
  line-height: 1.6;
  padding: 0 0 24px 0;
  display: none;
  padding-right: 10%;
  animation: fadeIn 0.3s;
}

.faq-item.active .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media screen and (min-width: 1699px) {
  .faq-item.active .faq-question {
    font-size: 30px;
  }

  .faq-answer {
    font-size: 18px;
  }

  .faq-icon svg {
    width: 40px;
    height: 40px;
  }

}

@media (max-width: 991px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-header-icon img {
    width: 50px;
  }

  .faq-content-row {
    gap: 18px;
  }

  .faq-question {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 32px 0 32px 0;
  }

  .faq-header-row {
    flex-direction: column;
    gap: 10px;
  }

  .faq-title {
    font-size: 20px;
  }

  .faq-content-row {
    flex-direction: column;
    gap: 0;
  }

  .faq-col {
    width: 100%;
  }
}

/* ===== FOOTER SECTION ===== */
.footer {
  margin: 0 0 35px 0;
}

.footer-content {
  background: url("../images/footernewbg.jpg") no-repeat center center;
  background-size: cover;
  padding: 60px 40px;
  position: relative;
  border-radius: 30px;
  position: relative;
}

.footer-content .invisalignTopheading p {
  color: #fff;
  padding-right: 5%;
  opacity: 0.9;
}

.footer-content .invisalignTopheading {
  width: 100%;
}

.footer-content * {
  color: #fff;
}

.footer-content .hero-button-link {
  background: #fff;
  color: var(--primary-green) !important;
}

@media screen and (min-width: 1699px) {
  .footer-content {
    padding: 60px 80px;
  }

  .footer-content .invisalignTopheading {
    gap: 50px;
  }

  .footer-content .invisalignTopheading p {
    padding-right: 8%;
    padding-left: 5%;
  }
}

@media screen and (max-width: 1399px) {
  .footer-content .invisalignTopheading p {
    padding-right: 0;
  }
}

@media screen and (max-width: 1026px) {
  .newarrow {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .footer-content .invisalignTopheading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .footer-content .invisalignTopheading {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .footer-content {
    padding: 60px 25px;
  }

  .footer-content .invisalignTopheading br {
    display: block;
  }

  .faq-item.active .faq-question {
    font-size: 20px;
  }
}

/* ===== FIXED BOTTOM BUTTONS & NOTE ICON ===== */
.fixed-bottom-center-btns {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #49AC88 0%, #54C79D 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(73, 172, 136, 0.18);
  padding: 0 8px;
  height: 48px;
}

.relative-bottom-center-btns {
  position: relative;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #49AC88 0%, #54C79D 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(73, 172, 136, 0.18);
  padding: 0 8px;
  height: 48px;
  width: fit-content;
  margin: 30px 0;
}

.how-faq-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 0 18px;
  height: 48px;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  outline: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;

}

.how-faq-btn:hover,
.how-faq-btn:focus {
  transform: translateY(-2px);
  color: #fff;
}

.divider {
  color: #fff;
  opacity: 0.7;
  font-size: 18px;
  font-weight: 400;
  margin: 0 2px;
}

.fixed-note-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 999;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(73, 172, 136, 0.18);
  border-radius: 50%;
  transition: transform 0.18s;
  outline: none;
}

.fixed-note-btn:hover,
.fixed-note-btn:focus {
  transform: scale(1.08);

}

.fixed-note-btn svg {
  display: block;
}

@media (max-width: 767px) {
  .fixed-bottom-center-btns {
    height: 42px;
    padding: 0 4px;
    border-radius: 22px;
    bottom: 16px;

  }

  .how-faq-btn {
    font-size: 14px;
    height: 42px;
    padding: 0 10px;
  }

  .fixed-note-btn {
    right: 16px;
    bottom: 16px;
  }

  .fixed-note-btn svg {
    width: 44px;
    height: 44px;
  }
}

/* ===== POPUP FORM STYLES ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-form {
  background: white;
  border-radius: 24px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.active .popup-form {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #f5f5f5;
  color: #333;
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-title {
  font-family: 'IvyMode', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.popup-subtitle {
  font-size: 16px;
  color: var(--fade-black);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: #FAFAFA;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-green);
  background: white;
  box-shadow: 0 0 0 4px rgba(73, 172, 136, 0.1);
}

.form-input::placeholder {
  color: #999;
  font-style: italic;
}

.form-input.error {
  border-color: #ff4757;
  background: #fff5f5;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.error-message {
  color: #ff4757;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.error-message.show {
  display: block;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(73, 172, 136, 0.4);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 16px;
  line-height: 1.4;
}

/* Prevent body scroll when popup is open */
body.popup-open {
  overflow: hidden;
}

/* Mobile popup styles */
@media screen and (max-width: 767px) {
  .popup-form {
    padding: 30px 20px;
    border-radius: 20px;
    margin: 20px;
    width: calc(100% - 40px);
  }

  .popup-title {
    font-size: 28px;
  }

  .popup-subtitle {
    font-size: 14px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .popup-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .popup-form {
    padding: 25px 15px;
  }

  .popup-title {
    font-size: 20px;
  }
}

/* ===== BACK BUTTON STYLES ===== */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(73, 172, 136, 0.3);
}

.back-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.back-button:hover::before {
  left: 100%;
}

.back-button:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(73, 172, 136, 0.4);
  color: white;
}

.back-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.back-button:hover svg {
  transform: translateX(-2px);
}

@media (max-width: 767px) {
  .back-button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .back-button svg {
    width: 14px;
    height: 14px;
  }
}

.footer-bottom-bar {
  background: #fff;
  width: 100%;
  padding: 22px 0 18px 0;
  padding-top: 0;
}

.footer-bottom-bar-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-bar .footer-copyright {
  color: #a0a0a0;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-bottom-bar .footer-privacy {
  color: #444444;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-bottom-bar .footer-privacy:hover {
  color: #49AC88;
}

@media (max-width: 767px) {
  .footer-bottom-bar {
    padding-bottom: 73px;
    padding-top: 0;
  }

  .footer-bottom-bar-content {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom-bar .footer-copyright {
    font-size: 14px;
  }

  .footer-bottom-bar .footer-privacy {
    font-size: 14px;
  }
}

@media screen and (max-width: 390px) {
  .fixed-bottom-center-btns {
    width: 53%;
  }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
  background: #FCEEEC;
  padding: 60px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-section .invisalignTopheading {
  text-align: center;
  width: 100%;
  justify-content: center;
}

.how-steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  /* margin-top: 130px; */
  margin-top: 40px;
  z-index: 9;
}

.how-step {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  position: relative;
  z-index: 2;
  mix-blend-mode: darken;
  margin: 0 10px;
  width: 30%;
}

.how-step-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-img img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
}

.hangteethblock {
  position: absolute;
  top: 65px;
  right: 5%;
  z-index: 3;
}

.hangteethblock img {
  width: 85px;
}

/* ===== OPEN FORM STYLES ===== */

.open-form {
    display: flex;
    flex-direction: column;
}

.open-submit-btn {
  width: fit-content;
  align-self: center;
}

.open-submit-btn {
  margin-top: 30px;
}

.captcha_corporate {
  height: 97%;
  margin-left: 5px;
}

.captcha_corporate img {
  height: 100%;
  border-radius: 5px;
}

.captcha .cap-input {
  flex: 0 0 70%;
}

.captcha .cap-img {
  flex: 0 0 calc(30% - 5px);
}

.captcha .error {
    color: red;
    position: absolute;
    bottom: -30%;
    left: 0;
}

@media (max-width: 768px) {
  .open-form-section {
    padding: 30px 8px;
  }
  .captcha_corporate img {
    max-height: 55px;
  }
}

@media (min-width: 768px) {
  .captcha .cap-input-modal {
      flex: 0 0 55%;
  }
}

/* CSS: Responsive Blue Diamond Invisalign Layout */
.diamond-invi {
  padding: 24px 12px;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  margin-top: 60px;
}

.diamond-invi .invi-head {
  margin-bottom: 32px;
  text-align: left;
}

.diamond-invi .invi-head h2 {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.28;
  color: #323232;
}

.diamond-invi .invi-content {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

.diamond-invi .invi-images {
  display: flex;
  gap: 24px;
}

.diamond-invi .invi-img {
  width: 47%;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(100, 120, 200, 0.09);
  object-fit: cover;
}

/* .diamond-invi .invi-img-right {
  width: 33%;
} */
.diamond-invi .invi-img3 {
  width: 100%;
  /* aspect-ratio: 1/1.1; */
  border-radius: 18px;
  object-fit: cover;
}

.left-contain {
  flex: 1 1 0%;
}

.invi-img-right {
  flex: 0 0 30%;
}

/* Responsive Styles */
@media (max-width: 1320px) {
  .invi-img-right {
    flex: 0 0 32%;
  }
}

@media (max-width: 800px) {
  .diamond-invi .invi-content {
    flex-direction: column;
    gap: 24px;
  }

  .diamond-invi .invi-images {
    flex-wrap: wrap;
  }

  .diamond-invi .invi-img {
    width: 100%;
  }

  .diamond-invi .invi-images,
  .diamond-invi .invi-img-right {
    width: 100%;
  }

  .diamond-invi .invi-img3 {
    aspect-ratio: 1/1;
    margin-bottom: 16px;
  }
}

@media (max-width: 540px) {
  .diamond-invi .invi-head h2 {
    font-size: 1.28rem;
  }

  .diamond-invi {
    padding: 15px 4px;
    margin-top: 0;
  }
}


/* .how-step-num {
  position: absolute;
  top: -29px;
  left: 38px;
  font-size: 46px;
  color: var(--secondary-green);
  font-weight:400;
} */

.how-step-num {
  font-size: 24px;
  color: var(--secondary-green);
  font-weight: 400;
}

.la-contain {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.how-step-desc {
  font-size: 16px;
  color: var(--fade-black);
  /* text-align: center; */
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  min-height: 80px;
  margin-top: 6px;
  white-space: normal;
}

.how-dots-line {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.how-steps-wrap {
  position: relative;
}

.how-dots-line-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 1699px) {
  .how-steps-wrapper {
    max-width: 1450px;
  }

  .how-step-desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 1399px) {
  /* .how-step-img{max-width: 85%;} */
}

@media (max-width: 1100px) {
  .how-steps-wrapper {
    max-width: 100%;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .how-step-num {
    top: -19px;
    font-size: 30px;
  }

  .how-step-desc {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .how-step-num {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .how-step-img {
    max-width: 100%;
  }

  .how-step-desc {
    font-size: 14px;
  }

  .how-steps-wrapper {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-y: scroll;
    padding-top: 25px;
  }

  .how-step {
    flex: 0 0 85%;
  }

  .how-hangteeth {
    width: 40px;
    top: -22px;
  }

  .how-step-num {
    font-size: 36px;
    margin-bottom: 10px;
    left: 17px;
    top: -24px;
  }

  .how-it-works-section .invisalign-heading {
    text-align: center;
    margin: auto;
  }

  .hangteethblock img {
    width: 66px;
  }

  .how-it-works-section {
    margin-bottom: 50px;
  }

  .how-steps-wrapper {
    margin-top: 0;
  }

  .hangteethblock {
    top: 0;
  }

  .how-dots-line {
    position: absolute;
    top: 90px;
    left: -394px;
    width: auto;
  }

  .why-choose-icon img {
    width: 70px;
  }
}

@media screen and (max-width: 395px) {
  .hero-big-text-content {
    font-size: 26px;
  }
}

/* ===== PAGE HEADER STYLES ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 120px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="85" cy="25" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
  background-size: 200px 200px;
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-title {
  font-family: 'IvyMode', serif;
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-header-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.page-header-nav {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 3;
}

@media (max-width: 767px) {
  .page-header {
    padding: 100px 0 60px 0;
  }

  .page-header-title {
    font-size: 32px;
  }

  .page-header-subtitle {
    font-size: 16px;
  }

  .page-header-nav {
    top: 20px;
  }
}

.backbt {
  margin: 30px 0;
}

/* ===== CERTIFICATE IMAGES STYLES ===== */
.certificate-container {
  justify-content: center;
}

.certificate-img {
  width: 100%;
  max-width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  /* box-shadow: 0 2px 12px rgba(73, 172, 136, 0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(73, 172, 136, 0.15);
}

@media screen and (max-width: 1290px) {
  .similar-text-content {
    max-width: 250px;
  }
}

@media screen and (min-width: 1699px) {
  .certificate-img {
    max-width: 450px;
    height: 350px;
  }
}

@media screen and (max-width: 1399px) {
  .certificate-img {
    max-width: 350px;
    height: 260px;
  }
}

@media screen and (max-width: 991px) {
  .certificate-img {
    max-width: 300px;
    height: 220px;
  }
}

@media screen and (max-width: 767px) {
  .certificate-img {
    max-width: 280px;
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .certificate-img {
    max-width: 100%;
    height: 180px;
  }
}

/* ===== FOOTER SECTION ===== */

@media screen and (min-width: 1699px) {

  .success-story-media,
  .smile-influencer-media {
    min-height: 480px;
    max-height: 480px;
  }
}

@media screen and (max-width: 1399px) {

  .success-story-media,
  .smile-influencer-media {
    min-height: 380px;
    max-height: 380px;
  }
}

/* ===== IMAGE MODAL STYLES ===== */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-content {
  position: relative;
  max-width: 80%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s ease;
}

.image-modal.active .image-modal-content {
  transform: scale(1) translateY(0);
}

.image-modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;

}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.image-modal-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-modal-close svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.image-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10001;
}

.image-modal-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-modal-nav.prev {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);

}

.image-modal-nav.next {
  right: 20px;
}

.image-modal-nav svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.image-modal-nav.prev svg {
  transform: rotate(180deg);
}

/* Gallery image cursor pointer */
.gallery-img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Prevent body scroll when modal is open */
body.image-modal-open {
  overflow: hidden;
}

/* Mobile modal styles */
@media screen and (max-width: 767px) {
  .image-modal {
    padding: 10px;
  }

  .image-modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .image-modal-close svg {
    width: 20px;
    height: 20px;
  }

  .image-modal-nav {
    width: 50px;
    height: 50px;
  }

  .image-modal-nav.prev {
    left: 10px;
  }

  .image-modal-nav.next {
    right: 10px;
  }

  .image-modal-nav svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 480px) {
  .image-modal-nav {
    display: none;
  }
}

.why-choose-cards {
  position: relative;
  z-index: 2;
}

.decor-left-half-circle {
  position: absolute;
  top: 173px;
  width: fit-content;
  z-index: 1;
  left: 0;
  pointer-events: none;
  height: 83vh;
}

.decor-left-half-circle img {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 1299px) {
  .decor-left-half-circle {
    left: -100px;
    width: 180px;
  }
}

@media screen and (max-width: 767px) {
  .decor-left-half-circle {
    top: 20px;
    left: -60px;
    width: 120px;
  }
}

.decor-between-sections-half-circle {
  position: absolute;
  left: 0;
  top: -233px;
  width: fit-content;
  height: 80vh;
  z-index: 1;
  pointer-events: none;
  /* Adjust top/left/width/height as needed for your design */
}

.decor-between-sections-half-circle img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 991px) {
  .decor-between-sections-half-circle {
    width: 100px;
    height: 40vh;
    top: 20px;
    left: -30px;
  }
}

@media (max-width: 767px) {
  .decor-between-sections-half-circle {
    width: 60px;
    height: 20vh;
    top: 10px;
    left: -20px;
  }
}

.success-stories-section {
  position: relative;
}

.decor-success-half-circle {
  position: absolute;
  top: 25px;
  right: 0;
  width: fit-content;
  height: 72vh;
  z-index: 0;
  pointer-events: none;
}

.decor-success-half-circle img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 1600px) {
  .decor-half-circle {
    height: 68vh;
  }

  .decor-left-half-circle {
    height: 64vh;
  }

  .decor-success-half-circle,
  .decor-between-sections-half-circle {
    height: 60vh;
  }
}

@media (min-width: 1699px) {

  .decor-half-circle,
  .decor-left-half-circle {
    height: 67vh;
  }

  .decor-left-half-circle {
    top: 187px;
  }

  .decor-success-half-circle,
  .decor-between-sections-half-circle {
    height: 50vh;
  }
}

@media screen and (max-width: 1440px) {
  .decor-between-sections-half-circle {
    height: 68vh;
  }

  .decor-half-circle {
    top: 0;
    height: 66vh;
  }

  .decor-success-half-circle {
    height: 66vh;
  }

  .decor-left-half-circle {
    height: 64vh;
  }
}

@media screen and (max-width: 1280px) {
  .decor-success-half-circle {
    height: 41vh;

  }

  .decor-between-sections-half-circle {
    height: 49vh;
  }

  .decor-half-circle {
    top: 0;
    height: 54vh;
  }

}

@media screen and (max-width: 1024px) {

  .decor-success-half-circle,
  .decor-between-sections-half-circle,
  .decor-left-half-circle,
  .decor-half-circle {
    display: none;
  }
}