:root {
  --primary: #b8066f;
  --primary-light: #051284;
  --secondary: #b8066f;
  --dark: #0f172a;
  --light: #f3f4f6;
  --muted: #6b7280;

  --glow1: rgba(2, 132, 199, 0.18);
  --glow2: rgba(113, 201, 206, 0.18);
  --card-radius: 18px;

  --text-light: #e9edf2;
  --text-muted: #cfd4de;

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.16);
  --glass-border: rgba(255, 255, 255, 0.18);
}

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f9fafb;
  color: var(--dark);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* =========================================================
   FIXED PREMIUM NAVBAR (USING :root COLORS)
========================================================= */

/* =========================================================
   NAVBAR BASE
========================================================= */


/* Navbar Fixating & Design */
.sticky-top {
    position: fixed;
    top: 0;
    z-index: 1020;
    width: 100%;
    background-color: #ffffff !important;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #444 !important;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
}

/* Mega Menu Desktop */
@media (min-width: 992px) {
    .mega-dropdown-main { position: static; }
    
    .mega-menu-box {
        width: 100%;
        left: 0;
        margin-top: 0;
        padding: 40px 0;
        border-radius: 0 0 20px 20px;
        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: block;
    }

    .mega-dropdown-main:hover .mega-menu-box {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mega Menu Elements */
.mega-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f1f1;
}

.mega-list li {
    margin-bottom: 8px;
}

.mega-list li a {
    text-decoration: none;
    color: #666;
    font-size: 13.5px;
    transition: 0.2s ease;
}

.mega-list li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Button */
.appointment-btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: 80vh; /* Mobile par navbar screen se bada na ho */
        overflow-y: auto;
        padding: 20px 0;
    }

    .mega-menu-box {
        background: #fdfdfd;
        padding: 15px;
        box-shadow: none !important;
        border: 1px solid #eee;
    }

    .mega-heading {
        margin-top: 20px;
        font-size: 15px;
    }

    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #f5f5f5;
    }
}

/* ===============================
   PREMIUM FOOTER DESIGN
================================ */
.premium-footer {
  background: linear-gradient(90deg, #051284, #b8066f);
  color: #ffff;
  padding: 80px 20px 35px;
  position: relative;
  overflow: hidden;
}

/* Glowing BG */
.premium-footer::before,
.premium-footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.premium-footer::before {
  background: var(--accent);
  top: -80px;
  left: -60px;
}

.premium-footer::after {
  background: #71c9ce;
  bottom: -80px;
  right: -60px;
}

/* Logo */
.footer-logo {
  width: 200px;
  margin-bottom: 18px;
  border-radius: 10px;
}

/* Text */
.footer-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

/* Footer Titles */
.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #0284c7;
  display: block;
  margin-top: 6px;
}

/* Mobile Fix: Underline centered */
@media (max-width: 768px) {
  .footer-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Links */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd6e1;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #0284c7;
  padding-left: 5px;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  font-size: 40px;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 22px;
  color: #0284c7;
}

.contact-item a {
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  /* text-decoration: none; */
}

/* Divider */
.footer-line {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

/* Bottom Section */
/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
  margin-top: 25px;
  background: transparent;
  color: #ffffff;
  /* padding: 80px 20px 35px;
    position: relative;
    overflow: hidden; */
}

.footer-bottom p {
  margin: 0;
  color: #ffffffc7;
  font-size: 14px;
}

/* Designer Box */
.designer-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.designer-box span {
  font-size: 14px;
  color: #ffffffd4;
}

/* Anchor Tag Always Clickable */
.designer-link {
  display: inline-block;
}

/* Logo */
.designer-logo {
  width: 120px;
  height: auto;
  display: flex;
  cursor: pointer;
  transition: 0.3s ease;
  filter: brightness(1.4);
}

.designer-logo:hover {
  transform: scale(1.07);
  filter: brightness(2);
}

/* Responsive Fix */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Responsive Bottom */
@media (max-width: 768px) {
  .premium-footer {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* Kapil css */



/* hero section */

/* ===============================
   GLOBAL RESET (SAFE)
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #ffffff;
}

/* ===============================
   HERO SECTION (PREMIUM)
================================ */
.hero-chirag {
  position: relative;
  min-height: 85vh;
  padding: 90px 20px 70px;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* LIGHT + DARK GRADIENT BACKGROUND */
  background:
    radial-gradient(circle at 20% 25%, rgba(5,18,132,0.18), transparent 40%),
    radial-gradient(circle at 80% 75%, rgba(184,6,111,0.18), transparent 45%),
    linear-gradient(135deg, #f6f8ff 0%, #ffffff 45%, #fdf2f8 100%);
}

/* container */
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===============================
   LEFT CONTENT
================================ */
.hero-badge {
  display: inline-block;
  padding: 7px 18px;
  font-size: 13px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #051284, #b8066f);
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #051284;
}

.hero-content h1 span {
  color: #b8066f;
}

.hero-content p {
  margin-top: 16px;
  font-size: 16px;
  color: #555;
  max-width: 520px;
}

/* ===============================
   HERO BUTTONS
================================ */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  margin-bottom: 40px;
}

/* ===============================
   HERO COUNTERS (🔥 MAJOR UPDATE)
================================ */
.hero-stats {
  display: flex;
  gap: 22px;
}

/* counter card */
.hero-stats .stat {
  position: relative;
  padding: 16px 22px;
  min-width: 120px;
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(5,18,132,.7), rgba(184,6,111,.7)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 14px 36px rgba(5,18,132,0.18);
  transition: all 0.35s ease;
}

/* number */
.hero-stats .stat h3 {
  font-size: 30px;
  font-weight: 600;
  color: #051284;
  margin: 0;
}

/* label */
.hero-stats .stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

/* hover effect */
.hero-stats .stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(184,6,111,0.35);
}

/* ===============================
   RIGHT VISUAL
================================ */
.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.visual-card {
  position: relative;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(5,18,132,0.14);
  animation: floatUp 7s ease-in-out infinite;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 24px;
  background: linear-gradient(135deg, #051284, #b8066f);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.visual-card img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* floating animation */
@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-chirag {
    min-height: auto;
    padding: 100px 16px 60px;
  }

  .hero-stats .stat {
    min-width: 100%;
  }
}



/* text  moving */

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #051284, #b8066f);
  padding: 12px 0;
  position: relative;
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerLoop 12s linear infinite;
}

.ticker span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding-right: 60px;
}

/* PERFECT SEAMLESS LOOP ANIMATION */
@keyframes tickerLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Move exactly half (because text is duplicated) */
  }
}




/* about-css */

/* ===============================
   SECTION BACKGROUND FRAME
================================ */


:root {
  --blue: #051284;
  --pink: #b8066f;
}

/* SECTION */
.premium-doctor-section {
  padding: 120px 20px;
  background: linear-gradient(135deg,
      rgba(5, 18, 132, 0.07),
      rgba(184, 6, 111, 0.07));
}

/* WRAPPER */
.premium-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE WRAP */
.premium-img-wrap {
  position: relative;
  height: 460px;
}

/* RINGS */
.ring {
  position: absolute;
  border-radius: 50%;
  animation: floatRing 6s ease-in-out infinite;
}

.ring-blue {
  width: 320px;
  height: 320px;
  border: 6px solid rgba(5, 18, 132, 0.25);
  top: -40px;
  left: -40px;
}

.ring-pink {
  width: 360px;
  height: 360px;
  border: 6px solid rgba(184, 6, 111, 0.25);
  bottom: -50px;
  right: -50px;
  animation-delay: 1s;
}

/* IMAGE CARD */
.doctor-card {
  position: relative;
  z-index: 5;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  padding: 8px;
  box-shadow: 0 40px 90px rgba(5, 18, 132, 0.4);
  overflow: hidden;
}

.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 5s ease;
}

.doctor-card:hover img {
  transform: scale(1.15);
}

/* EXPERIENCE */
.exp-chip {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.exp-chip strong {
  font-size: 24px;
  color: var(--blue);
}

.exp-chip span {
  display: block;
  font-size: 12px;
  color: #444;
}

/* CONTACT */
.doctor-contact {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doctor-contact a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.doctor-contact a:hover {
  transform: scale(1.15);
}

/* CONTENT */
.section-pill {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
}

.doctor-name {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}

.doctor-name span {
  color: var(--pink);
}

.doctor-role {
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
}

.doctor-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 12px;
}

.doctor-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin: 26px 0;
}

.doctor-points span {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.doctor-points i {
  color: var(--pink);
  margin-right: 6px;
}

/* BUTTON */
.primary-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(5, 18, 132, 0.45);
}

/* ANIMATION */
@keyframes floatRing {
  50% {
    transform: translateY(-12px);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .premium-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .premium-img-wrap {
    height: 380px;
  }

  .doctor-points {
    grid-template-columns: 1fr;
  }

  .doctor-contact {
    right: 10px;
  }
}


/* services-css */

:root {
  --blue: #051284;
  --pink: #b8066f;
  --muted: #6b7280;
  --bg: #fbfbff;
  --radius: 14px;
  --shadow: 0 22px 70px rgba(5, 18, 132, 0.1);
  --card-min-height: 340px;
  --thumb-height: 220px;
  /* change to 200/240 to taste */
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* basic resets for this component */
.services-nine,
.sn-inner,
.sn-grid,
.sn-card,
.sn-thumb,
.sn-content {
  box-sizing: border-box;
}

/* wrapper */
.services-nine {
  background: linear-gradient(180deg, #fff, #fbfbff);
  padding: 56px 18px;
}

.sn-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

/* header */
.sn-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.sn-title {
  font-size: 28px;
  color: var(--blue);
  margin: 0;
  font-weight: 900;
}

.sn-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

/* CTA */
.sn-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ===== BUTTONS - unified, polished ===== */
/* universal */
.btn,
.link-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease;
  height: 40px;
  line-height: 1;
  box-sizing: border-box;
}

/* Learn More - subtle outline */
.link-more {
  background: #fff;
  border: 2px solid rgba(5, 18, 132, 0.18);
  color: var(--blue);
  padding: 8px 14px;
}

.link-more:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* Primary (solid gradient) */
.btn.primary {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  color: #fff;
  box-shadow: 0 12px 36px rgba(11, 12, 120, 0.12);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(5, 18, 132, 0.22);
}

/* Outline with gradient border */
.btn.outline {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, var(--blue), var(--pink)) border-box;
  color: var(--blue);
}

.btn.outline:hover {
  transform: translateY(-2px);
  background: linear-gradient(#f6f7ff, #f6f7ff) padding-box,
    linear-gradient(90deg, var(--blue), var(--pink)) border-box;
}

/* small variant used inside cards */
.btn.small {
  padding: 8px 14px;
  height: 40px;
  font-size: 14px;
}

/* ===== GRID & CARDS ===== */
.sn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  width: 100%;
}

/* card */
.sn-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: var(--card-min-height);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 4px solid rgba(5, 18, 132, 0.03);
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.25, 1), box-shadow 0.32s,
    border-color 0.32s;
  cursor: pointer;
  position: relative;
}

/* thumbnail area - full, cover, centered */
.sn-thumb {
  width: 100%;
  height: var(--thumb-height);
  overflow: hidden;
  display: block;
  background: linear-gradient(180deg, #eef4ff, #f8fbff);
}

.sn-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* key: full cover without distortion */
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
  will-change: transform;
  backface-visibility: hidden;
}

/* content area */
.sn-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.sn-content h3 {
  margin: 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.sn-content p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
  font-size: 14px;
}

/* actions row at bottom */
.sn-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* hover */
.sn-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 46px 140px rgba(5, 18, 132, 0.14);
  border-color: rgba(5, 18, 132, 0.12);
}

.sn-card:hover .sn-thumb img {
  transform: scale(1.04);
}

/* keyboard focus */
.sn-card:focus {
  outline: 3px solid rgba(5, 18, 132, 0.08);
  outline-offset: 6px;
}

/* modal */
.sn-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 8, 23, 0.62);
  z-index: 14000;
  padding: 18px;
}

.sn-modal[aria-hidden="false"] {
  display: flex;
}

.sn-modal-card {
  width: 880px;
  max-width: 96%;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 40px 140px rgba(2, 8, 23, 0.35);
  position: relative;
}

.sn-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
}

.sn-modal-hero {
  height: 200px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.06);
}

.sn-modal-card h3 {
  margin: 6px 0 6px;
  color: var(--blue);
  font-weight: 900;
}

.sn-muted {
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}

#snModalList {
  margin-left: 18px;
  font-weight: 700;
}

/* responsive */
@media (max-width: 1000px) {
  .sn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sn-grid {
    grid-template-columns: 1fr;
  }

  :root {
    --thumb-height: 160px;
  }

  .sn-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sn-modal-card {
    width: 92%;
    padding: 14px;
  }
}

/* safety overrides (reduce conflicts with global theme) */
.services-nine,
.sn-inner,
.sn-grid,
.sn-card,
.sn-thumb,
.sn-content {
  box-sizing: border-box !important;
}

.sn-card {
  min-width: 0 !important;
}

.sn-grid {
  width: 100% !important;
}

/* image fallback helper (if JS marks broken) */
.sn-thumb img.sn-img-broken {
  opacity: 0.02;
  transform: scale(1.02);
  filter: grayscale(0.3) contrast(0.95);
}

/* small tweak: ensure outline buttons used in card match height exactly */
.sn-actions .btn.small,
.sn-actions .link-more {
  height: 40px;
  padding: 0 14px;
}



/* why choose us- css */

:root {
  --blue: #051284;
  --pink: #b8066f;
}

/* SECTION */
.why-choose-section {
  padding: 110px 20px;
  background: linear-gradient(180deg,
      #ffffff,
      rgba(5, 18, 132, 0.05),
      rgba(184, 6, 111, 0.05));
}

/* HEADER */
.why-header {
  text-align: center;
  max-width: 780px;
  margin: auto;
  margin-bottom: 70px;
}

.why-pill {
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(5, 18, 132, 0.1);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

.why-title {
  font-size: 41px;
  font-weight: 800;
  margin: 16px 0;
}

.why-title span {
  color: var(--pink);
}

.why-subtitle {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 26px;
  text-align: center;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  overflow: hidden;
}

/* GRADIENT OVERLAY */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(5, 18, 132, 0.18),
      rgba(184, 6, 111, 0.18));
  opacity: 0;
  transition: 0.45s ease;
}

.why-card:hover::before {
  opacity: 1;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 45px 90px rgba(5, 18, 132, 0.25);
}

/* ICON */
.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  display: grid;
  place-items: center;
  margin: auto;
  margin-bottom: 22px;
  color: #fff;
  font-size: 30px;
  position: relative;
  z-index: 1;
  transition: transform 0.45s ease;
}

.why-card:hover .why-icon {
  transform: rotate(8deg) scale(1.12);
}

/* TEXT */
.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* TEXT ANIMATION */
.fade-text {
  animation: fadeText 1s ease forwards;
}

.fade-text-delay {
  opacity: 0;
  animation: fadeText 1s ease 0.6s forwards;
}

@keyframes fadeText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .2s;
}

.delay-2 {
  transition-delay: .4s;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 28px;
  }
}


/* gallary-video-css */

:root {
  --blue: #051284;
  --pink: #b8066f;
}

/* SECTION */
.premium-video-gallery {
  padding: 110px 20px;
  background: linear-gradient(180deg,
      #ffffff,
      rgba(5, 18, 132, 0.05),
      rgba(184, 6, 111, 0.05));
}

/* HEADER */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-pill {
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(5, 18, 132, 0.1);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}

.gallery-title {
  font-size: 42px;
  font-weight: 800;
  margin: 14px 0;
}

.gallery-title span {
  color: var(--pink);
}

.gallery-subtitle {
  font-size: 16px;
  color: #475569;
}

/* SLIDER */
.video-slider {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.video-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.video-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* VIDEO CARD */
.video-card {
  flex: 0 0 33.333%;
  padding: 12px;
  position: relative;
  cursor: pointer;
}

.video-card video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(5, 18, 132, 0.25);
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  inset: 12px;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  transition: 0.3s;
}

.video-card:hover .play-icon {
  background: rgba(5, 18, 132, 0.6);
}

/* BUTTONS */
.gallery-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .video-card {
    flex: 0 0 50%;
  }

  .gallery-title {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .video-card {
    flex: 0 0 100%;
  }

  .video-card video {
    height: 240px;
  }

  .gallery-title {
    font-size: 28px;
  }
}

/* POPUP */
.video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-popup video {
  width: 90%;
  max-width: 800px;
  border-radius: 16px;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

















/* CTA CSS */

/* ===============================
   CTA SECTION
================================ */
.cta-section {
  position: relative;
  padding: 90px 20px;
  overflow: hidden;
  background:
    radial-gradient(700px at 10% 20%, rgba(184, 6, 111, .18), transparent 60%),
    radial-gradient(700px at 90% 80%, rgba(5, 18, 132, .22), transparent 60%),
    linear-gradient(180deg, #f3f5ff, #ffffff);
}

/* subtle animated overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(5, 18, 132, .06),
      rgba(184, 6, 111, .06),
      transparent 70%);
  animation: ctaBgMove 10s linear infinite;
}

@keyframes ctaBgMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-40px);
  }

  100% {
    transform: translateX(0);
  }
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* CONTENT */
.cta-title {
  font-size: 40px;
  font-weight: 800;
  color: #051284;
  margin-bottom: 16px;
  animation: ctaFadeUp 1s ease forwards;
}

.cta-text {
  font-size: 18px;
  color: #6b7280;
  max-width: 720px;
  margin: 0 auto 36px;
  animation: ctaFadeUp 1s ease .2s forwards;
  opacity: 0;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  animation: ctaFadeUp 1s ease .4s forwards;
  opacity: 0;
}

.cta-btn {
  padding: 16px 36px;
  border-radius: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: all .4s ease;
  position: relative;
}

/* PRIMARY */
.cta-btn.primary {
  background: linear-gradient(90deg, #051284, #b8066f);
  color: #fff;
  box-shadow: 0 20px 40px rgba(5, 18, 132, .25);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 6, 111, .45);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(184, 6, 111, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(184, 6, 111, 0);
  }
}

.cta-btn.primary:hover {
  transform: translateY(-6px) scale(1.03);
}

/* SECONDARY */
.cta-btn.secondary {
  border: 2px solid #051284;
  color: #051284;
  background: #fff;
}

.cta-btn.secondary:hover {
  background: #051284;
  color: #fff;
  transform: translateY(-6px);
}

/* ENTRY ANIMATION */
@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .cta-title {
    font-size: 30px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }
}












/* Review CSS */

:root {
  --primary: #051284;
  /* Royal Blue */
  --accent: #b8066f;
  /* Premium Pink */
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
}

/* ===============================
   SECTION BACKGROUND (LIGHT PREMIUM)
================================ */
.premium-reviews {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at top left,
      rgba(5, 18, 132, .10),
      transparent 45%),
    radial-gradient(circle at bottom right,
      rgba(184, 6, 111, .10),
      transparent 45%),
    linear-gradient(180deg, #f9fbff, #f1f5ff);
  overflow: hidden;
}

/* CANVAS */
#bgCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 2;
}

/* ===============================
   TITLE
================================ */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--primary);
  letter-spacing: .3px;
}

/* ===============================
   SLIDER WRAPPER
================================ */
.review-slider {
  overflow: hidden;
  padding: 20px 0 40px;
}

/* TRACK */
.review-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  /* SAME HEIGHT */
}

/* ===============================
   REVIEW CARD (PREMIUM)
================================ */
.review-card {
  flex: 0 0 calc((100% - 48px)/3);
  min-height: 270px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, .95),
      rgba(240, 244, 255, .9));
  border-radius: 20px;
  padding: 34px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow:
    0 20px 40px rgba(5, 18, 132, .12),
    inset 0 0 0 1px rgba(5, 18, 132, .06);

  transition: transform .4s ease, box-shadow .4s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg,
      rgba(5, 18, 132, .08),
      rgba(184, 6, 111, .08));
  opacity: 0;
  transition: .4s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(5, 18, 132, .18);
}

/* TEXT */
.review-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
}

/* ===============================
   USER INFO
================================ */
.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.review-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.review-user h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.review-user span {
  font-size: 13px;
  color: var(--muted);
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:992px) {
  .review-card {
    flex: 0 0 calc((100% - 24px)/2);
  }
}

@media(max-width:576px) {
  .review-card {
    flex: 0 0 100%;
  }
}











/* FAQ section css  */

:root {
  --primary: #051284;
  --accent: #b8066f;
  --text: #1f2937;
  --muted: #6b7280;
}

/* SECTION */
.ortho-faq-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(5, 18, 132, .08), transparent 45%),
    radial-gradient(circle at bottom right, rgba(184, 6, 111, .08), transparent 45%),
    #f9fbff;
}

/* IMAGE */
.faq-image-box {
  text-align: center;
}

.faq-image-box img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(5, 18, 132, .18);
}

/* TITLE */
.faq-title {
  font-size: 34px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-subtitle {
  color: var(--muted);
  margin-bottom: 40px;
}

.faq-subtitle strong {
  color: var(--secondary);
  margin-bottom: 40px;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(5, 18, 132, .12);
  overflow: hidden;
  transition: .3s ease;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.faq-question i {
  font-size: 22px;
  color: var(--secondary);
  transition: .3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-answer p {
  margin: 0 0 20px;
  color: #374151;
  line-height: 1.7;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 26px 22px;
}

.faq-item.active i {
  transform: rotate(45deg);
  color: var(--accent);
}

/* FADE ANIMATIONS */
.fade-left {
  animation: fadeLeft 1s ease both;
}

.fade-right {
  animation: fadeRight 1s ease both;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVE */
@media(max-width:991px) {
  .faq-title {
    text-align: center;
  }

  .faq-subtitle {
    text-align: center;
  }
}

















/* counter-chirag */

/* counter-chirag */
.doctor-stats-cta {
  padding: 80px 20px;
  background: 
    radial-gradient(800px at 10% 20%, rgba(184, 6, 111, .1), transparent 60%),
    radial-gradient(700px at 90% 80%, rgba(5, 18, 132, .15), transparent 60%),
    linear-gradient(180deg, #f8faff, #ffffff);
  overflow: hidden;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.stats-kicker {
  display: inline-block;
  color: #051284;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 12px;
}

.stats-title {
  font-size: clamp(28px, 4vw, 42px); /* Responsive Font */
  color: #051284;
  font-weight: 800;
  line-height: 1.2;
}

.stats-title span {
  font-size: clamp(16px, 2vw, 20px);
  color: #b8066f;
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.stats-text {
  color: #555e6d;
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin: 20px 0 35px;
}

.stats-buttons {
  display: flex;
  flex-wrap: wrap; /* Takki chote mobile me buttons niche aa jaye */
  gap: 15px;
}

.stats-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
  text-align: center;
}

.stats-btn.primary {
  background: linear-gradient(90deg, #051284, #b8066f);
  color: #fff;
  box-shadow: 0 10px 25px rgba(5, 18, 132, .2);
}

.stats-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(5, 18, 132, .3);
}

.stats-btn.secondary {
  border: 2px solid #051284;
  color: #051284;
}

.stats-btn.secondary:hover {
  background: #051284;
  color: #fff;
}

/* RIGHT SIDE COUNTERS */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  border: 1px solid rgba(0,0,0,0.03);
}

.stat-card h3 {
  font-size: clamp(24px, 3vw, 32px);
  color: #051284;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-card p {
  margin: 0;
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
}

/* RESPONSIVE BREAKPOINTS */
@media(max-width: 991px) {
  .stats-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .stats-text {
    margin: 20px auto 35px;
  }
  .stats-buttons {
    justify-content: center;
  }
}

@media(max-width: 480px) {
  .stats-cards {
    grid-template-columns: 1fr; /* Mobile par 1 column taki cards bade dikhe */
  }
  .stats-btn {
    width: 100%; /* Mobile par full width buttons */
  }
}






/* ===============================
   DR CHIRAG CONTACT CTA
================================ */
.chirag-contact-cta {
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(800px at 10% 15%, rgba(184, 6, 111, .22), transparent 60%),
    radial-gradient(700px at 90% 85%, rgba(5, 18, 132, .28), transparent 60%),
    linear-gradient(180deg, #f2f4ff, #ffffff);
  overflow: hidden;
}

.chirag-cta-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.cta-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
  color: #b8066f;
  margin-bottom: 14px;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  color: #051284;
  margin-bottom: 18px;
  animation: fadeUp 1s ease forwards;
}

.cta-title span {
  display: block;
  font-size: 20px;
  color: #b8066f;
  margin-top: 6px;
}

.cta-desc {
  max-width: 520px;
  color: #6b7280;
  font-size: 17px;
  margin-bottom: 36px;
  animation: fadeUp 1s ease .2s forwards;
  opacity: 0;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  gap: 18px;
  animation: fadeUp 1s ease .4s forwards;
  opacity: 0;
}

.cta-btn {
  padding: 16px 34px;
  border-radius: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: .4s ease;
}

.cta-btn.primary {
  background: linear-gradient(90deg, #051284, #b8066f);
  color: #fff;
  box-shadow: 0 18px 40px rgba(5, 18, 132, .28);
  animation: pulseGlow 2.5s infinite;
}

.cta-btn.primary:hover {
  transform: translateY(-6px) scale(1.03);
}

.cta-btn.outline {
  border: 2px solid #051284;
  color: #051284;
}

.cta-btn.outline:hover {
  background: #051284;
  color: #fff;
  transform: translateY(-6px);
}

/* RIGHT CARD */
.cta-info-card {
  background: #fff;
  border-radius: 26px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
  animation: floatCard 5s ease-in-out infinite;
}

.cta-info-card .card-label {
  color: #b8066f;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cta-info-card h3 {
  font-size: 28px;
  color: #051284;
  font-weight: 800;
  margin-bottom: 6px;
}

.cta-info-card span {
  color: #6b7280;
  font-weight: 600;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 6, 111, .4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(184, 6, 111, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(184, 6, 111, 0);
  }
}

@keyframes floatCard {
  50% {
    transform: translateY(-14px);
  }
}

/* RESPONSIVE */
@media(max-width:991px) {
  .chirag-cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }
}








/* contact-css */

/* ================= ROOT ================= */
:root {
  --blue: #051284;
  --pink: #b8066f;
  --gradient: linear-gradient(135deg, var(--blue), var(--pink));
  --shadow: 0 18px 55px rgba(0, 0, 0, .12);
  --radius: 22px;
}

/* ================= HERO ================= */
.cp-hero {
  height: 55vh;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(5, 18, 132, .85), rgba(184, 6, 111, .75)),
    url("images/hero-slider-1.jpg") center/cover no-repeat;
}

.cp-hero-inner {
  animation: fadeUp .9s ease forwards;
}

.cp-badge {
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 2px;
  font-size: 12px;
  opacity: .9;
}

/* ================= INFO SECTION ================= */
.cp-info {
  padding: 50px 20px;
}

.cp-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.cp-info-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  transition: .35s ease;
}

.cp-info-card:hover {
  transform: translateY(-6px);
}

.cp-info-card i {
  font-size: 24px;
  color: var(--pink);
  margin-bottom: 6px;
}

/* ================= MAIN FORM + MAP ================= */
.cp-main {
  padding: 55px 20px;
}

.cp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* ---------- FORM ---------- */
.cp-form-box {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideLeft .8s ease forwards;
}

.cp-form-box h3 {
  margin-bottom: 4px;
}

.cp-form-box p {
  margin-bottom: 16px;
  color: #666;
  font-size: 14.5px;
}

.cp-form-box input,
.cp-form-box select,
.cp-form-box textarea {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 11px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14.5px;
}

.cp-form-box textarea {
  resize: none;
  min-height: 90px;
}

/* ---------- MAP ---------- */
.cp-map {
  height: 100%;
  animation: slideRight .8s ease forwards;
}

.cp-map iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  border: 0;
  box-shadow: var(--shadow);
}

/* ================= BUTTON ================= */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-weight: bold;
  padding: 13px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 35px rgba(184, 6, 111, .45);
  transition: .35s ease;
}

.cp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(184, 6, 111, .6);
}

.cp-btn.big {
  width: auto;
  padding: 15px 40px;
}

/* ================= CTA ================= */
.cp-cta {
  padding: 55px 20px;
  text-align: center;
  background: #f6f7ff;
}

.cp-cta h2 {
  margin-bottom: 14px;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-25px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(25px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
  .cp-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cp-map iframe {
    height: 320px;
  }

  .cp-hero {
    height: 48vh;
  }
}







/* complete responsive code */


/* ========== GLOBAL RESPONSIVE SAFETY ========== */
* {
  box-sizing: border-box;
}

section {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container,
.wrap,
.hero-container,
.sn-inner,
.cm-container,
.ts-container {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}


/* hero-section */

/* ================================
   HERO MOBILE FIX (FINAL)
================================ */

/* ================================
   HERO – MOBILE TEXT TOP, IMAGE BOTTOM
================================ */
@media (max-width: 768px) {

  .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    /* 👈 text LEFT */
  }

  /* TEXT FIRST */
  .hero-left {
    order: 1;
  }

  .hero-kicker {
    display: inline-block;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  /* BUTTONS LEFT */
  .hero-buttons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 150px;
  }

  .trust-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  /* IMAGE SECOND */
  .hero-right {
    order: 2;
    height: auto;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }

  /* BLOBS OFF */
  .hero-right .blob {
    display: none;
  }

  .img-wrap {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
  }

  .hero-main-img {
    height: 220px;
    margin: 0 auto;
    animation: none;
  }
}


/* Mobile width correction */
@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  .hero-section,
  section {
    width: 100%;
  }
}






/* ===== FOOTER RESPONSIVE FIX ===== */
/* =================================
   FOOTER – MOBILE LEFT ALIGN FIX
================================= */
@media (max-width: 768px) {

  .premium-footer {
    text-align: left;
    /* 👈 CENTER hatao */
    padding: 50px 16px 30px;
  }

  .premium-footer .row {
    row-gap: 28px;
  }

  /* Logo & text */
  .footer-logo {
    margin-left: 0;
  }

  .footer-text {
    text-align: left;
  }

  /* Social icons left */
  .footer-social {
    justify-content: flex-start;
  }

  /* Titles */
  .footer-title {
    text-align: left;
  }

  .footer-title::after {
    margin-left: 0;
    /* underline left */
  }

  /* Links left */
  .footer-links {
    padding-left: 0;
  }

  .footer-links li {
    text-align: left;
  }

  /* Contact info left */
  .contact-item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .contact-item i {
    margin-top: 4px;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .designer-box {
    justify-content: flex-start;
  }
}





/* =================================
   SMART AUTO STICKY NAVBAR
================================= */
.custom-nav {
  position: fixed;
  /* IMPORTANT */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hidden state */
.custom-nav.nav-hidden {
  transform: translateY(-100%);
}

/* Visible on scroll */
.custom-nav.nav-visible {
  transform: translateY(0);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}



:root{
  --green:#1f8f4a;
  --orange:#f47c20;
  --text:#1f2937;
  --muted:#6b7280;
}

/* SECTION */
.hip-about-section{
  padding:100px 0;
  background:
    radial-gradient(circle at top left, rgba(31,143,74,.08), transparent 45%),
    radial-gradient(circle at bottom right, rgba(244,124,32,.08), transparent 45%),
    #ffffff;
}

/* GRID */
.hip-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE SIDE */
.hip-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.hip-img-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 25px 50px rgba(0,0,0,.15);
  transition:.4s ease;
}

.hip-img-card:hover{
  transform:translateY(-8px);
}

.hip-img-card img{
  width:100%;
  display:block;
}

.img-label{
  position:absolute;
  top:14px;
  left:14px;
  background:#f47c20;
  color:#fff;
  padding:6px 14px;
  font-size:13px;
  font-weight:600;
  border-radius:20px;
}

.img-label.after{
  background:#1f8f4a;
}

/* CONTENT */
.about-tag{
  display:inline-block;
  color:#1f8f4a;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:12px;
}

.hip-content h2{
  font-size:42px;
  margin-bottom:20px;
}

.hip-content .orange{color:var(--orange);}
.hip-content .green{color:var(--green);}

.hip-content p{
  color:var(--text);
  line-height:1.8;
  margin-bottom:16px;
}

.hip-points{
  list-style:none;
  padding:0;
  margin-top:22px;
}

.hip-points li{
  padding-left:28px;
  margin-bottom:12px;
  position:relative;
  color:var(--text);
}

.hip-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:700;
}

/* ANIMATIONS */
.fade-left{
  opacity:0;
  transform:translateX(-40px);
  animation:fadeLeft 1s ease forwards;
}

.fade-right{
  opacity:0;
  transform:translateX(40px);
  animation:fadeRight 1s ease forwards;
}

@keyframes fadeLeft{
  to{opacity:1; transform:none;}
}
@keyframes fadeRight{
  to{opacity:1; transform:none;}
}

/* RESPONSIVE */
@media(max-width:992px){
  .hip-grid{
    grid-template-columns:1fr;
  }
  .hip-images{
    order:1;
  }
  .hip-content{
    order:2;
  }
  .hip-content h2{
    font-size:34px;
  }
}







/* ===============================
   DYNAMIC FLOATING BUTTONS
================================ */
#chirag-floating-buttons{
  position:fixed;
  right:18px;
  bottom:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:9999;
}

.chirag-float-btn{
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  transition:.35s ease;
  animation:chiragPulse 2.5s infinite;
}

.chirag-float-btn:hover{
  transform:translateY(-6px) scale(1.08);
}

/* COLORS */
.chirag-float-btn.whatsapp{background:#25d366;}
.chirag-float-btn.call{background:#051284;}
.chirag-float-btn.location{background:#b8066f;}

/* PULSE */
@keyframes chiragPulse{
  0%{box-shadow:0 0 0 0 rgba(0,0,0,.35);}
  70%{box-shadow:0 0 0 16px rgba(0,0,0,0);}
  100%{box-shadow:0 0 0 0 rgba(0,0,0,0);}
}

/* MOBILE */
@media(max-width:768px){
  #chirag-floating-buttons{
    right:12px;
    bottom:16px;
  }
  .chirag-float-btn{
    width:50px;
    height:50px;
    font-size:20px;
  }
}










/* floating images */



