@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Spartan' ,sans-serif;
}

html {
  scroll-behavior:smooth;
  
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


body {
  background: #000000;
  color: #ffffff;
}

h2 {
  transition: transform 0.3s ease;
  position: relative; /* or 'absolute' if needed */
  z-index: 0;  
}


/* Navbar Base */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background-color 0.3s ease;
  z-index: 999;
  border-bottom: 1px solid transparent;
  font-family: 'Sen',sans-serif;
}

/* Navbar Scrolled */
nav.scrolled {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header img {
  max-width: 200px; /* Adjust as needed */
  height: auto;
  background-color: #ffffff00;

}

/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Dropdown Hidden by Default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  padding: 0.5rem 0;
  list-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 0.3rem;
  min-width: 180px;
  z-index: 999;
}

/* Dropdown Items */
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: white;
  text-decoration: none;
  text-transform: lowercase;
  transition: background 0.3s, color 0.3s;
}

/* Hover Effect */
.dropdown-menu li a:hover {
  color: #6AE0F2;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.3rem;
}

.dropdown-menu.show-dropdown {
  display: block;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  font-size: larger;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 0.6rem 1.2rem;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 0.3rem;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a:hover {
  font-weight: 500;
  color: #6AE0F2;
}



/* Appointment Button */
.nav-links a.appointment-btn {
  background-color: #6AE0F2;
  color: rgb(0, 0, 0);
  font-size: large;
  padding: 10px  20px;
  border: none;
  max-width: 200px;
  cursor: pointer;
  text-transform: lowercase;
  transition: background-color 0.3s;
  height: 100%;
  align-items: center;
}

.appointment-btn:hover {
  background-color: #ffffff;
}

.slide-panel {
  position: fixed;
  font-family: 'Sen',sans-serif;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  color: white;
  height: 0px;
  overflow: hidden;
  padding: 0 2rem;
  transition: height 0.5s ease, padding 0.5s ease;
  z-index: 1001; /* higher than nav */
  border-bottom: 1px solid #444;
}

.slide-panel.active {
  height: 80vh;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.slide-panel h3 {
  color: #6AE0F2;
  margin-top: 1rem;
  font-weight: 200;
  font-size: 2rem;
  padding-bottom: 2%;
  text-decoration: underline;
}

.slide-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  gap: 2rem;
}

.slide-panel ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 0;
  display: block;
  transition: color 0.3s;
}

.slide-panel ul li a:hover {
  color: #6AE0F2;
}

.panel-inner {
  display: flex;
  flex: 1;
  height: 100%;
  flex-direction: row-reverse;
  gap: 2rem;
}

.panel-content {
  flex: 1.5;
  text-align: left;
}

.panel-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255); /* for debug */
}

.panel-image img {
  max-width: 80vh !important;
  height: 100% !important;
  border-radius: 0 !important;
  object-fit: cover;
}


/* Close button (top right X) */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #6AE0F2;
  background-color: #ffffff54;
}

/* Base hamburger style */
.hamburger {
  display: none;
  background: none !important;
  font-size: 1.5rem;
  color: rgb(255, 254, 254);
  border: none;
  cursor: pointer;
}

.hero {
  position: relative;
  font-family: 'Sen',sans-serif;
  height: 80vh;
  overflow: hidden;
  border-bottom: #000;
}

.hero-img {
  background-image: url('images/bg3.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh; /* Full screen height */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 70%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  font-size: 4rem;
  background: rgba(0, 0, 0, 0);
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.hero-text2 {
  position: absolute;
  top: 90%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0);
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.hero-buttons {
  position: absolute;
  top: 85%;
  right: 2%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.hero-button {
  padding: 0.75rem 0.75rem;
  background-color: #6AE0F2;
  min-width: 300px;
  color: rgb(0, 0, 0);
  border: none;
  font-weight: 400;
  font-size: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #ffffff;
}


.specialist-section {
  padding: 3rem 1rem;
  background: #000000;
  height: 90vh;
  overflow: hidden;
}

.specialist-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.doc-img {
  width: 340px;
  height: 500px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.9s ease;
}

.doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist-text {
  max-width: 400px;
  margin-left: auto;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.specialist-text h2 {
  margin-bottom: 1.8rem;
  color: #6AE0F2;
  font-size: 3rem;
  text-transform: lowercase;
}

.specialist-text span {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.4;

}

/* Active animations */
.slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

.fade-in.visible {
  transform: translateY(0);
  opacity: 1;
}

.excellence-section {
  padding: 2rem 2rem;
  background-color: #f4f4f4;
}

.excellence-container {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.excellence-image {
  flex: 1;
  min-width: 400px;
  max-width: 500px;
  border-radius: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.excellence-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.excellence-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 360px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.excellence-text {
  flex: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.excellence-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.excellence-text span {
  font-size: 2.6rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.excellence-point {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.point-icon {
  border: 3px solid #5bbfce;  /* Blue border */
  border-radius: 50%;      /* Optional: make it circular */
  padding: 5px;            /* Optional: spacing inside border */
  background-color: white;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-right: 1rem;
  object-fit: contain;
}


.excellence-point h4 {
  font-size: 1.5rem;
  color: #254e55;
  margin-bottom: 0.4rem;
  margin-top: 0.4rem;
  font-weight: 500;
}

.excellence-point p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
}

.excellence-btn-wrapper {
  text-align: center;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.excellence-btn-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.know-more-btn {
  background-color: #6AE0F2;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(106, 224, 242, 0.4);
}

.know-more-btn:hover {
  background-color: #000;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}




.content-section {
  padding: 3rem 1rem;
  background: #000000;
  height: 75vh;
  overflow: hidden;
}

.content-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  
}

.contentmedia {
  width: 50%;
  object-fit: cover;
}

.content-text {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.content-text span {
  max-width: 400px;
  margin-left: -3ch;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-size: 3rem;
  text-transform: lowercase;
}

.content-text .exc {
  font-size: 3rem;
  font-weight: 300; /* Light */
  color: #ffffff;
}

.content-text .full {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600; /* Extra Bold */
  text-transform: lowercase;
}

.content-text p {
  margin-top: 2%;
  font-size: 1.4rem;
  max-width: 700px;
  color: #ffffff;
  line-height: 1.2;
}

/* Active animations */
.slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

.fade-in.visible {
  transform: translateY(0);
  opacity: 1;
}

.cta-section {
  position: relative;
  height: 90vh;
  background-image: url('images/bg1.jpg');
  background-size: 200% auto; /* or 130% */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll; /* default */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #000;
  overflow: hidden;
}

.cta-overlay {
  background-color: rgba(255, 255, 255, 0.47); /* White with opacity */
  padding: 2.5rem;
  max-width: 900px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.cta-overlay h2 {
  font-size: 3rem;
  text-transform: lowercase;
  margin-bottom: 1rem;
  font-weight: 300;
}

.cta-overlay h2 strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
}

.cta-overlay p {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 2.5rem;
}

.cta-button {
  background-color: #6AE0F2;
  color: #000;
  padding: 0.5rem 1.5rem;
  font-size: 120%;
  text-decoration: none;
  font-weight: 300;
  transition: background-color 0.3s ease;
  text-transform: lowercase;
}

.cta-button:hover {
  background-color: #000000;
  color: #ffffff;
}


.technology {
  background: linear-gradient(to right, #414040, #181818);
  color: #ffffff;
  padding: 20px;
  text-transform: lowercase;
  text-align: left;
}

.tech-heading h2 {
  font-size: 3.5rem;
  margin-bottom: 60px;
  color: #ffffff;
}

.tech-heading .tech {
  font-weight: 100;
  color: #6AE0F2;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 0;
  width: 100%;
}

.tech-item {
  background-color: #2a2a2a;
  padding: 5px;
  width: 100%; /* make it flexible */
  box-sizing: border-box;
  overflow: hidden;
}

.tech-img-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.tech-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;

}

.tech-img:hover {
  transform: scale(1.2);
}

.tech-item h3 {
  font-size: 1.6rem;
  margin: 15px 0 10px;
}

.tech-item .bold {
  font-weight: 300;
}

.tech-item p {
  font-size: 1.1rem;
  color: #dddddd;
  line-height: 1.5;
}


.serv-section {
  background: url('images/bg2.jpg') no-repeat center center/cover;
  padding: 10px 20px;
  color: #000;
}

.section-heading {
  text-align: center;
  font-size: 5rem;
  margin-bottom: 40px;
  text-transform: lowercase;
}

.section-heading .light {
  font-weight: 100;
}

.section-heading .bold {
  font-weight: 500;
}


.container {
  display: flex;
  align-items: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.container.reverse {
  flex-wrap: wrap-reverse;
}

.text-box {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  margin-right: -30px;
  color: #000;
  font-size: x-large;
  text-align: right;
  position: relative; /* Needed for z-index to take effect */
  z-index: 1; /* Only as high as needed */
}

.text-box-right {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0);
  padding: 30px;
  margin-left: -30px;
  z-index: 0;
  color: #000;
  font-size:x-large;
}

.img-box {
  flex: 1;
  min-width: 800px;
  height: 500px; /* Set a fixed height */
  margin-bottom: -25px;
  margin-left: -20px;
  margin-right: -20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
  overflow: hidden; /* Ensures images don’t overflow */
}

.img-box[data-anim="left"] {
  transform: translate(-50px, 50px);
}

.img-box[data-anim="right"] {
  transform: translate(50px, 50px);
}

.img-box.reveal {
  opacity: 1;
  transform: translate(0, 0);
}

.img-box img {
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
   -webkit-mask-image: 
  linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%),
  linear-gradient(to left, transparent 0%, black 15%, black 85%, transparent 100%);
-webkit-mask-composite: intersect;
mask-image: 
  linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%),
  linear-gradient(to left, transparent 0%, black 15%, black 85%, transparent 100%);
mask-composite: intersect;
}

button {
  padding: 20px;
  background: #6AE0F2;
  border: none;
  color: #000;
  font-weight: lighter;
  cursor: pointer;
  margin-top: 10px;
  font-size: 1.5rem;
  text-transform: lowercase;
}

.text-box span {
  font-size: 4rem;
}

.text-box-right span {
  font-size: 4rem;
}

.text-box p{
  font-size: 2rem;
}

.text-box-right p{
  font-size: 2rem;
}



.services {
  padding: 50px 20px;
  background: #000000;
  color: white;
  text-align: center;
}

.services h2 {
  font-size: 5rem;
  margin-bottom: 40px;
}

.services .our {
  font-size: 4rem;
  font-weight: 300;
  color: #ffffff;
}

.services .expertise {
  color: #6AE0F2;
  font-weight: 500;
  text-transform: lowercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
}

.service {
  position: relative;
  overflow: hidden;
  width: 490px;
  height: 200px;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  text-shadow: 1px 1px 4px black;
  cursor: pointer;
  z-index: 1;
}

.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease;
  z-index: 0; 
}

.service:hover::before {
  transform: scale(1.5);
}

.service span {
  position: relative;
  top: 30%;
  background-color: #00000028;
  z-index: 1; 
}

.schedule-section {
  position: relative;
  height: 90vh;
  background-image: url('images/reception.jpg');
  background-size: 200% auto; /* or 130% */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll; /* default */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #000;
  overflow: hidden;
}

.schedule-overlay {
  background-color: rgba(255, 255, 255, 0.47); /* White with opacity */
  padding: 2.5rem;
  max-width: 900px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.schedule-overlay span {
  font-size: 3rem;
  text-transform: lowercase;
  margin-bottom: 30px;
  font-weight: 100;
}

.schedule-overlay span strong {
  font-size: 3rem;
  font-weight: 500;
}

.schedule-overlay p {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 2.5rem;
}

.schedule-button {
  background-color: #6AE0F2;
  color: #000;
  padding: 0.5rem 1.5rem;
  margin: 50px;
  font-size: 120%;
  text-decoration: none;
  font-weight: 300;
  transition: background-color 0.3s ease;
  text-transform: lowercase;
}

.schedule-button:hover {
  background-color: #000000;
  color: #ffffff;
}


.map-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

.map-heading {
  font-size: 60px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #6AE0F2;
  text-align: center;
}

.map-container {
  width: 100vw; /* Full width */
  margin: 0; /* Remove centering */
  border-radius: 0; /* Optional: 0 for edge-to-edge, or keep 12px if you want curved corners */
  overflow: hidden;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  min-height: 100vh;
}

.contact-image {
  background-image: url('images/contact-us.jpg');
  width: 100%;
  object-fit: cover;
  zoom: 120%;
  min-height: 650px;
  display: block;
  flex: 1 1 50%;
}


.contact-form {
  flex: 1 1 50%;
  padding: 40px;
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-size: 4rem;
  margin-bottom: 30px;
  font-weight: 500;
  color: #fff;
}

.contact-form h2 span {
  font-weight: 200;
  color: #6AE0F2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

label {
  margin-bottom: 8px;
  font-size: 15px;
  color: #fff;
}

select option {
  background-color: #111;
  color: #fff;
  border: 1px solid #ffffff;
}

select:invalid {
  color: #464646; /* your placeholder color */
}


input,
select,
textarea {
  padding: 20px;
  background-color: transparent;
  border: 1px solid #fff;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

.consent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consent input {
  margin-right: 6px;
}

button {
  width: 150px;
  padding: 10px;
  background-color: #6AE0F2;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: lowercase;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #6AE0F2;
}


.smilegallery {
  padding: 50px 20px;
  background: #ffffff;
  color: rgb(0, 0, 0);
  text-align: center;
}

.smilegallery h2 {
  font-size: 5rem;
  margin-bottom: 40px;
}

.smilegallery .smile {
  font-size: 4rem;
  font-weight: 300;
  color: #000000;
}

.smilegallery .gallery {
  color: #6AE0F2;
  font-weight: 500;
  text-transform: lowercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 5px;
}

.sg {
  position: relative;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  font-weight: 500;
  text-shadow: 1px 1px 4px black;
  cursor: pointer;
  z-index: 1;
}

.sg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease;
  z-index: 0; 
}

.sg:hover::before {
  transform: scale(1.2);
}

.clinicgallery {
  padding: 50px 20px;
  background: #ffffff;
  color: rgb(0, 0, 0);
  text-align: center;
}

.clinicgallery h2 {
  font-size: 5rem;
  margin-bottom: 40px;
}

.clinicgallery .clinic {
  font-size: 4rem;
  font-weight: 300;
  color: #000000;
}

.clinicgallery .gallery {
  color: #00daff;
  font-weight: 500;
  text-transform: lowercase;
}

.clinicgallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1px;
}

.clinicgallery .cg {
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  text-shadow: 1px 1px 4px black;
  cursor: pointer;
  z-index: 1;
}

.clinicgallery .cg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease;
  z-index: 0;
}

.clinicgallery .cg:hover::before {
  transform: scale(1.5);
}

/* Footer Main Style */
.main-footer {
    background-color: #000000;
    background-size: cover;
    background-position: center;
    padding: 60px 0 20px;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
}

/* Container Layout */
.main-footer .container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0px 120px;
}

/* Footer Row Layout */
.widgets-section .row {
    display: flex;
    gap: 10px;
}

.footer-content{
  max-width: 500px;
}

/* Footer Column */
.footer-column {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Footer Headings */
.footer-widget h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Logo and Description */
.logo-widget .logo img {
    max-height: 90px;
    margin-bottom: 15px;
    background-color: #e1e0e000;

}

.logo-widget .text {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

/* Address and Contact List */
.list-style-two {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.list-style-two li {
    margin-bottom: 12px;
    font-size: 15px;
}

.list-style-two li a {
    color: #ffffff;
    text-decoration: none;
}

.list-style-two li a:hover {
    color: #6AE0F2;
}

/* Footer List Links */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list li a:hover {
    color: #6AE0F2;
}

/* Time List Styling */
.time-list {
    list-style: none;
    padding: 0;
}

.time-list li {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
}

.time-list li span {
    color: #ffffff;
}

/* Social Media Icons */
.social-box {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin-left: -500px;
}

.social-box li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #000000;
    font-size: 10px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    transition: background 0.3s;
}

.social-box li a:hover {
    background-color: #6AE0F2;
    color: #000;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}


.footer-bottom a {
    color: #6AE0F2;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Ensure all text and blocks are left-aligned */
.main-footer,
.footer-widget,
.footer-widget h2,
.list-style-two,
.footer-list,
.time-list,
.footer-bottom,
.logo-widget,
.social-box {
    text-align: left;
}

.testimonials-section {
  text-align: center;
  padding: 40px 20px;
  background-image: url('images/cg2.jpg');
  border-bottom: white;
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 50px;
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.carousel-container {
  position: relative;
  width: 520px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s ease;
  width: 1560px; /* 3 cards * 520px */
}

.testimonial-card {
  min-width: 520px;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin: 0 0px;
  position: relative;
  overflow: hidden;
}

.testimonial-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: #000000;
  font-size: 1.05rem;
  font-weight: 300;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);

}

.testimonial-overlay h4 {
  margin-top: 12px;
  font-weight: 500;
  font-size: 1.2rem;
  color: #000000;
}

.arrow {
  position: absolute;
  top: 91%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  background: rgba(0, 0, 0, 0.3);
  color: #000000;
  border: none;
  padding: 1px 1px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}

.arrow:hover {
  background: #6AE0F2(255, 255, 255, 0.5);
}

.arrow.left {
  left: -25px;
}

.arrow.right {
  right: -25px;
}

.testimonial-button {
  margin-top: 40px;
}

.testimonial-button button {
  background-color: #6AE0F2;
  border: #000;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(106, 224, 242, 0.4);
  transition: all 0.3s ease;
}

.testimonial-button button:hover {
  background-color: #000;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* dental-promo component */
.dental-promo {
  display: flex;
  align-items: center;
  gap: 4rem;
  background-color: white;
  margin: 0 auto;
  padding: 2rem;
}

.dental-promo__image-wrapper {
  flex: 1;
  max-width: 600px;
}

.dental-promo__image {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.dental-promo__content {
  flex: 1;
  max-width: 700px;
}

.dental-promo__subtitle {
  font-size: 3rem;
  font-weight: 400;
  color: #000000;
  text-transform: lowercase;
  margin-bottom: 0.25rem;
}

.dental-promo__title {
  font-size: 3.25rem;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.dental-promo__underline {
  display: block;
  width: 80px;
  height: 2px;
  background-color: #6AE0F2;
  margin-bottom: 1.5rem;
}

.dental-promo__text {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dental-promo__text--last {
  margin-bottom: 0;
}

.dental-promo__phone {
  font-weight: 600;
  text-decoration: underline;
  color: inherit;
}

.banner {
  position: relative;
  display: flex;
  align-items: flex-start;     /* keep vertical start */
  justify-content: flex-start; /* align content to left */
  height: 400px;
  padding-left: 2rem;          /* space from the left edge */
  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('images/solea-laser.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.banner .content {
  max-width: 1400px;
  padding: 2rem 1rem;
  /* remove any auto margins that center it */
  margin: 0;
}
    /* small subtitle */
    .banner .content h2 {
      font-size: 1.5rem;
      font-weight: 400;
      text-transform: lowercase;
      margin-bottom: 1.5rem;
      opacity: 0.9;
    }

    /* main title */
    .banner .content h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    /* underline accent */
    .banner .content .underline {
      display: block;
      width: 80px;
      height: 3px;
      background-color: #fff;
      margin-bottom: 1.5rem;
    }

    /* paragraph text */
    .banner .content p {
      font-size: 1rem;
      line-height: 1.6;
      max-width: 600px;
      margin-bottom: 1rem;
    }

    

    /* phone link */
    .banner .content a {
      font-weight: 600;
      text-decoration: underline;
      color: #fff;
    }

    /* override per your request */
    .banner .content span {
      font-size: 3rem;
      position: fixed;
      margin-left: 20px;
    }

    

     .faq-section {
      margin: 0 auto;
      background-color: white;
      padding: 2rem 1rem;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      color: #000000;
    }

    .faq-section__header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .faq-section__title-top {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .faq-section__title-bottom {
      font-size: 4rem;
      font-weight: 300;
      margin-bottom: 1rem;
    }
    .faq-section__accent {
      display: inline-block;
      width: 2px;
      height: 40px;
      background: #6AE0F2;
    }

    .faq-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}


    .faq-item {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap; /* ✅ force single line */
  overflow: hidden;
  text-overflow: ellipsis; /* optional: add ... for overflow */
}


    .faq-item__icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
    }
    .faq-item__icon circle {
      fill: none;
      stroke: #6AE0F2;
      stroke-width: 2;
    }
    .faq-item__icon path {
      fill: #6AE0F2;
    }

    .faq-item__text {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #000000;
    }
    .faq-item__text ul {
      list-style: disc inside;
      margin: 0.5rem 0;
      padding-left: 1rem;
      color: #000;
    }

    
    .treatment-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #f5f5f5;

}

.treatment-box {
  background-color: white;
  padding: 2rem;
  width: 400px;
  height:350px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.treatment-box:hover {
  transform: translateY(-5px);
}

.icon img,
.icon svg {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.treatment-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
  text-transform: lowercase;
}

.treatment-box p {
  font-size: 1.3rem;
  color: #000000;
  line-height: 1.5;
}

.procedure {
  display: flex;
  align-items: center;
  gap: 6rem;
  background-color: white;
  margin: 0;
  padding: 2rem;
}

.procedure__image-wrapper {
  flex: 1;
  max-width: 600px;
}

.procedure__image {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.procedure__content {
  flex: 1;
  max-width: 700px;
}

.procedure__subtitle {
  font-size: 3rem;
  font-weight: 400;
  color: #000000;
  text-transform: lowercase;
  margin-bottom: 0.25rem;
}

.procedure__title {
  font-size: 3.25rem;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.procedure__text p{
  font-size: 12rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.symptom-list {
      background: #ffffff;
      max-width: 500px;
      margin: auto;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .symptom {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      font-size: 18px;
    }
    .checkmark {
      width: 24px;
      height: 24px;
      margin-right: 12px;
      background-color: #4CAF50;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgb(255, 255, 255);
      font-weight: bold;
    }


@media (min-width: 360px) and (max-width: 390px){
  /* Show hamburger */
  .hamburger {
    display: block;
    position: fixed;
    top: 3px;
    right: 2px;
    z-index: 1002;
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  /* Nav links slide in from right */
  .nav-links {
    position: fixed;
    top: 90px; /* below navbar */
    right: 0;
    height: calc(100vh - 90px);
    width: 80%;
    background-color: #000;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem 1rem;
    font-size: 1.2rem;
    text-align: left;
    color: white;
    margin-left: 10px;
  }

  /* Dropdown inside mobile nav */
  .dropdown-menu {
    position: static;
    background: transparent;
    padding-left: 1.5rem;
    max-height: 0;
    overflow:visible;
    transition: max-height 0.3s ease;
  }

  /* Show dropdown menu when active */
  .dropdown-menu.show-dropdown {
    margin-left: -200px;
    max-height: 300px; /* enough to show items */
  }

  /* Slide panels - full screen width */
  .slide-panel {
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: #111;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1002;
    padding: 1rem;
    box-sizing: border-box;
  }

  /* Show active panel */
  .slide-panel.active {
    transform: translateX(0);
  }

  /* Panel inner stacks vertically */
  .panel-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Panel image resized */
  .panel-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Panel content fills width */
  .panel-content {
    width: 100%;
  }

  /* Close button positioning */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
  }

  /* Navbar tweaks */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #000;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    z-index: 1003;
  }

  .logo {
    margin-top: 10px;
    height: 30px;
  }

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Position text and button absolutely in the center of video area */
.hero-text,
.hero-text2
 {
  position: absolute;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 15px;
}

/* Center text near middle of video using vh */
.hero-text {
  top: 30vh; /* Push down from top of screen */
  font-size: 30px;
  left: 50%;
  font-weight: bold;
}

.hero-text2 {
  top: 55vh;
  left: 50%;
  font-size: 24px;
  line-height: 1.5;
}

.hero-buttons {
  position: absolute;
  top: 75vh;

  left: 25%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.hero-button {
  padding: 0.75rem 0.5rem;
  background-color: #6AE0F2;
  min-width: 180px;
  color: rgb(0, 0, 0);
  border: none;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #ffffff;
}

.specialist-section {
    padding: 1rem 1rem;
    height: auto;
  }

  .specialist-container {
    flex-direction: column;
    align-items: center;
  }

  .doc-img {
    width: 90%;
    max-width: 300px;
    height: 350px;
  }

  .specialist-text {
    margin-left: 0;
    text-align: center;
    max-width: 90%;
    padding-top: 1rem;
  }

  .specialist-text h2 {
    font-size: 2.2rem;
  }

  .specialist-text span {
    font-size: 1rem;
    line-height: 1.5;
  }

  .slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

.fade-in.visible {
  transform: translateY(0);
  opacity: 1;
}

 .excellence-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .excellence-image {
    min-width: 280px;
    max-width: 300px;
    margin-bottom: 0.1rem;
  }

  .excellence-text {
    text-align: center;
    display: block;
    padding: 0 0rem;
  }

  
.excellence-text.visible {
  opacity: 1 !important;
  transform: translateY(0);
}


  .excellence-text span {
    font-size: 1.8rem;
  }

  .excellence-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }

  .point-icon {
    margin: 0 auto 0.5rem;
  }

  .excellence-point h4 {
    font-size: 1.2rem;
  }

  .excellence-point p {
    font-size: 1rem;
  }

  .excellence-btn-wrapper {
    margin-top: 0.1rem;
  }

.content-section {
  padding: 1rem 01rem;
  background: #000000;
  height: 60vh;

}

.content-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  
}

.contentmedia {
  width: 50%;
  object-fit: cover;
}

.content-text {
  transform: translateY(40px);
  opacity: 1;
  transition: all 0.8s ease;
}

.content-text span {
  max-width: 400px;
  margin-left: -3ch;
  font-size: 1rem;
}

.content-text .exc {
  font-size: 1.5rem;
  font-weight: 300; /* Light */
}

.content-text .full {
  font-size: 1.5rem;
  font-weight: 600; /* Extra Bold */
  text-align: left !important;
}

.content-text p {
  margin-top: 10%;
  font-size: 0.9rem;
  margin-left: -180px;
  min-width: 350px;
}

.cta-section {
    height: auto;
    padding: 1rem 1rem;
    background-image: url('images/bg2.jpg') ;
    background-size:auto; /* more zoomed-in for small screens */
  padding: 1rem;

  }

  .cta-overlay {
    padding: 1.5rem;
    border-radius: 8px;
  }

  .cta-overlay h2 {
    font-size: 2rem;
  }

  .cta-overlay h2 strong {
    font-size: 1.8rem;
  }

  .cta-overlay p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
  }

  .tech-heading h2 {
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-img-container {
    height: 180px;
  }

  .tech-img {
    height: 180px;
  }

  .tech-item h3 {
    font-size: 1.2rem;
    padding: 0 1rem;
    text-align: center;
  }

  .tech-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 1rem;
    text-align: justify;
  }

  .container {
  position: relative; /* Required for absolute positioning inside */
  margin: 3rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

   .section-heading {
    font-size: 2.5rem;
  }

  .img-box {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  margin: 0;
}


.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* optional dim effect */
  /* Smoke-fade effect on edges */
  -webkit-mask-image: 
  linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 90%),
  linear-gradient(to left, transparent 0%, black 15%, black 85%, transparent 100%);
-webkit-mask-composite: intersect;
mask-image: 
  linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%),
  linear-gradient(to left, transparent 0%, black 15%, black 85%, transparent 100%);
mask-composite: intersect;
}

  
.text-box,
.text-box-right {
  position: relative;
  z-index: 2;
  color: rgb(0, 0, 0);
  padding: 2rem;
  width: 100%;
  max-width: 700px;
}


  .text-box span,
  .text-box-right span {
    font-size: 2.2rem;
  }

  .text-box p,
  .text-box-right p {
    font-size: 1.1rem;
  }

  button {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }

  .services {
  padding: 10px 10px 1px 10px;
  background: #000000;
  color: white;
  text-align: center;
}

  .services h2 {
    font-size: 2.8rem;
  }

  .services .our {
    font-size: 2rem;
  }

  .services .expertise {
    font-size: 2rem;
  }

  .grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1px;
  }

  .service {
    width: 100%;
    height: 170px;
    font-size: 1.2rem;
    text-align: center;
    align-items: center;
  }

  .service span {
    top: 20%;
    padding:  3px;
    font-size: 1.3rem;
  }

  .schedule-section {
  position: relative;
  
  height: 50vh;
  background-image: url('images/reception.jpg');
  background-size: 200% auto; /* or 130% */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll; /* default */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0rem;
  color: #000;
  overflow: hidden;
}

.schedule-overlay {
  background-color: rgba(255, 255, 255, 0.47); /* White with opacity */
  padding: 2.5rem;
  max-width: 900px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.schedule-overlay span {
  font-size: 2rem;
  text-transform: lowercase;
  margin-bottom: 30px;
  font-weight: 100;
}

.schedule-overlay span strong {
  font-size: 2rem;
  font-weight: 500;
}

.schedule-overlay p {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 2.5rem;
}

.schedule-button {
  background-color: #6AE0F2;
  color: #000;
  padding: 0.5rem 0.5rem;
  margin: 50px;
  font-size: 80%;
  text-decoration: none;
  font-weight: 300;
  transition: background-color 0.3s ease;
  text-transform: lowercase;
}

.testimonials-section {
  text-align: center;
  padding: 40px 20px;
  background-image: url('images/newgen.jpg');
  border-bottom: white;
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 50px;
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.carousel-container {
  position: relative;
  width: 350px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s ease;
  width: 900px; /* 3 cards * 520px */
}

.testimonial-card {
  min-width: 50px;
  height: 40px;
  background-size: cover;
  background-position: center;
  margin: 0 0px;
  position: relative;
  overflow: hidden;
}

.testimonial-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: #000000;
  font-size: 1.05rem;
  font-weight: 300;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);

}

.testimonial-overlay h4 {
  margin-top: 12px;
  font-weight: 500;
  font-size: 1.2rem;
  color: #000000;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  background: rgba(0, 0, 0, 0.3);
  color: #000000;
  border: none;
  padding: 1px 1px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.arrow.left {
  left: -25px;
}

.arrow.right {
  right: -25px;
}

.testimonial-button {
  margin-top: 40px;
}

.testimonial-button button {
  background-color: #6AE0F2;
  border: #000;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(106, 224, 242, 0.4);
  transition: all 0.3s ease;
}

.testimonial-button button:hover {
  background-color: #000;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


}

@media (min-width: 412px) and (max-width: 415px) {
  /* Show hamburger */
  .hamburger {
    display: block;
    position: fixed;
    top: 3px;
    right: 2px;
    z-index: 1002;
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  /* Nav links slide in from right */
  .nav-links {
    position: fixed;
    top: 90px; /* below navbar */
    right: 0;
    height: calc(100vh - 90px);
    width: 80%;
    background-color: #000;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-align: left;
    color: white;
    margin-left: 10px;
  }

  /* Dropdown inside mobile nav */
  .dropdown-menu {
    position: static;
    background: transparent;
    padding-left: 1.5rem;
    max-height: 0;
    overflow:visible;
    transition: max-height 0.3s ease;
  }

  /* Show dropdown menu when active */
  .dropdown-menu.show-dropdown {
    margin-left: -200px;
    max-height: 300px; /* enough to show items */
  }

  /* Slide panels - full screen width */
  .slide-panel {
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: #111;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1002;
    padding: 1rem;
    box-sizing: border-box;
  }

  /* Show active panel */
  .slide-panel.active {
    transform: translateX(0);
  }

  /* Panel inner stacks vertically */
  .panel-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Panel image resized */
  .panel-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Panel content fills width */
  .panel-content {
    width: 100%;
  }

  /* Close button positioning */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
  }

  /* Navbar tweaks */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #000;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    z-index: 1003;
  }

  .logo {
    margin-top: 10px;
    height: 30px;
  }

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 80%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Position text and button absolutely in the center of video area */
.hero-text,
.hero-text2
 {
  position: absolute;
  width: 100%;
  text-align:center;
  color: white;
  z-index: 1002;
  padding: 0 15px;
}

/* Center text near middle of video using vh */
.hero-text {
  top: 33vh; /* Push down from top of screen */
  font-size: 50px;
  left: 50%;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.hero-text2 {
  top: 55vh;
  left: 50%;
  font-size: 24px;
  line-height: 1.5;
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.hero-buttons {
  position: absolute;
  top: 73%;
  left: 25%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.hero-button {
  padding: 0.75rem 0.75rem;
  background-color: #6AE0F2;
  min-width: 250px;
  color: rgb(0, 0, 0);
  border: none;
  font-weight: 400;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #ffffff;
}

.specialist-section {
    padding: 1rem 1rem;
    height: auto;
  }

  .specialist-container {
    flex-direction: column;
    align-items: center;
  }

  .doc-img {
    width: 90%;
    max-width: 300px;
    height: 350px;
  }

  .specialist-text {
    margin-left: 0;
    text-align: center;
    max-width: 90%;
    padding-top: 1rem;
  }

  .specialist-text h2 {
    font-size: 2.2rem;
  }

  .specialist-text span {
    font-size: 1rem;
    line-height: 1.5;
  }


}

.our-story-section {
  padding: 80px 20px;
  background-color: #000000;
  display: flex;
  justify-content: center;
}

.our-story-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.our-story-text {
  flex: 1 1 500px;
  color: #ffffff;
}

.our-story-text h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.our-story-text h1 span {
  font-weight: 100;
  border-bottom: 3px solid #6AE0F2; /* Aqua underline */
  padding-bottom: 5px;
  margin-right: 8px;
}

.our-story-text strong {
  font-weight: 700;
  color: #ffffff; /* Aqua color */
}

.our-story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.our-story-image {
  flex: 1 1 500px;
  text-align: center;
}

.our-story-image img {
  max-width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.abt-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.abt-container {
  display: flex;
  flex-direction: row;
  min-width: 1200px;
  margin: 20px;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.abt-image-box img {
  width: 100%;
  min-width: 600px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 5.95);
}

.abt-text-box {
  flex: 1;
  min-width: 450px;
  margin-left: 50px;
}

.abt-text-box h2 {
  font-size: 58px;
  font-weight: 100;
  margin-bottom: 20px;
  color: #000000;
}

.abt-text-box h2 span {
  font-weight: 500;
  color: #000;
}

.abt-text-box .bold {
  font-weight: 600;
  margin-bottom: 12px;
}

.abt-text-box p {
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 12px;
  color: #000000;
}


/* === SECOND CONTAINER STYLING (image right, text left) === */
.abt-container.second {
  flex-direction: row-reverse;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.abt-container.second .abt-image-box {
  flex: 1;
  min-width: 300px;
}

.abt-container.second .abt-text-box {
  flex: 1;
  min-width: 300px;
  margin-left: 0;
  margin-right: 50px; /* ensures spacing between text and image */
}

.abt-container.second .abt-image-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .abt-container,
  .abt-container.second {
    flex-direction: column;
    text-align: center;
    min-width: unset;
  }

  .abt-text-box,
  .abt-container.second .abt-text-box {
    margin: 0;
    padding-top: 20px;
  }

  .abt-text-box h2,
  .abt-container.second .abt-text-box h2 {
    font-size: 40px;
  }

  .abt-image-box img,
  .abt-container.second .abt-image-box img {
    min-width: unset;
    max-width: 100%;
  }
}

.learn-more-btn {
  display: inline-block;
  background-color: #6AE0F2;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: black;
}

/* === Team Section Layout === */
.team-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 3.5rem;  /* Increase this value as needed */
  font-weight: 800;
  margin-bottom: 3rem;
  text-transform: lowercase;
  text-align: center;
  color: #000000;
}


/* === Grid for Exactly 2x2 Layout === */
.team-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem; /* First value is row gap, second is column gap */
  justify-items: center;
}


.team-card {
  width: 65%; /* Reduced from 80% */
  max-width: 380px; /* Reduced from 500px */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 1.2rem; /* Slightly tighter padding */
  margin-bottom: -2.4rem; /* << Reduced space between image and title */
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

/* === Image Container === */
.image-container {
  position: relative;
  width: 70%;
  max-width: 160px;
  margin: 0 auto 1rem auto; /* Adds space below image */
  overflow: hidden;
  aspect-ratio: 3 / 4;
}


.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.default-img {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.hover-img {
  opacity: 0;
  z-index: 2;
  transform: scale(0.85); /* Smaller size by default */
}

/* On hover show smaller hover image */
.image-container:hover .default-img {
  opacity: 0;
}

.image-container:hover .hover-img {
  opacity: 1;
}

/* === Content === */
.team-content {
  flex: 1;
}

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
}


.team-title {
  font-size: 0.8rem; /* Slightly smaller */
  font-weight: bold;
  background-color: rgb(255, 255, 255);
  color: rgb(90, 219, 255);
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0 !important; /* Remove top margin */
  margin-bottom: 0.6rem; /* Tighter space below title */
}

.team-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #000000;
  text-align: justify;
  text-justify: inter-word;
}


/* === Responsive === */
@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-container {
    width: 100%;
    height: auto;
  }

  .team-content {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .team-container {
    grid-template-columns: 1fr;
  }
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* Treatment Section */

.treatment-section2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.treatment-block2 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.treatment-block2.reverse {
  flex-direction: row-reverse;
}

.treatment-content, .treatment-image {
  flex: 1;
}

.treatment-content {
  text-align: justify;
  display: flex;
  flex-direction: column;
  color: black;
  justify-content: center;
}

.treatment-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
}


.justified {
  text-align: justify;
}


.treatment-content h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-transform: capitalize;
  color: #6AE0F2; /* optional brand color */
  font-family: 'Sen', sans-serif; /* optional font */
}

/* Responsive Design */
@media (max-width: 768px) {
  .treatment-block,
  .treatment-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .treatment-image img {
    width: 100%;
    max-width: 500px; /* This matches the Laser Dentistry image size */
    height: auto;     /* Ensures natural aspect ratio */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
  
  .treatment-content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .treatment-block,
  .treatment-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .treatment-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .treatment-content {
    text-align: left;
  }
}

.learn-more-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.8rem;
  background-color: #6AE0F2; /* matching your h2 title color */
  color: #ff0000;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-family: 'Sen', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.learn-more-btn:hover {
  background-color: #57cadd;
  transform: translateY(-2px);
}

.learn-more-btn:active {
  background-color: #4fb6c6;
  transform: translateY(0);
}

.learn-more-btn {
  margin-top: 1rem; /* smaller gap from text */
}


html {
  scroll-behavior: smooth;
}

/* Section Styling */
.why-choose-us {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-choose-us h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.why-choose-us .normal {
  font-weight: 300;
  color: #000;
}

.why-choose-us .bold {
  font-weight: 700;
  color: #6AE0F2;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.082);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgb(255, 255, 255);
}

.feature-card .icon {
  margin-bottom: 0.75rem; /* Reduced spacing */
}

.feature-card .icon img {
  filter: invert(73%) sepia(24%) saturate(696%) hue-rotate(156deg) brightness(101%) contrast(101%);
  margin-bottom: 0.75rem; /* Reduced spacing for image-based icons */
}

.feature-card .icon svg,
.feature-card .icon i {
  transition: fill 0.3s ease, color 0.3s ease;
  stroke: #6AE0F2;
  color: #6AE0F2;
  margin-bottom: 0.75rem; /* Reduced spacing for SVG or icon fonts */
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Button Styling */
.learn-more-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #6AE0F2;
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #000000;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #f9f9f9 url('images/bg2.jpg') no-repeat center/cover;
}

.mission-title {
  font-size: 42px;         /* was 32px */
  font-weight: 500;        /* more visual impact */
  line-height: 1.3;        /* improved readability */
  color: #000;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


.mission-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; /* optional */
  gap: 2rem;
  margin-top: 2rem; /* center and add bottom space */
}

.stat-block {
  flex: 0 0 160px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.5s ease;
}

.stat-block:hover {
  transform: translateY(-5px);
}

.stat-block i {
  color: #000;
  margin-bottom: 12px;
}

.stat-block h3 {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.stat-block p {
  margin: 8px 0 0;
  color: #000;
  font-size: 18px;
}

/* ✅ Call button wrapper centered below stat blocks */
/* 🛠 Fixing layout alignment for the call button */
.call-button-wrapper {
  width: 100%;
  display: flex;            /* Use flex to center */
  justify-content: center;  /* Center horizontally */
  margin-top: 2rem;
}



.call-button {
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.call-button:hover {
  background: #6AE0F2;
}

.call-button i {
  margin-right: 10px;
}

/* ✅ Responsive tweaks */
@media (max-width: 768px) {
  .stat-block {
    flex: 0 0 45%;
  }

  .mission-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .stat-block {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .call-button {
    font-size: 14px;
    padding: 12px 20px;
    flex-wrap: wrap;
    text-align: center;
  }
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.stat-block {
  width: 150px;
}


/*full mouth rehabilitation section*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  color: #333;
}

.bridge-section {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.bridge-container {
  display: flex;
  align-items: center;
  gap: 70px; /* Increase gap between image and text to match reference */
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.bridge-image {
  flex: 0 0 44%; /* Increased from 45% */
  display: flex;
  justify-content: center;
}

.bridge-image img {
  width: 520px; /* Increased from 500px */
  height: 670px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.bridge-content {
  flex: 0 0 48%; /* Slightly reduced from 50% to give room */
}


.bridge-content h2 {
  font-size: 2.4rem;
  color: #000000;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.4;
}

.bridge-content h2 span {
  font-weight: 700;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 4px;
}

.bridge-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}

.bridge-content strong {
  font-weight: 600;
}

@media (min-width: 992px) {
  .bridge-container {
    flex-wrap: nowrap;
  }
}

/*rehabilitation section*/
.rehab-section {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Optional: adds parallax effect */
  color: #fff; /* Optional: make text readable if background is dark */
}

.rehab-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.rehab-content {
  flex: 1 1 55%;
}

.rehab-content h2 {
  font-size: 2.3rem;
  font-weight: 300;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.rehab-content h2 strong {
  font-weight: 700;
}

.intro-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.rehab-list {
  list-style: none;
  padding: 30px 20px;
  margin: 0 auto; /* Center the whole list */
  background: #f7f7f7;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 500px; /* Keeps it nicely centered and narrow */
}


.rehab-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #222;
  margin-bottom: 20px;
}


.rehab-list .svg-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border: 2px solid #00BCE4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0; /* Already using gap now */
}


.rehab-list .svg-icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rehab-list .icon {
  width: 36px;
  height: 36px;
  margin-right: 12px;
}

.rehab-image {
  flex: 1 1 40%;
  text-align: center;
}

.rehab-image img {
  width: 100%;
  max-width: 460px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  margin-bottom: 16px;
}

.bottom-caption {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

/* Responsive */
@media (max-width: 991px) {
  .rehab-container {
    flex-direction: column;
  }

  .rehab-content,
  .rehab-image {
    flex: 1 1 100%;
  }
}

/* Treatments Section */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.full-mouth-rehab {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.full-mouth-rehab h2 {
  font-size: 42px;
  font-weight: bold;
  text-transform: lowercase;
  margin-bottom: 19px;
}

.full-mouth-rehab .subtitle {
  font-size: 28px;
  font-weight: 300;
  text-transform: lowercase;
}

.full-mouth-rehab .underline {
  width: 2px;
  height: 40px;
  background-color: #6AE0F2;
  margin: 20px auto 50px auto;
}

.treatment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.treatment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.icon-circle {
  width: 65px;
  height: 65px;
  border: 2px solid #6AE0F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-circle i {
  color: #6AE0F2;
  font-size: 18px;
}

.treatment-item p {
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
  margin: 0;
}

@media (max-width: 768px) {
  .treatment-item {
    width: 33%;
    margin-bottom: 30px;
  }
}

/* Expect Section */ 
.expect-section {
  padding: 80px 20px;
  text-align: center;
  background-image: url("images/doctorworking.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Optional for subtle parallax effect */
  color: #fff; /* Optional: ensures text is readable on dark image */
}

.expect-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: stretch; /* makes left and right equal height */
  min-height: 400px; /* optional: aligns with reference site */
}

.expect-overlay {
  background: url('images/bg4.jpg') no-repeat center center;
  background-size: cover;
  padding: 40px;
  color: white;
  position: relative;
  z-index: 1;
}

/* Optional: add a dark overlay for better text contrast */
.expect-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* adjust darkness */
  z-index: -1;
}


.expect-left {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expect-left h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.expect-right {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expect-right ol,
.expect-right p {
  text-align: justify;
}

.expect-right ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.expect-right li {
  margin-bottom: 15px;
}

.conclusion {
  margin-bottom: 20px;
}

.about-button {
  display: inline-block;
  background-color: #00d4ff;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.about-button:hover {
  background-color: #034a5a;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .expect-container {
    flex-direction: column;
  }

  .expect-left,
  .expect-right {
    flex: 1 1 100%;
  }

  .expect-left h2 {
    font-size: 1.6rem;
  }
}

/* Testimonial Section */
.testimonial-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 450px;
}

.testimonial-left,
.testimonial-right {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-left {
  background-color: #000;
  color: #fff;
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.quote-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.quote-author {
  font-weight: bold;
}

.testimonial-right {
  background: url('images/bg2.jpg') no-repeat center center;
  background-size: cover;
  color: #000;
}

.testimonial-right h2 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.testimonial-right .subtitle {
  font-size: 2.3rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.review-link {
  color: #00bcd4;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.review-link:hover {
  color: #0097a7;
}

@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
  }

  .testimonial-left,
  .testimonial-right {
    flex: 1 1 100%;
    padding: 30px 20px;
  }

  .testimonial-right h2 {
    font-size: 1.6rem;
  }
}

/* Two Visits Section */
.two-visits-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
}

.two-visits-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.text-column {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

.text-column h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
}

.text-column h2 span {
  font-weight: 500;
}

.visit-step h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  margin: 25px 0 5px;
}

.visit-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.visit-step p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.image-column {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.image-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .two-visits-content {
    flex-direction: column;
  }

  .text-column, .image-column {
    max-width: 100%;
  }
}

/*invisalign section*/

.invisalign-section {
  background-color: white;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}

.invisalign-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.invisalign-text {
  flex: 1 1 500px;
}

.invisalign-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.main-heading {
  display: inline-block;
  font-weight: 700;
  color: #000;
}

.sub-heading {
  display: inline-block;
  font-weight: 300;
  color: #333;
  border-bottom: 3px solid #6ee7f9; /* light aqua underline */
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.invisalign-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}

.invisalign-image {
  flex: 1 1 400px;
}

.invisalign-image img {
  width: 100%;

}

/*tooth cleaning section*/
.whitening-section {
  background: #fff;
  padding: 50px 10px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.whitening-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.image-content img {
  width: 100%;
  height: 500px;
  max-width: 450px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.text-content {
  max-width: 550px;
}

.text-content h2 {
  font-size: 56px;
  font-weight: 400;
  line-height: 0.8;
  margin-bottom: 10px;
}

.text-content h2 span {
  font-weight: 700;
  display: block;
}

.text-content h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #00c4cc;
  margin: 15px 0;
}

.text-content p {
  font-size: 19px;
  line-height: 1.6;
  color: #333;
}

/*whitening about*/

.about-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #00c6f2;
  color: #000;
  padding: 10px 24px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-button:hover {
  background-color: #009ec4;
  color: #fff;
}

.treatment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.treatment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.icon-circle {
  width: 85px;
  height: 85px;
  border: 3px solid #6AE0F2;
  border-radius: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-circle i {
  color: #6AE0F2;
  font-size: 28px;
}

.treatment-item p {
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
  margin: 0;
}

@media (max-width: 768px) {
  .treatment-item {
    width: 33%;
    margin-bottom: 30px;
  }
}

/*inhouse*/
.cad-cam-section {
  padding: 60px 20px;
  background: #fff;
}

.cad-cam-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.cad-cam-image img {
  max-width: 100%;
  width: 540px; /* Adjusted to match reference */
  height: 540px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cad-cam-content {
  max-width: 600px;
  color: #000;
}

.cad-cam-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.cad-cam-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cad-cam-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.treatment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.treatment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.icon-circle {
  width: 85px;
  height: 85px;
  border: 3px solid #6AE0F2;
  border-radius: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-circle i {
  color: #6AE0F2;
  font-size: 28px;
}

.treatment-item p {
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
  margin: 0;
}

@media (max-width: 768px) {
  .treatment-item {
    width: 33%;
    margin-bottom: 30px;
  }
}

/*gummy*/
.gummy-smile-section {
  background: #fff;
  padding: 80px 20px;
}

.gummy-smile-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.gummy-image img {
  width: 100%;
  max-width: 700px;
  height: 650px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.gummy-content {
  flex: 1;
  max-width: 600px;
}

.gummy-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}

.gummy-content .thin {
  font-weight: 500;
  text-transform: lowercase;
}

.gummy-content .underline {
  text-decoration: underline;
  text-decoration-color: #00bcd4;
}

.gummy-content .question {
  font-weight: 500;
}

.gummy-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}

.treatment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.treatment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.icon-circle {
  width: 85px;
  height: 85px;
  border: 3px solid #6AE0F2;
  border-radius: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-circle i {
  color: #6AE0F2;
  font-size: 28px;
}

.treatment-item p {
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
  margin: 0;
}

@media (max-width: 768px) {
  .treatment-item {
    width: 33%;
    margin-bottom: 30px;
  }
}

/*dental imaging selarents*/
.sealants-eligibility {
  background-color: #f9f9f9;
  text-align: center;
  padding: 80px 20px;
}

.sealants-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #111;
}

.sealants-title .light-text {
  font-weight: 300;
  font-size: 24px;
  text-transform: lowercase;
}

.sealants-title .bold-text {
  font-weight: 700;
  font-size: 36px;
  text-transform: lowercase;
}

.underline {
  width: 20px;
  height: 2px;
  background-color: #00cfff;
  margin: 20px auto;
}

.sealants-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  margin-top: 50px;
}

.sealant-item {
  max-width: 300px;
  white-space: nowrap; /* Force text on one line */
  font-size: 16px;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis; /* Optional: adds "..." if text overflows */
}

.sealant-item i {
  font-size: 48px;
  color: #00cfff;
  margin-bottom: 10px;
  display: block;
}

/*invislign section*/
.approach-section {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
}

.approach-heading {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.approach-heading .bold {
  font-weight: 700;
  font-size: 36px;
}

.approach-heading .light {
  font-weight: 300;
  font-size: 28px;
}

.underline {
  width: 20px;
  height: 2px;
  background-color: #00cfff;
  margin: 20px auto 40px;
}

.approach-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.approach-item {
  max-width: 200px;
  color: #000;
}

.approach-item i {
  font-size: 48px;
  color: #00cfff;
  border: 2px solid #00cfff;
  border-radius: 50%;
  padding: 18px;
  margin-bottom: 15px;
}

.approach-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/*all on 4 section*/
.benefits-section {
  background: #f9f9f9;
  text-align: center;
  padding: 80px 20px;
}

.benefits-title {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.benefits-title .light {
  font-weight: 300;
  font-size: 28px;
}

.benefits-title .bold {
  font-weight: 700;
  font-size: 36px;
}

.underline {
  width: 20px;
  height: 2px;
  background-color: #00cfff;
  margin: 20px auto 40px;
}

.benefits-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px 80px;
  justify-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.benefit-item i {
  font-size: 20px;
  color: #00cfff;
  border: 2px solid #00cfff;
  border-radius: 50%;
  padding: 8px;
}

/*tooth jewelry section*/
.botox-benefits-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.botox-title {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.botox-title .bold {
  font-weight: 700;
  text-transform: lowercase;
}

.botox-title .light {
  font-weight: 300;
  font-size: 32px;
}

.underline {
  width: 20px;
  height: 2px;
  background-color: #00cfff;
  margin: 20px auto 40px;
}

.botox-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.botox-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.botox-item i {
  font-size: 20px;
  color: #00cfff;
  border: 3px solid #00cfff;
  border-radius: 80%;
  padding: 8px;
}


/*contact section*/
.contact-section {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.contact-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
}

.contact-image {
  flex: 80px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-container {
  flex: 1.5;
  background-color: #1c1c1c;
  color: #fff;
  padding: 40px 20px;
}

.contact-form-container h2 {
  font-size: 60px;
  font-weight: 300;
  color: #6AE0F2;  
  text-transform: lowercase;
  margin-bottom: 17px;
}

.contact-form-container h2 strong {
  font-weight: 700;
}

.contact-form-container h2 span {
  font-weight: 400;
}

.contact-form-container p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ccc;
}

.required-note {
  font-size: 22px;
  color: #999;
  margin-bottom: 15px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  display: flex;
  gap: 15px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #fff;
}

input,
textarea {
  padding: 10px;
  background: #1c1c1c;
  color: #fff;
  border: 1px solid #aaa;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #00cfff;
}


.submit-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #00cfff;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
  width: 100px;
  border-radius: 2px;
}

.submit-btn:hover {
  background-color: #00b8e0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .row {
    flex-direction: column;
  }

  .contact-form-container {
    padding: 30px 20px;
  }
}
input,
textarea,
select {
  background-color: #fff; /* White background */
  color: #000; /* Black text */
  border: 1px solid #aaa;
  padding: 10px;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #777; /* Light gray placeholder text */
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #00cfff; /* Blue border on focus */
  background-color: #fff; /* Stay white even when focused */
}
















.form-row {
    display: flex;
    justify-content: space-between; 
    gap: 20px; 
    margin-bottom: 20px; 
}

.form-group {
    flex: 1; 
    width: 100%;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box; 
    padding: 10px;
}

.form-group.full-width {
    flex: 100%; 
    width: 100%;
}


@media (max-width: 768px) {
    .form-row {
        flex-direction: column; 
        gap: 0;
    }
}