inherit:root{
--white:#ffffff;
--light:#f8fafc;
--border:#e2e8f0;
--text:#0f172a;
--muted:#64748b;
--dark:#020617;
--soft:#f1f5f9;
}

/* RESET */

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

html{
scroll-behavior:smooth;
}

body{
font-family:Inter,Arial,sans-serif;
background:var(--white);
color:var(--text);
overflow-x:hidden;
line-height:1.6;
}

a{
text-decoration:none;
color:inherit;
}

img{
max-width:100%;
display:block;
}

/* CONTAINER */

.container{
width:min(1180px,calc(100% - 40px));
margin:0 auto;
}

/* HEADER */

.site-header{
position:sticky;
top:0;
z-index:1000;
background:rgba(255,255,255,.96);
backdrop-filter:blur(12px);
border-bottom:1px solid var(--border);
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:28px;
padding:18px 0;
}


/* BRAND */

.brand{
display:flex;
align-items:center;
gap:24px;
min-width:max-content;
}

.custom-logo-link{
display:flex !important;
align-items:center !important;
justify-content:center !important;
flex-shrink:0 !important;
}

.custom-logo{
width:85px !important;
height:85px !important;
object-fit:contain !important;
display:block !important;
}

.brand img{
width:85px !important;
height:85px !important;
object-fit:contain !important;
display:block !important;
}

.brand h1{
font-size:22px;
font-weight:700;
line-height:1.15;
margin:0;
color:#0f172a;
}

.brand p{
margin-top:4px;
font-size:12px;
letter-spacing:3px;
text-transform:uppercase;
color:var(--muted);
}

/* NAVIGATION */

.main-nav{
display:flex;
align-items:center;
gap:26px;
font-size:14px;
color:#475569;
}

.main-nav a{
transition:.3s ease;
}

.main-nav a:hover{
color:var(--text);
}

/* BUTTONS */

.header-btn,
.primary-btn,
.contact-form button{
background:var(--dark);
color:var(--white);
padding:13px 22px;
border-radius:999px;
font-size:14px;
display:inline-block;
border:none;
cursor:pointer;
transition:.3s ease;
}

.header-btn:hover,
.primary-btn:hover{
opacity:.9;
}

.secondary-btn{
border:1px solid var(--border);
padding:13px 22px;
border-radius:999px;
font-size:14px;
display:inline-block;
background:#fff;
}

/* MOBILE MENU */

.menu-toggle{
display:none;
background:#fff;
border:1px solid var(--border);
border-radius:12px;
padding:10px 13px;
cursor:pointer;
}

/* HERO */

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

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:56px;
align-items:center;
}

.eyebrow{
font-size:13px;
letter-spacing:4px;
text-transform:uppercase;
font-weight:700;
color:var(--muted);
margin-bottom:16px;
}

.hero-content h2,
.section-heading h2,
.contact-form-card h2{
font-size:clamp(38px,5vw,58px);
line-height:1.08;
letter-spacing:-1.5px;
margin-bottom:24px;
}

.hero-content p,
.section-heading p,
.content-card p,
.info-card p,
.service-card p,
.contact-form-card p,
.clinic-card p,
.testimonial-card p{
color:var(--muted);
line-height:1.8;
}

.button-row{
display:flex;
gap:14px;
margin-top:32px;
flex-wrap:wrap;
}

/* SLIDER */

.slider{
position:relative;
height:520px;
border-radius:32px;
overflow:hidden;
border:1px solid var(--border);
background:var(--soft);
box-shadow:0 25px 70px rgba(15,23,42,.12);
}

.slide{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity .8s ease;
}

.slide.active{
opacity:1;
}

.slider-overlay{
position:absolute;
inset:auto 0 0 0;
padding:32px;
background:linear-gradient(to top,rgba(2,6,23,.7),transparent);
color:#fff;
}

.slider-overlay span{
font-size:12px;
letter-spacing:3px;
text-transform:uppercase;
}

.slider-overlay h3{
margin-top:8px;
font-size:22px;
}

/* SECTIONS */

.preview-section,
.page-section,
.home-services{
padding:90px 0;
}

.light-bg,
.preview-section{
background:var(--light);
}

.card-grid{
display:grid;
gap:24px;
}

.card-grid.three,
.services-grid,
.facility-grid{
grid-template-columns:repeat(3,1fr);
}

.info-card,
.content-card,
.service-card,
.testimonial-card,
.clinic-card,
.contact-form-card,
.facility-card{
background:#fff;
border:1px solid var(--border);
border-radius:28px;
padding:32px;
box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.info-card h3,
.service-card h3,
.content-card h3,
.clinic-card h3{
font-size:24px;
margin-bottom:18px;
}

.info-card a{
display:inline-block;
margin-top:18px;
font-weight:700;
}

.section-heading{
max-width:780px;
margin-bottom:48px;
}

.about-grid,
.contact-grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:28px;
}

.stacked-cards{
display:grid;
gap:20px;
}

.icon{
width:50px;
height:50px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:var(--soft);
margin-bottom:20px;
font-weight:800;
}

.facility-card{
font-weight:700;
color:#334155;
}

.quote{
font-size:44px;
color:#cbd5e1;
}

.testimonial-card span{
display:block;
margin-top:8px;
font-size:11px;
letter-spacing:3px;
text-transform:uppercase;
color:var(--muted);
}

/* CONTACT */

.contact-form{
display:grid;
grid-template-columns:1fr 1fr;
gap:16px;
margin-top:28px;
}

.contact-form input,
.contact-form textarea{
width:100%;
border:1px solid var(--border);
border-radius:18px;
padding:16px;
font-family:inherit;
font-size:15px;
}

.contact-form textarea,
.contact-form button{
grid-column:1/-1;
}

.map-card{
margin-top:24px;
overflow:hidden;
border-radius:28px;
border:1px solid var(--border);
height:320px;
}

.map-card iframe{
width:100%;
height:100%;
border:0;
}

/* FOOTER */

.site-footer{
border-top:1px solid var(--border);
background:#fff;
padding:50px 0 24px;
}

.footer-grid{
display:grid;
grid-template-columns:1.2fr .8fr 1fr;
gap:34px;
}

.site-footer h3,
.site-footer h4{
margin-bottom:18px;
}

.site-footer p,
.site-footer a{
display:block;
color:var(--muted);
line-height:1.8;
font-size:14px;
}

.footer-bottom{
border-top:1px solid var(--border);
margin-top:32px;
padding-top:18px;
display:flex;
align-items:center;
justify-content:space-between;
font-size:13px;
color:var(--muted);
gap:20px;
}

.developer-credit{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:10px;
}

.developer-credit span{
font-size:13px;
color:var(--muted);
}

.developer-credit img{
height:72px;
width:auto;
object-fit:contain;
transition:.3s ease;
}

.developer-credit img:hover{
opacity:.85;
transform:translateY(-2px);
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
position:fixed;
right:22px;
bottom:22px;
z-index:999;

background:#25D366 !important;
color:#ffffff !important;

border-radius:999px;
padding:14px 22px;
font-size:14px;
font-weight:600;

box-shadow:0 15px 35px rgba(37,211,102,.35);

transition:all .3s ease;
}

.floating-whatsapp:hover{
background:#1ebe5d !important;
color:#ffffff !important;
transform:translateY(-2px);
box-shadow:0 20px 40px rgba(37,211,102,.45);
}

/* RESPONSIVE */

@media(max-width:900px){

.header-btn{
display:none;
}

.menu-toggle{
display:block;
}

.main-nav{
display:none;
position:absolute;
top:95px;
left:20px;
right:20px;
background:#fff;
border:1px solid var(--border);
border-radius:22px;
padding:18px;
flex-direction:column;
align-items:flex-start;
box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.main-nav.open{
display:flex;
}

.hero-grid,
.about-grid,
.contact-grid,
.footer-grid{
grid-template-columns:1fr;
}

.card-grid.three,
.services-grid,
.facility-grid{
grid-template-columns:1fr;
}

.slider{
height:380px;
}

.contact-form{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
align-items:flex-start;
}

.brand{
gap:12px;
}

.custom-logo,
.brand img{
width:62px !important;
}

.brand h1{
font-size:16px;
}

.hero-content h2,
.section-heading h2{
font-size:42px;
}

}

/* ABOUT PAGE - DOCTOR PROFILE */

.doctor-profile-section{
padding:40px 0 80px;
background:#ffffff;
}

.doctor-profile-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.doctor-image-box{
border-radius:34px;
overflow:hidden;
background:var(--soft);
box-shadow:0 25px 70px rgba(15,23,42,.10);
border:1px solid var(--border);
}

.doctor-image-box img{
width:100%;
height:auto;
display:block;
object-fit:contain;
}

.doctor-content-box h2{
font-family:'Playfair Display', serif;
font-size:58px;
font-weight:700;
line-height:1.05;
letter-spacing:-1px;
color:#0f172a;
margin-bottom:14px;
white-space:nowrap;
}

.doctor-content-box h4{
font-size:22px;
font-weight:600;
color:#334155;
margin-bottom:24px;
}

.doctor-content-box p{
font-size:16px;
line-height:1.9;
color:var(--muted);
margin-bottom:28px;
}

.doctor-degree-list{
list-style:none;
display:grid;
gap:14px;
margin:0;
padding:0;
}

.doctor-degree-list li{
position:relative;
padding-left:34px;
font-size:15px;
line-height:1.7;
color:#334155;
}

.doctor-degree-list li::before{
content:"✓";
position:absolute;
left:0;
top:0;
width:22px;
height:22px;
border-radius:50%;
background:var(--soft);
display:flex;
align-items:center;
justify-content:center;
font-size:12px;
font-weight:800;
color:var(--text);
}

/* DOCTOR ACHIEVEMENTS */

.doctor-achievement-section{
padding:95px 0;
background:linear-gradient(135deg,#020617,#0f172a);
color:#ffffff;
}

.doctor-achievement-section .section-heading{
margin-left:auto;
margin-right:auto;
text-align:center;
}

.doctor-achievement-section .section-heading h2{
color:#ffffff;
}

.doctor-achievement-section .section-heading p{
color:#cbd5e1;
}

.achievement-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:50px;
}

.achievement-card{
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
border-radius:28px;
padding:30px;
backdrop-filter:blur(12px);
}

.achievement-card span{
display:inline-flex;
width:44px;
height:44px;
border-radius:50%;
align-items:center;
justify-content:center;
background:#ffffff;
color:#020617;
font-weight:800;
margin-bottom:22px;
}

.achievement-card h3{
font-size:22px;
margin-bottom:14px;
color:#ffffff;
}

.achievement-card p{
font-size:14px;
line-height:1.8;
color:#cbd5e1;
}

/* VALUES */

.about-values-section{
padding:90px 0;
}

.value-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

/* RESPONSIVE ABOUT PAGE */

@media(max-width:900px){

.doctor-profile-grid{
grid-template-columns:1fr;
gap:34px;
}

.doctor-image-box img{
height:460px;
}

.achievement-grid,
.value-grid{
grid-template-columns:1fr;
}

.doctor-content-box h2{
font-size:42px;
}

}

/* INAUGURATION GALLERY */

.inauguration-section{
padding:100px 0;
background:#ffffff;
}

.inauguration-gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:50px;
margin-bottom:40px;
}

.gallery-card{
overflow:hidden;
border-radius:24px;
border:1px solid var(--border);
box-shadow:0 15px 40px rgba(15,23,42,.08);
transition:.4s ease;
}

.gallery-card:hover{
transform:translateY(-6px);
}

.gallery-card img{
width:100%;
height:280px;
object-fit:cover;
display:block;
transition:.4s ease;
}

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

.inauguration-content{
max-width:900px;
margin:0 auto;
text-align:center;
}

.inauguration-content p{
font-size:16px;
line-height:1.9;
color:var(--muted);
}

@media(max-width:900px){

.inauguration-gallery{
grid-template-columns:1fr 1fr;
}

.gallery-card img{
height:220px;
}

}

@media(max-width:600px){

.inauguration-gallery{
grid-template-columns:1fr;
}

}

.inauguration-section .section-heading{
max-width:1200px;
text-align:center;
margin:0 auto 50px;
}

.inauguration-section .section-heading p{
max-width:1000px;
margin:0 auto;
font-size:18px;
line-height:1.8;
}

/* INAUGURATION PREMIUM STYLING */

.inauguration-section .eyebrow{
color:#C89B3C !important;
font-size:10px;
font-weight:700;
letter-spacing:5px;
text-transform:uppercase;
margin-bottom:18px;
}

.inauguration-section h2{
font-family:'Cormorant Garamond', serif;
font-size:72px;
font-weight:700;
line-height:0.95;
letter-spacing:-1px;

background:linear-gradient(
135deg,
#D4AF37 0%,
#F7E7A1 25%,
#C89B3C 50%,
#F7E7A1 75%,
#B8860B 100%
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;

text-align:center;
margin-bottom:24px;
}

.inauguration-section .section-heading{
max-width:1200px;
margin:0 auto 60px;
text-align:center;
}

.inauguration-section .section-heading p{
font-size:18px;
line-height:1.8;
color:#475569;
max-width:950px;
margin:0 auto;
}

.inauguration-title {
  text-align: center;
  line-height: 1.05;
  margin: 10px 0 25px;
}

.inauguration-normal {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 14px;
}

.inauguration-gold {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  font-weight: 900;
  color: #d8b04f;
}

@media (max-width: 768px) {
  .inauguration-normal {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .inauguration-gold {
    font-size: 44px;
  }
}

.inauguration-title .inauguration-normal {
  color: #111111 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  text-shadow: none !important;
  background: none !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ==============================
   Home Feedback Rotator
============================== */

.sec-feedback-rotator {
  padding: 85px 20px;
  background:
    radial-gradient(circle at top left, rgba(24, 119, 242, 0.08), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #fff8e7 100%);
  overflow: hidden;
}

.feedback-rotator-container {
  max-width: 1050px;
  margin: 0 auto;
}

.feedback-rotator-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.feedback-rotator-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: #d6a73c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.feedback-rotator-heading h2 {
  margin: 0 0 14px;
  font-size: 44px;
  color: #111827;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

.feedback-rotator-heading p {
  margin: 0 auto;
  color: #5b6472;
  font-size: 17px;
  line-height: 1.7;
}

.feedback-slider {
  position: relative;
  min-height: 290px;
}

.feedback-slide {
  display: none;
  animation: feedbackFade 0.6s ease;
}

.feedback-slide.active {
  display: block;
}

.feedback-card {
  max-width: 780px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 42px 44px;
  text-align: center;
  border: 1px solid rgba(214, 167, 60, 0.25);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
  position: relative;
}

.feedback-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 32px;
  font-size: 95px;
  line-height: 1;
  color: rgba(214, 167, 60, 0.22);
  font-family: Georgia, 'Times New Roman', serif;
}

.feedback-stars {
  color: #d6a73c;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.feedback-card p {
  margin: 0 auto 26px;
  max-width: 650px;
  font-size: 19px;
  line-height: 1.75;
  color: #374151;
  font-weight: 500;
}

.feedback-card h4 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #111827;
  font-weight: 700;
}

.feedback-card span {
  color: #6b7280;
  font-size: 15px;
}

.feedback-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.feedback-dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.feedback-dot.active {
  width: 30px;
  background: #d6a73c;
}

@keyframes feedbackFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .sec-feedback-rotator {
    padding: 65px 18px;
  }

  .feedback-rotator-heading h2 {
    font-size: 34px;
  }

  .feedback-card {
    padding: 36px 24px;
    border-radius: 22px;
  }

  .feedback-card p {
    font-size: 16.5px;
  }

  .feedback-slider {
    min-height: 330px;
  }
}

.feedback-page-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(24, 119, 242, 0.08), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #fff8e7 100%);
}

.feedback-page-container {
  max-width: 1180px;
  margin: 0 auto;
}

.feedback-page-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.feedback-page-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: #d6a73c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.feedback-page-heading h1 {
  margin: 0 0 14px;
  font-size: 52px;
  line-height: 1.1;
  color: #111827;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

.feedback-page-heading p {
  margin: 0 auto;
  color: #5b6472;
  font-size: 17px;
  line-height: 1.7;
}

.feedback-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feedback-page-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 30px;
  border: 1px solid rgba(214, 167, 60, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.feedback-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.feedback-page-card::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 24px;
  font-size: 82px;
  line-height: 1;
  color: rgba(214, 167, 60, 0.20);
  font-family: Georgia, 'Times New Roman', serif;
}

.feedback-page-stars {
  color: #d6a73c;
  font-size: 21px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-align: center;
}

.feedback-page-card p {
  margin: 0 0 24px;
  font-size: 16.5px;
  line-height: 1.75;
  color: #374151;
  text-align: center;
}

.feedback-page-card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  color: #111827;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.feedback-page-card span {
  display: block;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

.feedback-page-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  font-size: 17px;
}

@media (max-width: 1000px) {
  .feedback-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .feedback-page-section {
    padding: 70px 18px;
  }

  .feedback-page-heading h1 {
    font-size: 38px;
  }

  .feedback-page-grid {
    grid-template-columns: 1fr;
  }

  .feedback-page-card {
    padding: 32px 24px;
  }
}