/* ============================================================
   M/s. LPH PHARMA PVT LTD — Global Stylesheet
   Brand colors from logo: #1A5FA8 (blue), #0D3B6E (navy), #2E86DE (accent)
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --primary:      #2e3192;
  --primary-dark: #2e3192;
  --accent:       #2e3192;
  --accent-light: #5BA3E8;
  --white:        #FFFFFF;
  --off-white:    #F4F8FD;
  --light-blue:   #E8F0FA;
  --mid-blue:     #C5D9F1;
  --dark:         #0A1628;
  --text-dark:    #1A202C;
  --text-mid:     #4A5568;
  --text-light:   #718096;
  --border:       #D1E2F7;
  --success:      #38A169;
  --shadow-sm:    0 2px 8px rgba(26,95,168,0.10);
  --shadow-md:    0 8px 32px rgba(26,95,168,0.14);
  --shadow-lg:    0 24px 64px rgba(26,95,168,0.18);
  --shadow-xl:    0 40px 100px rgba(13,59,110,0.22);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   all 0.30s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: solid 1px #2e3192;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  /*font-family: var(--font-serif);*/
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
}

/* ══════════════════════════════════════════
   BUTTONS — fixed and consistent
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  padding: 13px 30px;
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(26,95,168,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,95,168,0.50);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(5, 28, 64, 0.82);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 1px 0 rgba(26,95,168,0.10), var(--shadow-sm);
  border-bottom: 1px solid rgba(26,95,168,0.10);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 46px;
  width: auto;
  transition: var(--transition);
}
#navbar.scrolled .nav-logo img { height: 40px; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
  padding: 9px 16px;
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.14);
}
#navbar.scrolled .nav-link { color: var(--text-mid); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active { color: var(--primary); background: var(--white);border: solid 1px #2e3192;}

.nav-chevron {
  width: 14px; height: 14px;
  fill: currentColor;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown — padding-top fills the gap so hover never breaks */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  padding-top: 16px;
  margin-top: -8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
}
.nav-item:hover .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: var(--light-blue);
  color: var(--primary);
}
.nav-dropdown-item svg {
  width: 16px; height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 8px;
}
.nav-dropdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 6px 14px 4px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,95,168,0.38);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,95,168,0.50); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  border-radius: 2px; background: var(--white); transition: var(--transition);
}
#navbar.scrolled .nav-hamburger span { background: var(--primary-dark); }

/* Mobile Nav — slide-in panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 50, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }

.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 86vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(10, 30, 80, 0.22);
  overflow: hidden;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

/* Panel header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #051C40 0%, var(--primary-dark) 100%);
  flex-shrink: 0;
}
.mobile-nav-logo img {
  height: 34px;
  width: auto;
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.22); }
.mobile-nav-close svg { width: 18px; height: 18px; fill: white; }

/* Scrollable links area */
.mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

/* Primary link */
.mobile-nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 14px 22px;
  transition: var(--transition);
  text-decoration: none;
  border-left: 3px solid transparent;
}
.mobile-nav-link:hover { color: var(--primary); background: var(--light-blue); border-left-color: var(--accent); }
.mobile-nav-link.active { color: var(--primary); background: var(--light-blue); border-left-color: var(--primary); }

/* Accordion group */
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 14px 22px;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: var(--font-sans);
  width: 100%;
}
.mobile-nav-group-btn:hover { color: var(--primary); background: var(--light-blue); border-left-color: var(--accent); }
.mobile-nav-group-btn.open { color: var(--primary); background: var(--light-blue); border-left-color: var(--primary); }

.mobile-nav-chevron {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.mobile-nav-group-btn.open .mobile-nav-chevron { transform: rotate(180deg); }

/* Sub links */
.mobile-nav-sub-links {
  display: none;
  flex-direction: column;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-sub-links.open { display: flex; }
.mobile-nav-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 11px 22px 11px 32px;
  transition: var(--transition);
  text-decoration: none;
}
.mobile-nav-sub-link:hover { color: var(--primary); background: var(--light-blue); }
.mobile-nav-sub-link::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Divider */
.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 22px;
}

/* Footer CTA */
.mobile-nav-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2e3192 0%, #1c22e4 35%, #1d42ad 30%, #2e3192 50%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 22s linear infinite;
}
@keyframes gridMove { 0% { transform: translate(0,0); } 100% { transform: translate(60px,60px); } }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-1 { width:600px;height:600px;background:radial-gradient(circle,var(--accent) 0%,transparent 70%);top:-200px;right:-100px; }
.hero-orb-2 { width:400px;height:400px;background:radial-gradient(circle,#5BA3E8 0%,transparent 70%);bottom:-100px;left:8%;animation-delay:4s; }
@keyframes floatOrb { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-30px) scale(1.05);} }

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
  pointer-events: none;
  display: block;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 130px 0 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(12px);
  padding: 7px 18px 7px 8px;
  border-radius: 100px;
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
}
.hero-badge-dot {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #2e3192, #1f66c7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-dot svg { width: 14px; height: 14px; fill: white; }

.hero-headline {
  /*font-family: var(--font-serif);*/
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.10;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-headline .line-accent {
  background: rgba(255,255,255,0.2);
  color: #2e3192;
  padding: 0px 10px;
  border-radius: 20px;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 530px;
}

/* Category pills */
.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-cat-pill:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.hero-cat-pill-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; flex-shrink: 0; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat-num { font-size: 30px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.03em; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* Hero Right visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-card-main {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 330px;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-xl);
}
.hero-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(46,134,222,0.40);
}
.hero-card-icon svg { width: 26px; height: 26px; fill: white; }
.hero-card-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.60); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.hero-card-value { font-size: 40px; font-weight: 900; color: var(--white); letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; }
.hero-card-bar { height: 4px; background: rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.hero-card-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 4px; width: 82%; animation: barGrow 1.5s ease 0.5s both; }
@keyframes barGrow { from { width: 0; } }
.hero-card-bar-label { font-size: 12px; color: rgba(255,255,255,0.50); font-weight: 500; }

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-float-card-1 { bottom: 70px; left: -50px; }
.hero-float-card-2 { top: 70px; right: -40px; animation-delay: 3s; }
@keyframes cardFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

.hero-float-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-icon.blue { background: var(--light-blue); }
.hero-float-icon.green { background: #E6F9F0; }
.hero-float-icon.blue svg { width: 19px; height: 19px; fill: var(--primary); }
.hero-float-icon.green svg { width: 19px; height: 19px; fill: var(--success); }
.hero-float-label { font-size: 11px; color: var(--text-light); font-weight: 500; }
.hero-float-value { font-size: 14px; font-weight: 700; color: var(--text-dark); }

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.trust-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.trust-logo-item {
  display: flex; align-items: center; gap: 8px;
  opacity: 0.45; filter: grayscale(1);
  transition: var(--transition);
  font-size: 14px; font-weight: 700; color: var(--primary-dark); letter-spacing: 0.04em;
}
.trust-logo-item:hover { opacity: 0.80; filter: grayscale(0); }
.trust-logo-icon {
  width: 26px; height: 26px;
  background: var(--mid-blue);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.trust-logo-icon svg { width: 14px; height: 14px; fill: var(--primary); }

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about {
  padding: 110px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* About image/visual side */
.about-image-wrap { position: relative; }
.about-img-card {
  background: linear-gradient(135deg, #051C40 0%, var(--primary-dark) 40%, var(--primary) 75%, var(--accent) 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/4.5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}
.about-img-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 48px; text-align: center;
}
.about-img-logo {
  width: 110px; height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92; margin-bottom: 28px;
}
.about-img-tagline {
  font-family: var(--font-serif);
  font-size: 21px;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 28px;
}
.about-img-divider { width: 44px; height: 2px; background: rgba(255,255,255,0.30); border-radius: 2px; margin-bottom: 28px; }
.about-img-since { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

.about-exp-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center; min-width: 110px;
}
.about-exp-num { font-size: 34px; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -0.04em; }
.about-exp-text { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

.about-cert-badge {
  position: absolute;
  top: -22px; left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.about-cert-icon { width: 34px; height: 34px; background: var(--light-blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.about-cert-icon svg { width: 17px; height: 17px; fill: var(--primary); }
.about-cert-text-top { font-size: 13px; font-weight: 700; color: var(--primary-dark); }
.about-cert-text-bot { font-size: 11px; color: var(--text-light); }

/* About content side */
.about-content .section-sub { margin: 18px 0 30px; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.about-pillar {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
}
.about-pillar:hover { border-color: var(--accent-light); box-shadow: var(--shadow-sm); }
.about-pillar-icon { width: 34px; height: 34px; background: var(--light-blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.about-pillar-icon svg { width: 17px; height: 17px; fill: var(--primary); }
.about-pillar-title { font-size: 13px; font-weight: 700; color: var(--primary-dark); margin-bottom: 5px; }
.about-pillar-text { font-size: 12px; color: var(--text-light); line-height: 1.55; }

/* ══════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════ */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #051C40 0%, var(--primary-dark) 40%, var(--primary) 75%, var(--accent) 100%);
  position: relative; overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.stat-item { text-align: center; padding: 40px 24px; position: relative; }
.stat-item::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-item:last-child::after { display: none; }
.stat-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.stat-icon svg { width: 22px; height: 22px; fill: rgba(255,255,255,0.80); }
.stat-num { font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.04em; display: block; margin-bottom: 6px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ══════════════════════════════════════════
   PRODUCT CATEGORIES
══════════════════════════════════════════ */
.categories {
  padding: 110px 0;
  background: var(--off-white);
}
.categories-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.categories-header .section-sub { margin: 18px auto 0; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--light-blue) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--mid-blue); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(26,95,168,0.25);
  position: relative;
}
.cat-icon svg { width: 28px; height: 28px; fill: white; }
.cat-name { font-size: 15px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; position: relative; }
.cat-desc { font-size: 13px; color: var(--text-light); line-height: 1.55; position: relative; }

/* ══════════════════════════════════════════
   VISION & MISSION
══════════════════════════════════════════ */
.vision-mission {
  padding: 110px 0;
  background: var(--white);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}
.vm-card {
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.vm-card-vision {
  background: linear-gradient(135deg, #051C40 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: white;
}
.vm-card-mission {
  background: var(--off-white);
  border: 1px solid var(--border);
}

.vm-card-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.vm-card-vision .vm-card-icon { background: rgba(255,255,255,0.14); }
.vm-card-mission .vm-card-icon { background: var(--light-blue); }
.vm-card-vision .vm-card-icon svg { fill: white; }
.vm-card-mission .vm-card-icon svg { fill: var(--primary); }
.vm-card-icon svg { width: 30px; height: 30px; }

.vm-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.vm-card-vision .vm-card-title { color: white; }
.vm-card-mission .vm-card-title { color: var(--primary-dark); }

.vm-points { display: flex; flex-direction: column; gap: 14px; }
.vm-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.vm-point-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.vm-card-vision .vm-point-dot { background: var(--accent-light); }
.vm-card-mission .vm-point-dot { background: var(--accent); }
.vm-point-text { font-size: 15px; line-height: 1.65; }
.vm-card-vision .vm-point-text { color: rgba(255,255,255,0.82); }
.vm-card-mission .vm-point-text { color: var(--text-mid); }

/* ══════════════════════════════════════════
   CORE VALUES
══════════════════════════════════════════ */
.core-values {
  padding: 110px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.cv-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.cv-header .section-sub { margin: 16px auto 0; }

.cv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.cv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--mid-blue); }
.cv-card:hover::after { transform: scaleX(1); }

.cv-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--light-blue);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  display: block;
}
.cv-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(26,95,168,0.28);
}
.cv-icon svg { width: 32px; height: 32px; fill: white; }
.cv-title { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.cv-desc { font-size: 15px; color: var(--text-mid); line-height: 1.70; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #051C40 0%, var(--primary-dark) 40%, var(--primary) 80%, var(--accent) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 50%, rgba(91,163,232,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(26,95,168,0.28) 0%, transparent 60%);
}
.cta-inner {
  position: relative; text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-inner .section-label { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.20); }
.cta-inner .section-label::before { background: rgba(255,255,255,0.85); }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 18px 0;
}
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.70); line-height: 1.72; margin-bottom: 44px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,0.50); margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.70); }
.footer-social:hover svg { fill: white; }

.footer-col-title { font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link {
  font-size: 14px; color: rgba(255,255,255,0.48); transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-link:hover { color: rgba(255,255,255,0.88); padding-left: 4px; }
.footer-link::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0; transition: var(--transition); flex-shrink: 0; }
.footer-link:hover::before { opacity: 1; }

.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 13px; height: 13px; fill: var(--accent-light); }
.footer-contact-text { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.55; }
.footer-contact-link { font-size: 14px; color: rgba(255,255,255,0.70); transition: var(--transition); }
.footer-contact-link:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.30); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 13px; color: rgba(255,255,255,0.30); transition: var(--transition); }
.footer-bottom-link:hover { color: rgba(255,255,255,0.65); }
.footer-designed { font-size: 12px; 
    color: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    gap: 5px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-hero {
  background: linear-gradient(135deg, #051C40 0%, var(--primary-dark) 45%, var(--primary) 100%);
  padding: 160px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.contact-hero-inner { position: relative; }
.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.03em; margin: 16px 0 18px; line-height: 1.12;
}
.contact-hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.72; max-width: 540px; margin: 0 auto; }
/* ── Map Location Box ── */
.contact-map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
}
.contact-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border-top: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.contact-map-btn:hover { background: var(--light-blue); color: var(--primary-dark); }
.contact-map-btn svg { width: 16px; height: 16px; fill: var(--accent); }

.contact-main { padding: 90px 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: stretch;
}

/* Contact info column */
.contact-info-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; letter-spacing: -0.02em; }
.contact-info-sub { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 36px; }

.contact-detail-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: var(--transition);
}
.contact-detail-card:hover { border-color: var(--accent-light); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-detail-icon { width: 44px; height: 44px; background: var(--light-blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--primary); }
.contact-detail-label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; font-weight: 600; color: var(--primary-dark); }
.contact-detail-value a { color: inherit; transition: var(--transition); }
.contact-detail-value a:hover { color: var(--accent); }
.contact-detail-extra { font-size: 13px; color: var(--text-light); margin-top: 2px; }

.contact-hours { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); border-radius: var(--radius-md); padding: 22px; color: white; }
.contact-hours-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.60); margin-bottom: 14px; }
.contact-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.10); font-size: 14px; }
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-day { color: rgba(255,255,255,0.68); }
.contact-hours-time { font-weight: 600; color: white; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.contact-form-card form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form-card form .form-submit {
  margin-top: auto;
  padding-top: 8px;
}
.contact-form-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; letter-spacing: -0.02em; }
.contact-form-sub { font-size: 15px; color: var(--text-mid); margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; letter-spacing: 0.01em; }
.form-label span { color: var(--accent); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46,134,222,0.11);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 200px; line-height: 1.60; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234A5568' d='M8 10.5L3 5.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(26,95,168,0.35);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(26,95,168,0.48); }
.form-submit:disabled { opacity: 0.65; transform: none; cursor: not-allowed; }
.form-submit svg { width: 18px; height: 18px; fill: white; transition: transform 0.25s ease; }
.form-submit:hover svg { transform: translateX(4px); }

.form-privacy { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-privacy svg { width: 13px; height: 13px; fill: var(--success); flex-shrink: 0; }

.form-success {
  display: none;
  background: #E6F9F0;
  border: 1px solid #9AE6C4;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #276749;
  font-size: 14px;
  font-weight: 500;
  align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.form-success.show { display: flex; }
.form-success svg { width: 18px; height: 18px; fill: var(--success); flex-shrink: 0; }

/* ══════════════════════════════════════════
   STATS HEADER
══════════════════════════════════════════ */
.stats-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ══════════════════════════════════════════
   VISION / MISSION SECTIONS
══════════════════════════════════════════ */
.vm-section {
  padding: 110px 0;
  background: var(--white);
}
.vm-section-alt {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vm-row-reverse {
  direction: rtl;
}
.vm-row-reverse > * {
  direction: ltr;
}

.vm-image-col { width: 100%; }
.vm-text-col  { width: 100%; }

/* Standalone image placeholder (Vision/Mission) */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  border: 2px dashed var(--mid-blue);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}
.img-placeholder:hover { border-color: var(--accent); background: var(--light-blue); }
.img-placeholder-accent {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--off-white) 100%);
}
.img-placeholder-icon {
  width: 56px; height: 56px;
  fill: var(--mid-blue);
  opacity: 0.70;
}
.img-placeholder-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}
.img-placeholder-hint {
  font-size: 13px;
  color: var(--text-light);
}
.img-placeholder-hint strong { color: var(--accent); }

.vm-section-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

/* Vision/Mission bullet list */
.vm-points-list { display: flex; flex-direction: column; gap: 20px; }
.vm-point-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.vm-point-bullet {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 2px 8px rgba(46,134,222,0.40);
}
.vm-point-item p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   CORE VALUES — with image placeholders
══════════════════════════════════════════ */
.cv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.cv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.cv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--mid-blue); }
.cv-card:hover::after { transform: scaleX(1); }

/* Image placeholder inside card */
.cv-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  transition: var(--transition);
}
.cv-card:hover .cv-img-placeholder { background: var(--light-blue); }
.cv-img-placeholder svg { width: 32px; height: 32px; fill: var(--mid-blue); }
.cv-img-placeholder span { font-size: 11px; color: var(--text-light); font-weight: 500; letter-spacing: 0.04em; }

.cv-card-body {
  padding: 44px 28px 40px;
  text-align: center;
}

/* ══════════════════════════════════════════
   QUOTE SLIDER (About section)
══════════════════════════════════════════ */
.quote-slider {
  flex: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 190px;
}
.quote-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 8px;
  opacity: 0;
  transform: translateX(50px);
  filter: blur(12px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1),
              filter 0.65s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  will-change: transform, opacity, filter;
}
.quote-slide.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  pointer-events: auto;
}
.quote-slide.exiting {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(12px);
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 23px;
  color: rgba(255,255,255,0.93);
  font-style: italic;
  line-height: 1.55;
  text-align: center;
  margin: 0;
}
.quote-attr {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
}
.quote-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.30);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  flex-shrink: 0;
}
.quote-dot.active {
  background: rgba(255,255,255,0.88);
  width: 22px;
}
.quote-dot:hover { background: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.60s cubic-bezier(0.4,0,0.2,1), transform 0.60s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* Page transition */
.page-transition { animation: pageFadeIn 0.45s ease both; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-categories { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .vm-row { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .cv-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 22px; }
  .about-pillars { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-item::after { display: none; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
