/* Final Doctor Theme */

:root{
  --text:#0f172a;
  --muted:#0369a1;
  --line:#e2e8f0;
  --soft:#f3f7ff;
  --brand:#2563eb;
  --brand2:#38bdf8;
  --shadow:0 15px 40px rgba(2,6,23,.08);
  --radius:16px;
  --font:Inter,Arial,sans-serif;
  --max:1120px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 600px at 12% 8%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(860px 620px at 90% 10%, rgba(56,189,248,.16), transparent 60%),
    linear-gradient(#fff,#f8fbff,#fff);
}

a{text-decoration:none;color:inherit}
.container{max-width:var(--max);margin:auto;padding:0 18px}

/* Vote Banner */
.voteBanner{
  background:linear-gradient(90deg,#2563eb,#38bdf8);
  color:#fff;
}
.voteBanner__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 18px;
  gap:10px;
}
.voteBtn{
  background:#fff;
  color:#2563eb;
  padding:6px 12px;
  border-radius:20px;
  font-weight:700;
}

/* Header */
.topbar{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--line);
  box-shadow:var(--shadow);
  z-index:20;
}
.topbar__inner{
  height:70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.brand{display:flex;gap:10px;align-items:center}
.brand__mark{
  width:12px;height:12px;border-radius:50%;
  background:linear-gradient(135deg,#2563eb,#38bdf8);
}
.brand__title{
  font-weight:900;
  background:linear-gradient(90deg,#1d4ed8,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.brand__sub{font-size:12px;color:#0369a1}

.nav{display:flex;gap:14px;align-items:center}
.nav a{padding:8px 12px;border-radius:20px}
.nav a:hover{background:#eef4ff}
.btn{
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:#fff;
  padding:10px 16px;
  border-radius:12px;
  font-weight:700;
  border:none;
}
.btn--ghost{
  background:#fff;
  color:#2563eb;
  border:1px solid var(--line);
}
.btn--small{padding:6px 10px}

/* Hero */
.hero{padding:28px 0}
.hero__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
}
@media(max-width:900px){.hero__grid{grid-template-columns:1fr}}

.pill{
  display:inline-block;
  padding:6px 12px;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(135deg,rgba(37,99,235,.08),rgba(56,189,248,.08));
  color:#1e40af;
}

h1{
  font-size:42px;
  background:linear-gradient(90deg,#1d4ed8,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.lead{color:#0369a1}

.hero__cta{margin-top:14px;display:flex;gap:12px}

/* Trust Cards */
.trustRow{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
@media(max-width:900px){.trustRow{grid-template-columns:1fr}}

.trust{
  background:linear-gradient(135deg,rgba(37,99,235,.08),rgba(56,189,248,.08));
  border:1px solid rgba(37,99,235,.2);
  padding:12px;
  border-radius:14px;
}
.trust__k{font-size:12px;color:#0369a1}
.trust__v{font-weight:800}

/* Profile */
.profileCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.profileCard img{width:100%;height:auto}
.profileCard__body{padding:14px}
.profileCard__title{font-weight:900;color:#1d4ed8}
.profileCard__meta{font-size:13px;color:#0369a1}
.profileCard__quick a{
  display:block;
  margin-top:8px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:10px;
}

/* Sections */
.section{padding:36px 0}
.section--tight{padding-top:16px}
.section--soft{background:var(--soft);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.sectionHead h2{
  font-size:28px;
  background:linear-gradient(90deg,#2563eb,#38bdf8,#22c55e);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.sectionHead p{color:#0369a1}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

/* Experience */
.expList{
  margin-top:16px;
  columns:2;
  column-gap:16px;
}
@media(max-width:900px){.expList{columns:1}}

.expList li{
  break-inside:avoid;
  list-style:disc;
  margin:10px 0;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
@media(max-width:900px){.contactGrid{grid-template-columns:1fr}}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  background:#fff;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  color:#0369a1;
  font-size:13px;
}

/* Developed by DV Soft */
.dvsoftCredit{
  margin-top:8px;
  font-size:12px;
  color:#1e40af;
}
.dvsoftCredit a{
  color:#2563eb;
  font-weight:700;
}
.dvsoftCredit a:hover{ text-decoration:underline; }

/* Floating Buttons (Text Pills) */
.floatBtns{
  position:fixed;
  right:18px;
  bottom:90px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

.floatBtn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  color:#fff;
  font-weight:900;
  letter-spacing:.6px;
  font-size:12px;
  box-shadow:0 10px 28px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}

.floatBtn:hover{transform: translateY(-1px);}

.fIcon{font-size:18px; line-height:1;}
.fText{white-space:nowrap;}

.callBtn{background:linear-gradient(135deg,#2563eb,#38bdf8);}
.waBtn{background:linear-gradient(135deg,#22c55e,#4ade80);}

/* Mobile: slightly smaller */
@media(max-width:480px){
  .floatBtns{right:12px; bottom:78px}
  .floatBtn{padding:10px 12px; font-size:11px}
}


/* Gradient Headings */
.gradTitle{
  background: linear-gradient(90deg,#2563eb,#22c55e,#a855f7);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:900;
}

.gradH{
  background: linear-gradient(90deg,#1d4ed8,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:800;
}

/* Two Column Grid */
.twoColGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:20px;
}

@media(max-width:900px){
  .twoColGrid{
    grid-template-columns:1fr;
  }
}

/* Color Cards */
.colorCard{
  border-left:5px solid transparent;
}

.blueGrad{border-color:#2563eb;}
.greenGrad{border-color:#22c55e;}
.purpleGrad{border-color:#a855f7;}
.skyGrad{border-color:#38bdf8;}

/* Highlights */
.highlightList{
  padding-left:18px;
  margin:10px 0;
}

.highlightList li{
  margin:6px 0;
  color:#0f4fd8;
  font-weight:600;
}

/* Quote Box */
.quoteBox{
  margin-top:12px;
  padding:12px;
  background:linear-gradient(135deg,rgba(37,99,235,.08),rgba(168,85,247,.08));
  border-left:4px solid #6366f1;
  border-radius:10px;
  font-style:italic;
  color:#1e293b;
}


/* Enquiry Form Styling */
#contact form{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:10px;
}

#contact input,
#contact textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #c7d2fe;
  font-size:14px;
  font-family:inherit;
  outline:none;
  background:#f8fbff;
  transition:all .2s ease;
}

#contact input:focus,
#contact textarea:focus{
  border-color:#2563eb;
  background:#fff;
  box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

#contact textarea{
  min-height:110px;
  resize:vertical;
}

#contact button.btn{
  margin-top:6px;
  align-self:flex-start;
  padding:10px 22px;
  border-radius:30px;
  font-weight:800;
}

/* ===== Section Polish Pack (Readable + Premium) ===== */

/* Better default text */
p{margin:0 0 12px}
.sectionHead p{max-width: 820px}

/* Section spacing and separators */
.section{padding:44px 0}
.section--tight{padding-top:22px;padding-bottom:34px}
.section--soft{
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(900px 520px at 90% 20%, rgba(56,189,248,.10), transparent 60%),
    #f5f9ff;
}

/* Headings */
.sectionHead{
  margin-bottom:18px;
}
.sectionHead h2{
  letter-spacing:-.3px;
  margin:0 0 10px;
}
h3{
  margin:0 0 10px;
  letter-spacing:-.2px;
}

/* Cards: consistent */
.card{
  background:#ffffff;
  border:1px solid rgba(37,99,235,.10);
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
}
.card p{color:#0f4c7a}

/* Two column grid: more breathing room */
.twoColGrid{gap:20px}

/* Color cards: subtle gradient background while keeping white feel */
.colorCard{
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,251,255,1) 100%);
}

/* Quote */
.quoteBox{
  font-size:14px;
  line-height:1.6;
}

/* Highlights list */
.highlightList{
  list-style: "✓  ";
  padding-left: 18px;
}
.highlightList li{
  color:#0b3b8f;
  font-weight:700;
}

/* Experience list: cleaner bullets */
.expList{padding-left:18px}
.expList li{
  list-style: "•  ";
  color:#0f4c7a;
}
.expList li b{color:#0f172a}

/* Contact area: icon rows */
.contactGrid .card h3{margin-bottom:12px}
.contactRow{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:10px 12px;
  border:1px solid rgba(37,99,235,.12);
  border-radius:14px;
  background: linear-gradient(135deg, rgba(37,99,235,.05), rgba(56,189,248,.05));
  margin:10px 0;
}
.contactIcon{
  width:40px;height:40px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(37,99,235,.12);
  border:1px solid rgba(37,99,235,.18);
  font-size:18px;
}
.contactRow b{display:block;color:#0f172a}
.contactRow span{color:#0f4c7a;font-weight:600}

/* Enquiry note */
.formNote{
  margin-top:10px;
  font-size:12px;
  color:#0b4a7a;
  background: rgba(37,99,235,.06);
  border:1px dashed rgba(37,99,235,.25);
  padding:10px 12px;
  border-radius:12px;
}

/* Buttons: smoother */
.btn{box-shadow:0 10px 22px rgba(37,99,235,.18)}
.btn--ghost{box-shadow:none}

/* ================================
   HERO & APMC ALIGNMENT FIXES
   ================================ */

/* Keep hero content stacked neatly */
.hero__content {
  display: flex;
  flex-direction: column;
}

/* Balance left text & right profile image */
.hero__grid {
  align-items: center;
}

/* Clean spacing under trust cards */
.trustRow--hero {
  margin-bottom: 14px;
}

/* Ensure full-width APMC card aligns with hero content */
.hero__content > div[style*="width:100%"] {
  align-self: stretch;
}

/* ================================
   HEADER BRAND ALIGNMENT FIX
   ================================ */

.brand {
  align-items: center;
}

.brand__title {
  line-height: 1.2;
}

.brand__sub {
  margin-top: 2px;
}

/* ================================
   APMC CARD VISUAL BALANCE
   ================================ */

.hero__content div[style*="background:#eef5ff"] {
  margin-top: 18px;
}





/*================*/
/* =========================
   GALLERY SECTION
   ========================= */

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.galleryImg {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

