/* ================= DREAMHUB STYLE HEADER ================= */

.site-header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #E6EDF5;  /* subtle divider */
}

.site-header .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1B2B52;  /* deep navy */
    letter-spacing: -0.3px;
}

.logo a{
text-decoration:none;
color:#1B2B52;
}

.logo a:visited{
color:#1B2B52;
}

.logo a:hover{
color:#1B2B52;
}
/* Navigation */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #1B2B52;
    transition: 0.3s ease;
}

/* Hover Effect */

.nav-menu a:hover {
    color: #4A6CF7;   /* theme blue */
}

/* Contact Button (Right Side) */

.nav-btn {
    padding: 10px 22px;
    border-radius: 6px;
    background: #4A6CF7;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #3C57D6;
}



/* =========================
   GLOBAL RESET
========================= */

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

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

.container,
.hero-container,
.authority-container,
.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 90px 0;
  position: relative;
}

h1, h2, h3 {
  font-weight: 700;
  color: #0f172a;
}

h1 {
  font-size: 44px;
  line-height: 1.2;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 20px;
}

p {
  color: #475569;
  font-size: 16px;
}

.highlight {
  color: #0d5ef4;
}

.section-divider {
  height: 1px;
  background: #e2e8f0;
  width: 100%;
}

/* remove browser visited link purple */

/* Prevent browser visited color */

.read-more,
.read-more:visited{
color:#4f6df5;
text-decoration:none;
}

.read-more:hover{
text-decoration:underline;
}
/* =========================
   HERO SECTION
========================= */

/* ==========================
   HERO BACKGROUND PREMIUM
========================== */

.hero-wrapper {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(
    135deg,
    #f4f8ff 0%,
    #eef3ff 40%,
    #f9fbff 100%
  );
  overflow: hidden;
}

/* Bottom curved separator */
.hero-wrapper::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #ffffff;
  border-top-left-radius: 60% 100px;
  border-top-right-radius: 60% 100px;
}
.hero-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0d5ef4;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-description {
  margin-top: 20px;
  font-size: 17px;
  color: #475569;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

/* Buttons */

.btn-primary {
  background: #0d5ef4;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #084cd8;
}

.btn-outline {
  border: 2px solid #0d5ef4;
  color: #0d5ef4;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #0d5ef4;
  color: #fff;
}

/* Doctor Image */

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.doctor-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #dbeafe 0%, #ffffff 70%);
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.doctor-image {
  width: 420px;
  position: relative;
  z-index: 2;
}

/* ===== 5000+ Surgeries Floating Badge ===== */

.surgeries-badge {
  position: absolute;
  top: 150px;
  right: 34%;
  
  background: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  z-index: 5;
  transition: 0.3s ease;
}

.surgeries-badge:hover {
  transform: translateY(-4px);
}

/* Review Card */

.review-theme {
  position: absolute;
  top: 77%;
  left: 65%;
  transform: translate(-50%, -50%);
  
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  width: 180px;
  z-index: 5;
  transition: 0.3s ease;
}

.review-theme:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

/* Stars */
.review-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 6px;
}

.review-rating {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.review-btn-theme {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0d5ef4;
  text-decoration: none;
}

/* ===== Social Icons - Right of Doctor Circle ===== */

.hero-social {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  z-index: 6;
}

/* Vertical line */
.hero-social .social-line {
  width: 2px;
  height: 40px;
  background: #dbeafe;
}

/* Social links */
.hero-social a {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;

  color: #0d5ef4;
  font-size: 16px;
  text-decoration: none;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.hero-social a:hover {
  background: #0d5ef4;
  color: #ffffff;
  transform: translateY(-4px);
}

/* =========================
   AUTHORITY SECTION
========================= */

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

.authority-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.authority-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.authority-icon {
  margin-bottom: 20px;
  color: #0d5ef4;
}

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


.expertise-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.expertise-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

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

.expertise-card ul {
  margin-top: 15px;
  margin-bottom: 20px;
  padding-left: 18px;
}

.expertise-card li {
  margin-bottom: 8px;
}

.read-more {
  color: #0d5ef4;
  font-weight: 600;
  text-decoration: none;
}

/* ================= ABOUT CONTENT ================= */

/* ===============================
   ABOUT DR BANSAL SECTION
================================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

/* Layout */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1.1fr 1fr; /* content slightly wider */
    align-items: center;
    gap: 80px;
}

/* ================= CONTENT ================= */

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

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: #4f6df5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0 25px;
    color: #1f2b6c;
}

.about-content .highlight {
    color: #4f6df5;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Highlights List */

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-highlights li {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
}

.about-highlights li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #4f6df5;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Button */

.about-btn {
    display: inline-block;
    margin-top: 15px;

    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;

    background: #4f6df5;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #3d57d9;
    transform: translateY(-3px);
}

/* ===== IMAGE SIDE ===== */

.about-image {
    position: relative;
    width: 520px;   /* same as circle */
    height: 520px;
    margin: 0 auto;
}

/* Circle */
.about-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eef2ff;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Doctor Image */
.about-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%); /* TRUE CENTER */
    max-width: 700px;  /* control doctor size */
    height: auto;
    z-index: 1;
}

/* ================= FAQ ACCORDION ================= */

.faq-section {
    padding: 90px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1F3C88;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E6EDF5;
    padding: 18px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1F3C88;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin-top: 15px;
    color: #5F6C85;
    line-height: 1.8;
}

/* ==============================
   PREMIUM CTA SECTION
============================== */

.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d5ef4 0%, #1e3a8a 100%);
  overflow: hidden;
}

/* Soft Glow Effect */
.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.cta-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
}

/* Premium CTA Button */

.cta-section .btn-primary {
  background: #ffffff;
  color: #0d5ef4;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.cta-section .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}


/* =====================================
   MAIN NAVIGATION MENU
===================================== */

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
}

.main-menu{
display:flex;
align-items:center;
gap:32px;
list-style:none;
margin:0;
padding:0;
}

.main-menu li{
position:relative;
}

.main-menu a{
text-decoration:none;
font-size:15px;
font-weight:500;
color:#1B2B52;
transition:0.3s ease;
}

.main-menu a:hover{
color:#4A6CF7;
}


/* =====================================
   DROPDOWN MENU
===================================== */

.dropdown{
position:absolute;
top:100%;
left:0;

min-width:260px;

background:#ffffff;
border-radius:10px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);

padding:12px 0;

list-style:none;

opacity:0;
visibility:hidden;
transform:translateY(10px);

transition:all 0.25s ease;

z-index:999;
}

.dropdown li{
width:100%;
}

.dropdown a{
display:block;
padding:12px 20px;
font-size:14px;
color:#1e293b;
}

.dropdown a:hover{
background:#f4f8ff;
color:#0d5ef4;
}

.has-dropdown:hover .dropdown{
opacity:1;
visibility:visible;
transform:translateY(0);
}



/* =====================================
   SERVICE PAGE LAYOUT
===================================== */

.service-hero{
padding:60px 0 30px;
}

.service-grid{
display:grid;
grid-template-columns:260px 1fr;
gap:60px;
align-items:flex-start;
margin-top:20px;
}

.service-layout{
padding:60px 0 100px;
background:#ffffff;
}

.service-grid > .service-main:only-child{
grid-column:1 / -1;
max-width:900px;
margin:auto;
}

/* =========================
   SERVICE CONTENT CARD
========================= */


.service-main{
background:#ffffff;
padding:50px;
border-radius:12px;
box-shadow:0 12px 35px rgba(0,0,0,0.06);
max-width:780px;
font-size:17px;
line-height:1.8;
color:#475569;
}

/* First heading spacing fix */

.service-main h2:first-child{
margin-top:0;
}

/* Section headings */

.service-main h2{
margin-top:60px;
margin-bottom:15px;
font-size:30px;
font-weight:700;
color:#0f172a;
scroll-margin-top:120px; /* prevents header overlap when clicking sidebar */
}

/* Sub headings */

.service-main{
background:#ffffff;
padding:50px;
border-radius:12px;
box-shadow:0 12px 35px rgba(0,0,0,0.06);
max-width:780px;
margin:auto;
font-size:17px;
line-height:1.8;
color:#475569;
}

/* Paragraph spacing */

.service-main p{
margin-bottom:18px;
}

/* Lists */

.service-main ul{
margin:20px 0;
padding-left:22px;
}

.service-main li{
margin-bottom:10px;
color:#475569;
}

/* =====================================
   SERVICE SIDEBAR
===================================== */

.sidebar-box{
background:#f8fafc;
border:1px solid #e2e8f0;
padding:28px;
border-radius:12px;
}

.sidebar-box h3{
font-size:18px;
margin-bottom:18px;
font-weight:600;
color:#0f172a;
}

.sidebar-box ul{
list-style:none;
padding:0;
margin:0;
}

.sidebar-box li{
margin-bottom:14px;
padding-left:12px;
border-left:2px solid transparent;
transition:0.2s;
}

.sidebar-box li:hover{
border-left:2px solid #4f6df5;
}

.sidebar-box a{
text-decoration:none;
color:#475569;
font-size:15px;
}

.sidebar-box a:hover{
color:#4f6df5;
}


/* =====================================
   SERVICE CONTENT
===================================== */

.service-main h1{
font-size:44px;
line-height:1.2;
margin-bottom:20px;
max-width:900px;
}

.service-main h2{
margin-top:70px;
font-size:28px;
padding-top:20px;
border-top:1px solid #f1f5f9;
}

.service-main p{
margin-bottom:22px;
line-height:1.9;
color:#475569;
font-size:17px;
max-width:820px;
}


/* =====================================
   BREADCRUMB
===================================== */

.breadcrumb{
font-size:14px;
margin-bottom:30px;
color:#64748b;
}

.breadcrumb a{
color:#4f6df5;
text-decoration:none;
font-weight:500;
}

.breadcrumb span{
margin:0 6px;
}


/* =====================================
   SMOOTH SCROLL
===================================== */

html{
scroll-behavior:smooth;
}


/* Active sidebar link */

.sidebar-box a.active{
color:#4f6df5;
font-weight:600;
}

.service-main h2{
scroll-margin-top:120px;
}

/* ===========================
   PREMIUM APPOINTMENT UI
=========================== */

.premium-appointment-section{
padding:100px 0;
background:#f8fafc;
}

.premium-appointment-wrapper{
max-width:850px;
margin:auto;
}

.premium-appointment-card{
background:#ffffff;
padding:50px;
border-radius:16px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.premium-appointment-header{
text-align:center;
margin-bottom:40px;
}

.premium-appointment-header h2{
font-size:36px;
margin-bottom:10px;
color:#0f172a;
}

.premium-appointment-header p{
color:#64748b;
font-size:16px;
}

/* FORM GRID */

.row-split{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:25px;
}

/* FLOATING INPUT */

.floating-group{
position:relative;
}

.floating-group input,
.floating-group select{
width:100%;
padding:16px 14px;
border:1px solid #e2e8f0;
border-radius:8px;
font-size:15px;
background:#fff;
outline:none;
}

.floating-group label{
position:absolute;
left:14px;
top:14px;
font-size:14px;
color:#64748b;
pointer-events:none;
transition:0.2s;
background:#fff;
padding:0 6px;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label,
.floating-group select:focus + label{
top:-8px;
font-size:12px;
color:#4f6df5;
}

/* TIME SLOT */

.time-slot-wrapper{
margin-top:20px;
}

.time-slot-wrapper label{
display:block;
margin-bottom:10px;
font-weight:600;
}

.time-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
}

.time-grid button{
padding:10px;
border:1px solid #e2e8f0;
background:#fff;
border-radius:6px;
cursor:pointer;
font-size:14px;
transition:0.2s;
}

.time-grid button:hover{
background:#4f6df5;
color:#fff;
border-color:#4f6df5;
}

/* SUBMIT BUTTON */

.premium-submit-btn{
margin-top:30px;
width:100%;
padding:16px;
border:none;
background:#4f6df5;
color:#fff;
font-size:16px;
border-radius:10px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.premium-submit-btn:hover{
background:#3d57d9;
}

/* SUCCESS MODAL */

.appointment-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
align-items:center;
justify-content:center;
z-index:999;
}

.modal-content{
background:#fff;
padding:40px;
border-radius:10px;
text-align:center;
max-width:400px;
}

.modal-content button{
margin-top:20px;
padding:10px 20px;
background:#4f6df5;
color:#fff;
border:none;
border-radius:6px;
cursor:pointer;
}

/* LOCATION SECTION */

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

.location-header{
text-align:center;
margin-bottom:60px;
}

.location-header h2{
font-size:36px;
margin-bottom:10px;
}

.location-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.location-card-premium{
background:#f8fafc;
padding:35px;
border-radius:14px;
border:1px solid #e2e8f0;
transition:0.3s;
}

.location-card-premium:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.location-card-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.location-card-header h3{
font-size:18px;
}

.timing-badge{
background:#e0e7ff;
color:#4f46e5;
font-size:12px;
padding:6px 10px;
border-radius:20px;
}

.location-address{
color:#475569;
margin-bottom:20px;
line-height:1.6;
}

.location-actions{
display:flex;
gap:10px;
}

.btn-outline{
border:1px solid #4f6df5;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
color:#4f6df5;
}

.btn-primary{
background:#4f6df5;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
color:#fff;
}

/* MOBILE */

@media(max-width:900px){

.row-split{
grid-template-columns:1fr;
}

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

.time-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* appointment */

.time-grid button.active-time{
background:#4f6df5;
color:#fff;
border-color:#4f6df5;
}

/* =========================
   CONTACT PAGE MAP SECTION
========================= */

.map-section{
padding:90px 0;
background:#f8fafc;
}

.map-section h2{
text-align:center;
font-size:32px;
margin-bottom:40px;
color:#0f172a;
}



/* =========================
   LOCATION GRID
========================= */

.location-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:40px;
}

.location-card-premium{
background:#ffffff;
padding:30px;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.05);
transition:0.3s;
}

.location-card-premium:hover{
transform:translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.location-card-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.location-card-header h3{
font-size:20px;
color:#0f172a;
}

.timing-badge{
font-size:13px;
background:#eef2ff;
color:#4f6df5;
padding:6px 12px;
border-radius:20px;
font-weight:600;
}

.location-address{
color:#64748b;
line-height:1.7;
margin-bottom:20px;
}

.location-actions{
display:flex;
gap:12px;
}



/* =========================
FLOATING CONTACT BAR
========================= */

.floating-contact{

position:fixed;
bottom:20px;
right:20px;

display:flex;
flex-direction:column;
gap:12px;

z-index:9999;

}

.floating-contact a{

display:flex;
align-items:center;
gap:10px;

padding:12px 18px;

border-radius:30px;

font-size:14px;
font-weight:600;

text-decoration:none;

color:#fff;

box-shadow:0 10px 25px rgba(0,0,0,0.15);

transition:0.3s;

}

.floating-contact a i{
font-size:16px;
}

.float-call{
background:#2563eb;
}

.float-whatsapp{
background:#25D366;
}

.float-appointment{
background:#4f6df5;
}

.floating-contact a:hover{
transform:translateY(-3px);
}




/* ================================
   EXPERTISE SECTION
================================ */

.expertise-section{
padding:100px 0;
background:#f8fbff;
}

.expertise-section h2{
text-align:center;
font-size:38px;
font-weight:700;
margin-bottom:20px;
color:#0f172a;
}

.expertise-intro{
max-width:900px;
margin:0 auto 70px;
text-align:center;
font-size:17px;
line-height:1.8;
color:#475569;
}

.expertise-intro a{
color:#4f6df5;
text-decoration:none;
font-weight:500;
}

.expertise-intro a:hover{
text-decoration:underline;
}


/* GRID */

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


/* CARD */

.expertise-card{
background:#ffffff;
padding:36px;
border-radius:16px;
border:1px solid #e7edf5;
transition:all 0.35s ease;
}

.expertise-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.07);
}


/* CARD TITLE */

.expertise-title{
font-size:21px;
font-weight:700;
margin-bottom:18px;
}

.expertise-title a{
color:#0f172a;
text-decoration:none;
}

.expertise-title a:hover{
color:#4f6df5;
}


/* SERVICE LIST */

.expertise-card ul{
list-style:none;
padding:0;
margin:0 0 20px;
}

.expertise-card li{
font-size:15px;
margin-bottom:10px;
color:#475569;
}

.expertise-card li a{
color:#334155;
text-decoration:none;
}

.expertise-card li a:hover{
color:#4f6df5;
}


/* READ MORE */

.read-more{
display:inline-block;
margin-top:5px;
font-weight:600;
font-size:15px;
color:#4f6df5;
text-decoration:none;
}

.read-more:hover{
text-decoration:underline;
}


/* MOBILE */

@media(max-width:900px){

.expertise-grid{
grid-template-columns:1fr;
gap:25px;
}

}

/* =========================
   CONDITIONS SECTION
========================= */

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

.conditions-section h2{
text-align:center;
font-size:36px;
margin-bottom:20px;
color:#0f172a;
}

.conditions-intro{
max-width:850px;
margin:0 auto 60px;
text-align:center;
font-size:17px;
line-height:1.8;
color:#475569;
}

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

.condition-card{
display:block;
background:#f8fbff;
border:1px solid #e7edf5;
padding:18px 20px;
border-radius:10px;
text-decoration:none;
color:#0f172a;
font-weight:500;
transition:all 0.25s ease;
}

.condition-card:hover{
background:#4f6df5;
color:white;
transform:translateY(-3px);
}


/* MOBILE */

@media(max-width:900px){

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

}

.expertise-section{
padding:100px 0;
background:#f8fbff;
}

.expertise-section h2{
text-align:center;
font-size:36px;
margin-bottom:20px;
color:#0f172a;
}

.expertise-intro{
max-width:850px;
margin:0 auto 70px;
text-align:center;
font-size:17px;
line-height:1.8;
color:#475569;
}

.expertise-intro a{
color:#4f6df5;
font-weight:500;
text-decoration:none;
}

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

.expertise-card{
background:#ffffff;
padding:35px;
border-radius:14px;
border:1px solid #e7edf5;
transition:all 0.3s ease;
}

.expertise-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.expertise-title{
font-size:20px;
margin-bottom:16px;
}

.expertise-title a{
color:#0f172a;
text-decoration:none;
font-weight:600;
}

.expertise-title a:hover{
color:#4f6df5;
}

.expertise-card ul{
list-style:none;
padding:0;
margin:0 0 20px;
}

.expertise-card li{
margin-bottom:10px;
font-size:15px;
color:#475569;
}

.expertise-card li a{
color:#334155;
text-decoration:none;
}

.expertise-card li a:hover{
color:#4f6df5;
}

.read-more{
font-weight:600;
color:#4f6df5;
text-decoration:none;
}

.read-more:hover{
text-decoration:underline;
}

@media(max-width:900px){

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

}

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

.site-footer{
background:#0f172a;
color:#fff;
padding:80px 0 40px;
}

/* footer layout */

.footer-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:40px;
}

/* headings */

.footer-col h4{
font-size:18px;
margin-bottom:18px;
font-weight:600;
color:#ffffff;
}

/* text */

.footer-col p{
font-size:14px;
line-height:1.7;
color:#cbd5f5;
margin-bottom:10px;
}

/* lists */

.footer-col ul{
list-style:none;
padding:0;
margin:0;
}

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

/* links */

.footer-col a{
color:#cbd5f5;
text-decoration:none;
font-size:14px;
transition:0.25s;
}

.footer-col a:hover{
color:#ffffff;
}

/* appointment button */

.footer-btn{
display:inline-block;
margin-top:14px;
padding:10px 18px;
background:#4F6DF5;
color:#fff;
border-radius:6px;
text-decoration:none;
font-size:14px;
font-weight:500;
}

/* footer bottom */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
margin-top:50px;
padding-top:20px;
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
color:#cbd5f5;
}

/* credit */

.credit a{
color:#4F6DF5;
font-weight:500;
text-decoration:none;
}

/* ================= MOBILE ================= */

@media(max-width:1000px){

.footer-grid{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

}

@media(max-width:600px){

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

.footer-bottom{
flex-direction:column;
gap:10px;
text-align:center;
}

}

/* =====================================
   MOBILE OPTIMIZATION
===================================== */

@media (max-width: 768px){

/* Container padding */
.container{
width:92%;
}

/* NAV MENU */
.main-menu{
gap:14px;
flex-wrap:wrap;
}

/* HERO SECTION */
.hero-main{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}

/* Hero content width */
.hero-content{
max-width:100%;
margin:auto;
}

/* Doctor circle smaller */
.doctor-wrapper{
width:300px;
height:300px;
margin:auto;
}

.doctor-image{
width:300px;
}

/* Remove floating review card overlap */
.review-theme{
left:50%;
top:90%;
transform:translate(-50%,-50%);
width:160px;
}

/* surgeries badge reposition */
.surgeries-badge{
top:-10px;
right:auto;
left:50%;
transform:translateX(-50%);
}

/* Social icons move below */
.hero-social{
position:relative;
flex-direction:row;
justify-content:center;
top:auto;
right:auto;
margin-top:20px;
}

/* Authority cards */
.authority-grid{
grid-template-columns:1fr;
gap:20px;
}

/* Expertise cards */
.expertise-grid{
grid-template-columns:1fr;
}

/* Conditions grid */
.conditions-grid{
grid-template-columns:1fr 1fr;
}

/* Footer */
.footer-grid{
grid-template-columns:1fr;
gap:30px;
}

/* Floating contact smaller */
.floating-contact{
bottom:15px;
right:15px;
}

.floating-contact a{
padding:10px 14px;
font-size:13px;
}

}

/* =================================================
   NAVIGATION STRUCTURE
   Desktop layout
================================================= */

.header-flex{
display:flex;
align-items:center;
justify-content:space-between;
}

/* Main navigation */

.main-menu{
display:flex;
align-items:center;
gap:32px;
list-style:none;
margin:0;
padding:0;
}

.main-menu li{
position:relative;
}

.main-menu a{
text-decoration:none;
font-size:15px;
font-weight:500;
color:#1B2B52;
transition:0.3s;
}

.main-menu a:hover{
color:#4A6CF7;
}

/* Dropdown */

.dropdown{
position:absolute;
top:100%;
left:0;
min-width:260px;

background:#fff;
border-radius:10px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);

padding:12px 0;
list-style:none;

opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:all .25s ease;
z-index:999;
}

.dropdown li{
width:100%;
}

.dropdown a{
display:block;
padding:12px 20px;
font-size:14px;
color:#1e293b;
}

.dropdown a:hover{
background:#f4f8ff;
color:#0d5ef4;
}

.has-dropdown:hover .dropdown{
opacity:1;
visibility:visible;
transform:translateY(0);
}

/* Hamburger button (hidden desktop) */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:26px;
height:3px;
background:#1f2937;
border-radius:2px;
}

/* Sticky header */

.site-header{
position:sticky;
top:0;
background:#fff;
z-index:1000;
}



/* =================================================
   MOBILE RESPONSIVE
================================================= */

@media (max-width:768px){
.hero-wrapper{
padding-top:10px;
}


/* Container safe padding */

.container{
width:92%;
max-width:1200px;
margin:auto;
}

/* Show hamburger */

.hamburger{
display:flex;
}

/* Hide desktop menu */

.main-menu{
position:absolute;
top:70px;
left:0;
width:100%;

background:#fff;

padding:25px;

flex-direction:column;
gap:15px;

display:none;

box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Show when active */

.main-menu.active{
display:flex;
}

/* Menu items */

.main-menu li{
width:100%;
}

.main-menu a{
display:block;
padding:10px 0;
font-size:16px;
}

/* Dropdown mobile */

.dropdown{
display:none;
position:relative;
opacity:1;
visibility:visible;
transform:none;
box-shadow:none;
padding-left:15px;
}

.has-dropdown.active .dropdown{
display:block;
}


/* =================================================
   HERO MOBILE LAYOUT
================================================= */

.hero-main{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}

.hero-content{
max-width:100%;
margin:auto;
}

/* Doctor image */

.hero-right{
margin:auto;
}

.doctor-wrapper{
width:300px;
height:300px;
margin:auto;
}

.doctor-image{
width:300px;
}

/* Surgeries badge */

.surgeries-badge{
position:relative;
margin-top:15px;
left:auto;
right:auto;
transform:none;
}

/* Review card reposition */

.review-theme{
left:50%;
top:92%;
transform:translate(-50%,-50%);
width:160px;
}

/* Social icons */

.hero-social{
position:relative;
flex-direction:row;
justify-content:center;
top:auto;
right:auto;
margin-top:20px;
}

/* =================================================
   GRID STACKING
================================================= */

.authority-grid{
grid-template-columns:1fr;
gap:20px;
}

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

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

.footer-grid{
grid-template-columns:1fr;
gap:30px;
}

/* Floating contact */

.floating-contact{
bottom:15px;
right:15px;
}

.floating-contact a{
padding:10px 14px;
font-size:13px;
}

}

/* Fix hero button spacing for Media & Blogs */

.media-hero .btn-primary,
.blogs-hero .btn-primary{
margin-top:15px;
display:inline-block;
}



/* Logo link fix */
.logo a{
color:#1B2B52;
text-decoration:none;
font-weight:700;
font-size:22px;
letter-spacing:-0.3px;
}

.logo a:visited{
color:#1B2B52;
}

.logo a:hover{
color:#1B2B52;
text-decoration:none;
}


/* FORCE LOGO STYLE */

.logo a,
.logo a:visited,
.logo a:hover,
.logo a:active{
color:#1B2B52 !important;
text-decoration:none !important;
font-weight:700;
font-size:22px;
letter-spacing:-0.3px;
}


