/* ===========================
   SHREE SAISIDDHI CLINICAL LAB
   Deep Navy + Gold — Elegant Design
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Navy palette */
  --navy:        #1a2e4a;
  --navy-deep:   #0f1e32;
  --navy-mid:    #2a4a6e;
  --navy-light:  #3a6a9a;
  --navy-pale:   #d4e2f0;
  --navy-faint:  #eaf0f8;

  /* Gold / Amber accent */
  --gold:        #c8933a;
  --gold-light:  #e0ab58;
  --gold-pale:   #fdf3e3;
  --gold-mid:    #f2d9a8;

  /* Sky blue soft tones */
  --sky:         #e8f2fb;
  --sky-mid:     #b8d4ee;

  /* Neutrals */
  --cream:       #fdf8f3;
  --warm-white:  #fefefe;

  /* Text */
  --text-dark:   #1a2535;
  --text-mid:    #3a5070;
  --text-light:  #7a90a8;

  /* Border & shadow */
  --border:      #d0dde8;
  --shadow-sm:   0 2px 12px rgba(26,46,74,0.08);
  --shadow-md:   0 6px 30px rgba(26,46,74,0.12);
  --shadow-lg:   0 16px 60px rgba(26,46,74,0.14);

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--text-dark); line-height: 1.65; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.accent { color: var(--navy-mid); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white; box-shadow: 0 4px 18px rgba(26,46,74,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,46,74,0.4); }
.btn-outline { background: transparent; color: var(--navy-mid); border: 2px solid var(--navy-mid); }
.btn-outline:hover { background: var(--navy-faint); transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.97); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { display: flex; align-items: center; filter: drop-shadow(0 2px 4px rgba(26,46,74,0.2)); }
.logo-icon svg { width: 34px; height: 34px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1; }
.logo-sub { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.05em; margin-top: 2px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-link { padding: 8px 14px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--text-mid); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--navy-faint); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-faint) 0%, var(--sky) 50%, var(--cream) 100%);
  display: flex; align-items: center; padding: 100px 5vw 60px;
  position: relative; overflow: hidden;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.circle { position: absolute; border-radius: 50%; opacity: 0.25; }
.c1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--navy-pale), transparent); top: -150px; right: -150px; animation: floatCircle 8s ease-in-out infinite; }
.c2 { width: 300px; height: 300px; background: radial-gradient(circle, var(--sky-mid), transparent); bottom: -100px; left: -80px; animation: floatCircle 10s ease-in-out infinite reverse; }
.c3 { width: 200px; height: 200px; background: radial-gradient(circle, var(--gold-mid), transparent); top: 50%; left: 40%; animation: floatCircle 12s ease-in-out infinite 2s; }
@keyframes floatCircle { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content { max-width: 580px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--navy); border: 1.5px solid var(--navy-pale);
  padding: 7px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.hero-title { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--text-dark); margin-bottom: 18px; line-height: 1.1; }
.hero-accent { color: var(--navy-mid); position: relative; }
.hero-accent::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-mid)); border-radius: 2px; }
.hero-desc { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; gap: 24px; background: white; padding: 18px 28px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: fit-content; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy-mid); font-weight: 700; }
.stat-label { font-size: 0.75rem; color: var(--text-light); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }
.hero-image { display: flex; flex-direction: column; gap: 0; margin-left: auto; padding-left: 40px; position: relative; z-index: 2; }
.hero-card { display: flex; align-items: center; gap: 14px; background: white; padding: 16px 22px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); min-width: 230px; border: 1px solid var(--border); font-size: 0.9rem; color: var(--text-mid); }
.hero-card strong { color: var(--text-dark); font-size: 0.95rem; }
.hero-card small { font-size: 0.78rem; color: var(--text-light); }
.hcard-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--navy-faint); border-radius: 12px; border: 1px solid var(--navy-pale); flex-shrink: 0; }
.hcard-icon svg { width: 22px; height: 22px; color: var(--navy-mid); }

.card-float { animation: cardFloat 5s ease-in-out infinite; }
.card-float.delay-1 { animation-delay: -1.5s; }
.card-float.delay-2 { animation-delay: -3s; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== HOURS STRIP ===== */
.hours-strip { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; padding: 16px 20px; }
.hours-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 0.9rem; }
.hour-item { display: flex; align-items: center; gap: 8px; }
.hour-icon { display: flex; align-items: center; }
.hour-icon svg { width: 18px; height: 18px; }
.hour-divider { opacity: 0.4; font-size: 1.2rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: var(--navy-faint); color: var(--navy-mid);
  padding: 5px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; border: 1px solid var(--navy-pale);
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text-dark); margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 520px; margin: 0 auto; }

/* ===== WHY SECTION ===== */
.why-section { padding: 90px 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.why-card { background: white; border-radius: var(--radius-md); padding: 32px 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--navy-pale); }
.why-icon { width: 52px; height: 52px; background: var(--navy-faint); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 1px solid var(--navy-pale); }
.why-icon svg { width: 26px; height: 26px; color: var(--navy-mid); }
.why-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== ABOUT ===== */
.about-section { padding: 90px 0; background: white; }
.about-flex { display: flex; gap: 70px; align-items: flex-start; }
.about-visual { flex: 0 0 360px; }
.about-img-wrap { background: linear-gradient(135deg, var(--navy-faint), var(--sky)); border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; min-height: 260px; margin-bottom: 20px; }
.about-blob { position: absolute; width: 250px; height: 250px; background: radial-gradient(circle, var(--navy-pale), transparent); border-radius: 50%; opacity: 0.6; }
.about-icon-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
.a-icon { width: 70px; height: 70px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); animation: cardFloat 5s ease-in-out infinite; }
.a-icon svg { width: 30px; height: 30px; color: var(--navy-mid); }
.a-icon:nth-child(2) { animation-delay: -1.5s; }
.a-icon:nth-child(3) { animation-delay: -3s; }
.a-icon:nth-child(4) { animation-delay: -4s; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; }
.value-chip { background: var(--navy-faint); color: var(--navy-mid); padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; border: 1px solid var(--navy-pale); display: flex; align-items: center; gap: 6px; }
.value-chip svg { width: 14px; height: 14px; }
.about-text { flex: 1; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 0.97rem; }
.about-mission { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.mission-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text-mid); }
.mission-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--gold-pale); border-radius: 8px; }
.mission-icon svg { width: 16px; height: 16px; color: var(--gold); }
.about-vision { background: linear-gradient(135deg, var(--navy-faint), var(--sky)); padding: 20px 24px; border-radius: var(--radius-md); border-left: 4px solid var(--navy-mid); margin-top: 20px; }
.about-vision h4 { color: var(--navy-mid); margin-bottom: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; }
.about-vision p { color: var(--text-mid); font-size: 0.93rem; margin: 0; }

/* ===== SERVICES ===== */
.services-section { padding: 90px 0; background: linear-gradient(180deg, var(--cream) 0%, white 100%); }
.services-main-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--navy-pale); }
.service-card.big { grid-row: span 1; }
.sc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.sc-icon { width: 44px; height: 44px; background: var(--navy-faint); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--navy-pale); }
.sc-icon svg { width: 22px; height: 22px; color: var(--navy-mid); }
.sc-header h3 { font-size: 1.1rem; color: var(--text-dark); font-family: 'DM Sans', sans-serif; font-weight: 600; }
.sc-list { display: flex; flex-direction: column; gap: 8px; }
.sc-list li { font-size: 0.88rem; color: var(--text-mid); padding: 7px 12px; background: var(--navy-faint); border-radius: 8px; display: flex; align-items: center; gap: 8px; }
.sc-list li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; }
.sc-note { display: block; margin-top: 10px; font-size: 0.78rem; color: var(--text-light); font-style: italic; }
.highlight-card { background: linear-gradient(135deg, var(--navy-faint), var(--sky)); border-color: var(--navy-pale); }
.highlight-card .sc-list li { background: white; }
.home-cta { margin-top: 18px; }

/* ===== PACKAGES ===== */
.packages-section { padding: 90px 0; background: var(--cream); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.package-card { background: white; border-radius: var(--radius-md); padding: 32px 24px; border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); position: relative; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--navy-pale); }
.package-card.popular { border-color: var(--navy-mid); background: linear-gradient(160deg, white, var(--navy-faint)); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; font-size: 0.75rem; font-weight: 600; padding: 4px 16px; border-radius: 50px; white-space: nowrap; }
.pkg-icon { width: 56px; height: 56px; background: var(--navy-faint); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border: 2px solid var(--navy-pale); }
.pkg-icon svg { width: 26px; height: 26px; color: var(--navy-mid); }
.package-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.package-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 20px; }

/* ===== REPORTS ===== */
.reports-section { padding: 90px 0; background: white; }
.reports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.report-card { background: linear-gradient(160deg, var(--navy-faint), white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.report-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rc-icon { width: 64px; height: 64px; background: var(--navy-faint); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 2px solid var(--navy-pale); }
.rc-icon svg { width: 30px; height: 30px; color: var(--navy-mid); }
.report-card h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.report-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 20px; }
.report-channels { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.channel { background: white; color: var(--navy-mid); border: 1px solid var(--border); padding: 5px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.channel svg { width: 13px; height: 13px; }

/* ===== CONTACT ===== */
.contact-section { padding: 90px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--navy-faint) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h3, .contact-form-wrap h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 24px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; background: white; padding: 18px 20px; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.ci-icon { width: 40px; height: 40px; background: var(--navy-faint); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--navy-pale); }
.ci-icon svg { width: 20px; height: 20px; color: var(--navy-mid); }
.contact-item strong { color: var(--navy-mid); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }
.map-placeholder { background: white; border-radius: var(--radius-md); border: 2px dashed var(--border); padding: 40px 20px; text-align: center; color: var(--text-light); }
.map-icon { width: 50px; height: 50px; background: var(--navy-faint); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.map-icon svg { width: 24px; height: 24px; color: var(--navy-mid); }
.map-placeholder p { margin: 0; font-size: 0.9rem; }
.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-lg); border: 1.5px solid var(--border); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text-dark); background: var(--cream); transition: var(--transition); outline: none; resize: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy-mid); background: white; box-shadow: 0 0 0 4px rgba(42,74,110,0.1); }
.form-success { display: none; background: var(--navy-faint); color: var(--navy); border: 1.5px solid var(--navy-pale); border-radius: var(--radius-sm); padding: 14px 20px; font-weight: 600; text-align: center; margin-top: 10px; }
.form-success.show { display: block; animation: fadeIn 0.4s ease; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(160deg, #0f1e32 0%, #071428 100%); color: rgba(255,255,255,0.85); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--gold-mid); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); padding: 7px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; transition: var(--transition); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; gap: 6px; }
.social-btn svg { width: 14px; height: 14px; }
.social-btn:hover { background: rgba(255,255,255,0.2); }
.footer h4 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--gold-mid); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services li { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-mid); }
.fh-item { display: flex; justify-content: space-between; font-size: 0.88rem; color: rgba(255,255,255,0.7); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.emergency-badge { margin-top: 18px; background: rgba(200,147,58,0.15); border: 1px solid rgba(200,147,58,0.3); color: var(--gold-light); padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.emergency-badge svg { width: 14px; height: 14px; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; border: none; border-radius: 50%; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: var(--transition); z-index: 999; display: flex; align-items: center; justify-content: center; }
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 110px 20px 60px; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-image { display: none; }
  .about-flex { flex-direction: column; }
  .about-visual { flex: none; width: 100%; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 20px; flex-direction: column; box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hours-inner { flex-direction: column; gap: 10px; }
  .hour-divider { display: none; }
  .hero-stats { flex-direction: column; gap: 14px; width: 100%; }
  .stat-divider { width: 40px; height: 1px; }
  .contact-form-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .packages-grid, .services-main-grid, .why-grid, .reports-grid { grid-template-columns: 1fr; }
}


.nav-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    width:100px;
    height:70px;
    object-fit:contain;
    border-radius:50%;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-name{
    font-size:22px;
    font-weight:700;
    color:var(--navy);
    line-height:1.1;
}

.logo-sub{
    font-size:13px;
    color:#666;
}

/* Footer Logo Container */
.logo-wrapper {
    background: #ffffff; /* Logo cha background white thevla aahe */
    padding: 8px 15px;   /* Logo chya baajuni jaaga sodli aahe */
    border-radius: 12px; /* Image madhe dakhavlyapramane rounded shape */
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Thoda shadow jyamule to uthun disel */
}

.footer-logo-img {
    height: 60px;       /* Tumchya garjeusaar height kammi-jaast kara */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Description text styling */
.brand-desc {
    color: #cbd5e1;     /* Light grey color for readability */
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

/* Social Buttons */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

/* Lab Image */
.about-img-container {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-lab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* Our Mission Box */
.our-mission-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border-left: 4px solid var(--accent, #4a90d9);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}

.our-mission-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary, #1a3a5c);
  margin-bottom: 10px;
}

.our-mission-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;      /* ← हे add करा */
}

/* Text paragraphs left aligned राहतील */
.about-text p,
.about-text h2,
.about-text .section-tag,
.about-text .about-mission {
  align-self: flex-start;
  width: 100%;
}


/* ====== VISION & MISSION SECTION ====== */
.vm-section {
  padding: 80px 0;
  background: #f8fbff;
}

.vm-header {
  text-align: center;
  margin-bottom: 50px;
}

.vm-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* Cards Row */
.vm-cards {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual Card */
.vm-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Mission = left accent color */
.mission-card {
  border-top: 4px solid #e8a020;
}

/* Vision = right accent color */
.vision-card {
  border-top: 4px solid #1a6fbf;
}

/* Icon */
.vm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-card .vm-card-icon {
  background: #fff8ec;
  color: #e8a020;
}

.vision-card .vm-card-icon {
  background: #eaf3ff;
  color: #1a6fbf;
}

.vm-card-icon svg {
  width: 28px;
  height: 28px;
}

.vm-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 14px;
}

.vm-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Points List */
.vm-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #444;
  font-weight: 500;
}

.vm-points li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #4caf50;
}

/* Middle Divider */
.vm-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 12px;
}

.vm-divider-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, #ccc, transparent);
}

.vm-divider-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #dde8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.vm-divider-icon svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-cards {
    flex-direction: column;
    align-items: center;
  }

  .vm-divider {
    flex-direction: row;
    padding: 20px 0;
    width: 100%;
  }

  .vm-divider-line {
    width: auto;
    height: 2px;
    flex: 1;
    background: linear-gradient(to right, transparent, #ccc, transparent);
  }
}