/* ============================================================
   DR. K&E SACHDEV FAMILY FOUNDATION
   Enhanced Design — Manrope Font | Blue #005693 | Green #198754
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* ═══════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════ */
:root {
  --blue:         #005693;
  --blue-dark:    #003d6b;
  --blue-mid:     #0067ad;
  --blue-light:   #e8f2fb;
  --green:        #198754;
  --green-dark:   #126b42;
  --green-mid:    #22a866;
  --green-light:  #eaf6f0;
  --accent:       #00b4d8;

  --white:        #ffffff;
  --off-white:    #f8fafc;
  --surface:      #f2f7fb;
  --surface-alt:  #eef7f2;

  --text-dark:    #0d1b2a;
  --text-mid:     #3d5166;
  --text-light:   #7a90a4;

  --border:       rgba(0, 86, 147, 0.1);
  --border-green: rgba(25, 135, 84, 0.15);

  --shadow-xs:    0 1px 4px rgba(0,61,107,0.06);
  --shadow-sm:    0 4px 16px rgba(0,61,107,0.08);
  --shadow-md:    0 8px 32px rgba(0,61,107,0.12);
  --shadow-lg:    0 24px 64px rgba(0,61,107,0.16);
  --shadow-xl:    0 40px 100px rgba(0,61,107,0.20);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:     0.3s var(--ease);
  --t-slow: 0.6s var(--ease);
}

/* ═══════════════════════════════════════
   BASE RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Custom scrollbar ── */
div ::-webkit-scrollbar { width: 5px; }
div ::-webkit-scrollbar-track { background: var(--surface); }
div ::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--green)); border-radius: 4px; }


.icon-50{
  width: 50px;
  height: 50px;
}
.icon-60{
  width: 60px;
  height: 60px;
}
.icon-40{
  width: 40px;
  height: 40px;
}
.bg-blue{
  background-color: var(--blue);
}

.blue-light{
  background-color: #e9f6ff;
}
.green-light{
  background-color: #e5fff3;
}
.bg-green{
  background-color: var(--green);
}
/* ═══════════════════════════════════════
   REUSABLE COMPONENTS
═══════════════════════════════════════ */

/* Section wrapper */
.section-wrapper { padding: 110px 0; }
.section-wrapper-sm { padding: 70px 0; }

/* Section Label pill */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,86,147,0.15);
}
.section-label.green {
  color: var(--green);
  background: var(--green-light);
  border-color: rgba(25,135,84,0.15);
}
.section-label .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* Section Heading */
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.section-heading span { color: var(--blue); }
.section-heading em {
  color: var(--green);
  font-style: normal;
}

/* Divider accent */
.heading-accent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 28px;
}
.heading-accent::before {
  content: '';
  width: 40px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
}
.heading-accent::after {
  content: '';
  width: 10px; height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.heading-accent.center {
  justify-content: center;
}
.heading-accent.center::before,
.heading-accent.center::after {
  content: '';
}
.logo
{
	width:230px;
}

/* Body text */
.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* Buttons */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-solid:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,86,147,0.35);
}
.btn-solid.green {
  background: var(--green);
  border-color: var(--green);
}
.btn-solid.green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 10px 28px rgba(25,135,84,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,86,147,0.25);
}
.btn-outline.green {
  color: var(--green);
  border-color: var(--green);
}
.btn-outline.green:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(25,135,84,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all var(--t);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
  transform: translateY(-2px);
}

/* Arrow icon on buttons */
.btn-arrow {
  width: 18px; height: 18px;
  transition: transform var(--t);
}
.btn-solid:hover .btn-arrow,
.btn-outline:hover .btn-arrow { transform: translateX(4px); }

/* Fade-up scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.top-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.72);
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar a { color: rgba(255,255,255,0.72); transition: color var(--t); }
.top-bar a:hover { color: #4ddb95; }
.top-bar .divider { margin: 0 14px; opacity: 0.25; }
.top-bar .bi { font-size: 0.8rem; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.main-nav {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  border-bottom: 1px solid rgba(0,86,147,0.08);
  box-shadow: 0 2px 20px rgba(0,61,107,0.06);
  /****position: sticky;*******/
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--t);
}
.main-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,61,107,0.14);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}
.navbar-brand img {
  height:auto;
  width: auto;
  transition: transform var(--t);
}
.navbar-brand:hover img { transform: scale(1.03); }

.brand-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.brand-text span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.855rem;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  padding: 10px 15px !important;
  position: relative;
  transition: color var(--t);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15px; right: 15px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.navbar-nav .nav-link:hover { color: var(--blue) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.navbar-nav .nav-item.active .nav-link::after { transform: scaleX(1); }

.dropdown-menu {
  border: none;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--blue), var(--green)) 1;
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  padding: 10px 0;
  min-width: 220px;
  animation: menuFadeIn 0.22s var(--ease) forwards;
}
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 20px;
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid transparent;
}
.dropdown-item .bi { font-size: 0.9rem; color: var(--text-light); }
.dropdown-item:hover {
  background: var(--blue-light);
  color: var(--blue);
  border-left-color: var(--blue);
  padding-left: 24px;
}
.dropdown-item:hover .bi { color: var(--blue); }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid)) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-size: 0.835rem !important;
  font-weight: 700 !important;
  margin-left: 14px;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 16px rgba(0,86,147,0.28);
  transition: all var(--t) !important;
  line-height: 1 !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--blue) !important;
  border-color: var(--blue) !important;
  box-shadow: none !important;
  transform: none !important;
}
.nav-cta::after { display: none !important; }

.navbar-toggler {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 6px 10px !important;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23005693' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero-section {
  min-height: 78vh;
  background: linear-gradient(145deg, #002a4d 0%, var(--blue-dark) 35%, var(--blue) 70%, #0075c4 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0 150px;
  background-position:center;
}

/* Layered background effects */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(0,180,216,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(25,135,84,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 95% 10%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Bottom wave */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 90px;
  background: var(--white);
  clip-path: ellipse(58% 100% at 50% 100%);
}

/* Dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Floating blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: var(--green);
  bottom: 50px; left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.04); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}

/* Hero content */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-eyebrow .pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ddb95;
  box-shadow: 0 0 0 0 rgba(77,219,149,0.5);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(77,219,149,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(77,219,149,0); }
  100% { box-shadow: 0 0 0 0 rgba(77,219,149,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .line2 {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.hero-title .highlight {
  position: relative;
  color: var(--white);
  display: inline-block;
  padding: 0 4px;
}
.hero-title .highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 6px;
  z-index: -1;
  transform: skewX(-3deg);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 42px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-hero-main {
  /****display: inline-flex;****/
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(25,135,84,0.45);
  transition: all var(--t);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(25,135,84,0.55);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.btn-hero-main .bi { font-size: 1rem; transition: transform var(--t); }
.btn-hero-main:hover .bi { transform: translateX(4px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 15px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: all var(--t);
  cursor: pointer;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero stats bar */
.hero-stats-bar {
  display: flex;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
  flex: 1;
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat-num sup {
  font-size: 0.5em;
  font-weight: 700;
  color: #4ddb95;
  vertical-align: super;
  letter-spacing: 0;
}
.hero-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* Hero image panel */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-img-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  z-index: 2;
}
.hero-img-card img {
  width: 100%;
  max-width: 480px;
  height: 540px;
  object-fit: cover;
  display: block;
}
.hero-img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,29,51,0.55) 100%);
  z-index: 1;
}

/* Floating badge on image */
.hero-float-badge {
  position: absolute;
  bottom: -20px;
  left: -28px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
  min-width: 200px;
}
.badge-icon-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), #d0e8f8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.badge-info strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.badge-info span {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Rotating ring */
.hero-ring {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(0,180,216,0.25);
  animation: spin 22s linear infinite;
  z-index: 1;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(25,135,84,0.2);
}
.hero-ring::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,180,216,0.6);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Secondary float card */
.hero-float-mini {
  position: absolute;
  top: 60px; right: -24px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--r-md);
  padding: 16px 20px;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(25,135,84,0.4);
  z-index: 4;
  text-align: center;
  min-width: 120px;
}
.hero-float-mini .num {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.hero-float-mini .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   TRUST INDICATORS STRIP
═══════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-strip-inner {
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--border);
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--t);
}
.trust-item:hover { background: var(--surface); }
.trust-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-item-icon.blue { background: var(--blue-light); }
.trust-item-icon.green { background: var(--green-light); }
.trust-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.trust-item span {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
.about-section {
  padding: 110px 0;
  background: var(--white);
}

.about-img-stack {
  position: relative;
  height: 520px;
}
.about-main-img {
  position: absolute;
  top: 0; right: 0;
  width: 85%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
.about-secondary-img {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-exp-pill {
  position: absolute;
  top: 30px; left: 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 20px 26px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 110px;
  z-index: 2;
}
.about-exp-pill .big { font-size: 2.6rem; font-weight: 800; line-height: 1; color: #4ddb95; }
.about-exp-pill .lbl { font-size: 0.74rem; font-weight: 600; opacity: 0.85; margin-top: 4px; letter-spacing: 0.04em; }


.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all var(--t);
  cursor: default;
}
.about-feature-item:hover {
  background: var(--blue-light);
  border-color: rgba(0,86,147,0.2);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.feature-icon-box {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,86,147,0.25);
}
.about-feature-item:nth-child(2) .feature-icon-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 4px 12px rgba(25,135,84,0.25);
}
.about-feature-item:nth-child(3) .feature-icon-box {
  background: linear-gradient(135deg, #0075c4, var(--accent));
  box-shadow: 0 4px 12px rgba(0,180,216,0.25);
}
.feature-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.feature-text span { font-size: 0.83rem; color: var(--text-mid); line-height: 1.5; }

/* ═══════════════════════════════════════
   WORK / FOCUS AREAS
═══════════════════════════════════════ */
.work-section {
  padding: 110px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}


.work-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.work-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.work-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.work-card:hover::before { transform: scaleX(1); }

.work-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.work-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.work-card:hover .work-img-wrap img { transform: scale(1.08); }

.work-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,29,51,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.work-card:hover .work-img-overlay { opacity: 1; }

.work-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 50px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.work-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.work-body-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: var(--blue-light);
  transition: all var(--t);
  border: 1px solid var(--border);
}
.work-card:hover .work-body-icon {
  background: var(--blue);
  transform: rotate(-5deg) scale(1.08);
}
.work-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.work-body p {
  font-size: 0.865rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.845rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
  transition: gap var(--t);
  margin-top: auto;
}
.work-card:hover .work-link { gap: 10px; color: var(--green); }

/* ═══════════════════════════════════════
   IMPACT COUNTER SECTION
═══════════════════════════════════════ */
.impact-section {
  padding: 100px 0;
  background: linear-gradient(145deg, var(--blue-dark) 0%, #00447a 40%, #005a9e 80%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 50%, rgba(0,180,216,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 5% 40%, rgba(25,135,84,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.impact-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.impact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.impact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
}
.impact-card:hover::before { transform: scaleX(1); }

.impact-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 24px;
  transition: transform var(--t);
}
.impact-card:hover .impact-icon { transform: scale(1.12) rotate(-5deg); }

.impact-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.impact-num span { color: #4ddb95; }
.impact-lbl {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   LEADERSHIP SECTION
═══════════════════════════════════════ */
.team-section {
  padding: 110px 0;
  background: var(--white);
}

.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--t);
  position: relative;
  height: 100%;
  text-align: center;
  padding-top: 30px;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}



.team-img-wrap {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  overflow: hidden;
 margin: 0 auto;
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,29,51,0.65) 0%, transparent 50%);
}

.team-body {
  padding: 28px;
}
.team-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.team-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid var(--border-green);
}
.team-bio {
  font-size: 0.865rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   PHILOSOPHY / METHOD — ENHANCED
═══════════════════════════════════════ */
.philosophy-section {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}
.philosophy-section::after {
  content: '';
  position: absolute;
  left: -150px; bottom: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

.philosophy-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.philosophy-img-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.philosophy-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,86,147,0.18) 0%, transparent 60%);
}
/* Floating stat cards on image */
.phil-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  z-index: 4;
  min-width: 140px;
}
.phil-stat-card.card-1 { bottom: 30px; left: 5px; }
.phil-stat-card.card-2 { top: 36px; right: 5px; }
.phil-stat-card .ps-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.phil-stat-card.card-2 .ps-num { color: var(--green); }
.phil-stat-card .ps-lbl {
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.4;
}
.phil-stat-card .ps-bar {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  margin-top: 10px;
}
.phil-stat-card.card-2 .ps-bar {
  background: linear-gradient(90deg, var(--green), var(--green-mid));
}

/* Right content */
.philosophy-content { padding-left: 20px; }

/* Method steps — richer */
.method-steps { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
.method-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all var(--t);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.method-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  transform: scaleY(0);
  transition: transform var(--t);
  transform-origin: top;
}
.method-step:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,86,147,0.18);
  background: var(--blue-light);
}
.method-step:hover::before { transform: scaleY(1); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,86,147,0.3);
}
.method-step:nth-child(2) .step-num {
  background:var(--green);
  box-shadow: 0 4px 14px rgba(25,135,84,0.3);
}
.method-step:nth-child(3) .step-num {
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(0,180,216,0.3);
}
.step-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Values pills row */
.values-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  transition: all var(--t);
  cursor: default;
}
.value-pill:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,86,147,0.25);
}
.value-pill .vp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.value-pill:hover .vp-dot { background: rgba(255,255,255,0.7); }

.quote-block {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -30px; right: 20px;
  font-size: 10rem;
  color: rgba(255,255,255,0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.quote-block p {
  font-size: 0.96rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
  position: relative;
  margin: 0;
}
.quote-block-footer {
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4ddb95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-section {
  padding: 110px 0;
  background: var(--white);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 12px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.g-item { position: relative; overflow: hidden; cursor: zoom-in; }
.g-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.g-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.g-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.g-item:nth-child(4) { grid-column: 6 / 9; grid-row: 2 / 3; }
.g-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }
.g-item:nth-child(6) { grid-column: 1 / 5; grid-row: 3 / 4; }
.g-item:nth-child(7) { grid-column: 5 / 9; grid-row: 3 / 4; }
.g-item:nth-child(8) { grid-column: 9 / 13; grid-row: 3 / 4; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.g-item:hover img { transform: scale(1.1); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,29,51,0.88) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-caption {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.g-view-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0;
  transition: all var(--t);
  backdrop-filter: blur(6px);
}
.g-item:hover .g-view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Gallery filter tabs */
.gallery-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.g-tab {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.03em;
}
.g-tab:hover, .g-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,86,147,0.25);
}

/* ═══════════════════════════════════════
   AWARDS & MEDIA
═══════════════════════════════════════ */
.media-section {
  padding: 110px 0;
  background: var(--off-white);
}

.award-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.award-card-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.award-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.award-card:hover .award-card-img-wrap img { transform: scale(1.06); }
.award-ribbon {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(25,135,84,0.4);
}
.award-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.award-card-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.award-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
  transition: all var(--t);
}
.award-read-more .bi { transition: transform var(--t); }
.award-card:hover .award-read-more { color: var(--green); }
.award-card:hover .award-read-more .bi { transform: translateX(5px); }

/* Media releases */
.media-release-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: all var(--t);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.media-release-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  transform: scaleY(0);
  transition: transform var(--t);
}
.media-release-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0,86,147,0.2);
}
.media-release-item:hover::before { transform: scaleY(1); }
.release-date-box {
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  text-align: center;
  min-width: 52px;
  border: 1px solid var(--border);
}
.release-date-box .mon {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.release-date-box .day {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}
.release-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.55;
  transition: color var(--t);
}
.media-release-item:hover .release-title { color: var(--blue); }

/* ═══════════════════════════════════════
   CONTACT SECTION — COMPACT & ENHANCED
═══════════════════════════════════════ */
.contact-section {
  padding: 72px 0;
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(0,180,216,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 60%, rgba(25,135,84,0.12) 0%, transparent 45%);
  pointer-events: none;
}
.contact-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Compact horizontal contact bar */
.contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 44px 52px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.contact-bar-left { flex: 1; min-width: 260px; }
.contact-bar-left h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.contact-bar-left p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0;
  max-width: 400px;
}

.contact-bar-mid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.contact-info-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.855rem;
  font-weight: 500;
}
.chip-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: #4ddb95;
  flex-shrink: 0;
}

.contact-bar-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.contact-bar-right .btn-hero-main,
.contact-bar-right .btn-hero-ghost {
  width: 100%;
  justify-content: center;
  padding: 13px 28px;
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #0a1628;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--accent));
}

.footer-brand-col img { height: 52px; margin-bottom: 20px; }
.footer-about-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.85;
  max-width: 290px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: all var(--t);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(25,135,84,0.35);
}

.footer-col-title {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 1px;
}

.footer-nav-links { list-style: none; padding: 0; }
.footer-nav-links li { margin-bottom: 10px; }
.footer-nav-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t);
}
.footer-nav-links a .bi {
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-4px);
  color: var(--green);
  transition: all var(--t);
}
.footer-nav-links a:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 4px;
}
.footer-nav-links a:hover .bi {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-list li .fc-icon {
  width: 32px; height: 32px;
  background: rgba(25,135,84,0.1);
  border: 1px solid rgba(25,135,84,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: #4ddb95;
}

/* Newsletter box */
.footer-newsletter {
  margin-top: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
}
.footer-newsletter p {
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.newsletter-row {
  display: flex;
  gap: 8px;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.82rem;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color var(--t);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: rgba(25,135,84,0.5); }
.newsletter-btn {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(25,135,84,0.3);
}
.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(25,135,84,0.45);
}

/* Footer bottom */
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--t);
}
.footer-bottom-links a:hover { color: #4ddb95; }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  animation: lightboxIn 0.3s var(--ease-spring) forwards;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-content img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-caption-text {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1199.98px) {
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; }
}

@media (max-width: 991.98px) {
  .hero-section { padding: 60px 0 130px; min-height: auto; }
  .hero-visual { display: none; }
  .hero-stats-bar { flex-wrap: wrap; gap: 24px; }
  .hero-stat { flex: 0 0 calc(50% - 12px); border-right: none; padding-right: 0; }

  .about-img-stack { height: 360px; }
  .about-main-img { height: 320px; }
  .about-content { margin-top: 40px; }
.collapse.show .navbar-nav{
  padding-bottom: 15px;
}
  .philosophy-content { margin-top: 40px; }
  .phil-stat-card.card-1 { left: 10px; bottom: 10px; }
  .phil-stat-card.card-2 { right: 10px; top: 10px; }

  .contact-bar { flex-direction: column; padding: 36px 28px; gap: 28px; text-align: center; }
  .contact-bar-left p { max-width: 100%; }
  .contact-bar-mid { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .contact-bar-right { flex-direction: row; justify-content: center; }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  .g-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .g-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .g-item:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .g-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .g-item:nth-child(5) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .g-item:nth-child(6) { grid-column: 2 / 3; grid-row: 3 / 4; }
  .g-item:nth-child(7) { grid-column: 1 / 2; grid-row: 4 / 5; }
  .g-item:nth-child(8) { grid-column: 2 / 3; grid-row: 4 / 5; }

  .navbar-nav .nav-link { padding: 10px 16px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .trust-item { flex: 0 0 100%; }
  .trust-item{
    flex: 0 0 50%;
  }
}

@media (max-width: 767.98px) {
  .section-wrapper { padding: 80px 0; }
  .hero-stat { flex: 0 0 calc(50% - 12px); }
  .footer-bottom-links { justify-content: center; margin-top: 8px;padding-bottom: 20px; }
  .contact-bar { padding: 28px 20px; }
  .contact-bar-right { width: 100%; flex-direction: column; }
  .contact-bar-right .btn-hero-main,
  .contact-bar-right .btn-hero-ghost { width: 100%; }
  .gallery-mosaic { grid-template-rows: repeat(4, 160px); }
  .values-row { gap: 8px; }
   .trust-item{
    flex: 0 0 100%;
  }
}


/* ============================================================
   HERO / OWL CAROUSEL
============================================================ */



/* Activate on active slide */
.owl-item.active .hero-badge,
.owl-item.active .hero-title,
.owl-item.active .hero-sub,
.owl-item.active .hero-actions,
.owl-item.active .hero-counter-panel {
  opacity: 1; transform: translate(0);
}
.cmn-dot{
  position: relative;
}


/* OWL dots */
.hero-carousel .owl-dots  {
  position: absolute; bottom: 100px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.hero-carousel .owl-dot span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(182, 158, 158, 0.38);
  border: 2px solid rgba(216, 175, 175, 0.45);
  display: block; transition: all .3s;
}
.hero-carousel .owl-dot.active span, .cmn-dot .owl-dot.active span {
  background: var(--blue); border-color: var(--blue);
  width: 28px; border-radius: 5px;
}
/* OWL nav */
.hero-carousel .owl-nav{
  position: absolute; bottom: 22px; right: 56px;
  z-index: 10; display: flex; gap: 10px;
}

.cmn-dot .owl-dots  {
  position: absolute; bottom: 50px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.cmn-dot .owl-dot span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--green);
  display: block; transition: all .3s;
}
 .cmn-dot .owl-nav {
  position: absolute;   
display: flex;
    bottom: 200px;
    right: 10px;
    z-index: 10;
}

.hero-carousel .owl-prev,.cmn-dot .owl-prev,
.hero-carousel .owl-next, .cmn-dot .owl-next {
  width: 42px; height: 42px; border-radius: 50% !important;
  background: rgba(255,255,255,.14) !important;
  border: 1.5px solid rgba(255,255,255,.32) !important;
  color: var(--white) !important; font-size: 1.05rem !important;
  display: flex !important; align-items: center; justify-content: center;
  transition: all .26s !important;
}
.hero-carousel .owl-prev:hover,.cmn-dot .owl-prev:hover,
.hero-carousel .owl-next:hover, .cmn-dot .owl-next:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: var(--white) !important;
}
