﻿:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0F172A;
  background: #FFFFFF;
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --surface-strong: #EEF4FB;
  --border: rgba(15,23,42,0.10);
  --accent: #1D4ED8;
  --accent-strong: #0F3A8A;
  --accent-soft: rgba(29,78,216,0.08);
  --text-muted: #475569;
  --shadow: 0 16px 42px rgba(15,23,42,0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: #0F172A;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding: 0.85rem 0;
  transition: padding 0.3s ease;
}
.brand,
.brand-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.3s ease;
}
.brand:hover {
  transform: scale(1.05);
}
.brand img,
.brand-footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.brand-name,
.brand-tag {
  display: block;
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0F172A;
}
.brand-tag {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.main-nav a {
  color: #0F172A;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s ease;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: var(--accent-soft);
}
.nav-toggle {
  display: none;
  border: none;
  background: none;
  padding: 0;
  flex-direction: column;
  gap: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #0F172A;
  border-radius: 999px;
}
.hero-section,
.page-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 2rem 0 3rem;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 2rem));
  min-height: 620px;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}
.page-hero {
  min-height: 360px;
  padding: 5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(29,78,216,0.08), rgba(15,23,42,0.02)),
    #F8FAFC;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.page-hero .hero-copy {
  max-width: 860px;
  text-align: center;
}
.page-hero .hero-copy h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}
.page-hero .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 620px;
  opacity: 0;
  transform: scale(0.997);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.84) 42%, rgba(248, 250, 252, 0.18) 100%),
    linear-gradient(135deg, rgba(29, 78, 216, 0.28), rgba(15, 23, 42, 0.12));
  border-radius: 28px;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  animation: heroEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: auto;
}
@keyframes heroEnter {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.9rem;
  font-weight: 800;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-copy h1,
.page-hero .hero-copy h1 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 0.98;
  margin: 0 0 1.1rem;
  letter-spacing: 0;
  color: #0B1220;
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  opacity: 0;
}
.hero-slide.active .hero-copy h1 {
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  opacity: 1;
}
.hero-copy p,
.page-hero .hero-copy p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 640px;
  color: #334155;
  margin: 0;
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
  opacity: 0;
}
.hero-slide.active .hero-copy p {
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
  opacity: 1;
}
.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}
.hero-actions .btn {
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
  opacity: 0;
}
.hero-slide.active .hero-actions .btn:nth-child(1) {
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
  opacity: 1;
}
.hero-slide.active .hero-actions .btn:nth-child(2) {
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s forwards;
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
              background-color 0.3s ease, 
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}
.btn-primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--accent), #3B82F6);
}
.btn-secondary {
  color: #0F172A;
  background: rgba(255,255,255,0.78);
  border-color: rgba(15,23,42,0.12);
}
.btn-outline {
  color: var(--accent);
  border-color: rgba(29,78,216,0.2);
  background: rgba(29,78,216,0.06);
}
.section-block,
.section-dark,
.section-overlap,
.contact-block,
.services-list {
  padding: 4.5rem 0;
  position: relative;
}
.section-dark {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF4FB 100%);
}
.about-preview,
.founder-section,
.about-values {
  padding-top: 4.5rem;
}
.split-grid,
.cards-grid,
.flow-grid,
.services-grid,
.impact-grid,
.project-grid,
.ongoing-grid,
.benefit-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}
.split-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}
.split-grid > * {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.split-grid > *:nth-child(1) { animation-delay: 0.1s; }
.split-grid > *:nth-child(2) { animation-delay: 0.3s; }
.cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.cards-grid > * {
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.cards-grid > *:nth-child(1) { animation-delay: 0.1s; }
.cards-grid > *:nth-child(2) { animation-delay: 0.2s; }
.cards-grid > *:nth-child(3) { animation-delay: 0.3s; }
.cards-grid > *:nth-child(4) { animation-delay: 0.4s; }
.flow-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.services-grid,
.impact-grid,
.ongoing-grid,
.benefit-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.35rem;
}
.services-grid > *,
.impact-grid > *,
.ongoing-grid > *,
.benefit-grid > * {
  animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.services-grid > *:nth-child(1),
.impact-grid > *:nth-child(1),
.ongoing-grid > *:nth-child(1),
.benefit-grid > *:nth-child(1) { animation-delay: 0.1s; }
.services-grid > *:nth-child(2),
.impact-grid > *:nth-child(2),
.ongoing-grid > *:nth-child(2),
.benefit-grid > *:nth-child(2) { animation-delay: 0.2s; }
.services-grid > *:nth-child(3),
.impact-grid > *:nth-child(3),
.ongoing-grid > *:nth-child(3),
.benefit-grid > *:nth-child(3) { animation-delay: 0.3s; }
.services-grid > *:nth-child(4),
.impact-grid > *:nth-child(4),
.ongoing-grid > *:nth-child(4),
.benefit-grid > *:nth-child(4) { animation-delay: 0.4s; }
.services-grid > *:nth-child(5),
.impact-grid > *:nth-child(5),
.ongoing-grid > *:nth-child(5),
.benefit-grid > *:nth-child(5) { animation-delay: 0.5s; }
.services-grid > *:nth-child(6),
.impact-grid > *:nth-child(6),
.ongoing-grid > *:nth-child(6),
.benefit-grid > *:nth-child(6) { animation-delay: 0.6s; }
.project-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-grid {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}
.glass-panel,
.glass-card,
.feature-card,
.team-card,
.service-card,
.project-card,
.impact-card,
.gallery-card,
.contact-panel,
.program-card {
  padding: 1.35rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              background 0.3s ease,
              border-color 0.3s ease;
}
.glass-panel:hover,
.glass-card:hover,
.feature-card:hover,
.team-card:hover,
.service-card:hover,
.project-card:hover,
.impact-card:hover,
.gallery-card:hover,
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}
.program-card {
  margin-bottom: 1.5rem;
}
.program-card:last-child {
  margin-bottom: 0;
}
.program-card h2 {
  max-width: 820px;
}
.program-card p {
  max-width: 780px;
  color: var(--text-muted);
}
.program-card ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}
.program-card li {
  position: relative;
  padding: 0.8rem 0.95rem 0.8rem 2.1rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 8px;
  background: #FFFFFF;
  color: #334155;
  font-weight: 600;
}
.program-card li::before {
  content: '';
  position: absolute;
  left: 0.95rem;
  top: 1.35rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.glass-card ul,
.feature-list article,
.benefit-grid div,
.ongoing-grid article {
  margin: 0;
  padding: 0;
}
.glass-card ul {
  margin: 1rem 0 0;
  list-style: none;
  padding: 0;
}
.glass-card li,
.feature-list article p,
.flow-step p {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
}
.glass-card li {
  position: relative;
  padding-left: 1.1rem;
}
.glass-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}
.glass-card h3,
.feature-card h2,
.team-card h3,
.project-card h3,
.impact-card h3,
.flow-step h3,
.contact-panel h2,
.program-card h2 {
  margin: 0 0 1rem;
}
.feature-card h2,
.contact-panel h2 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.feature-list article {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-list article:last-child {
  border-bottom: none;
}
.team-slider {
  position: relative;
  display: grid;
  align-items: center;
  padding: 0 3.5rem;
}
.team-track {
  display: flex;
  gap: 1.2rem;
  overflow: hidden;
  scroll-snap-type: x mandatory;
}
.team-card {
  min-width: 300px;
  scroll-snap-align: center;
  text-align: center;
  display: grid;
  justify-items: center;
  align-content: start;
}
.team-card.wide {
  min-width: 390px;
}
.team-card h3 {
  margin: 1.3rem 0 0.35rem;
}
.team-card span {
  color: var(--accent);
  font-weight: 700;
}
.team-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59,130,246,0.14);
}

.team-card.large .team-avatar { width: 140px; height: 140px; }
.leadership-avatar {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0 1.1rem;
  border: 2px solid rgba(29,78,216,0.16);
  box-shadow: 0 12px 28px rgba(15,23,42,0.10);
}
.team-highlight .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.team-highlight .glass-card {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}
.team-highlight .glass-card span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-weight: 800;
}
.team-highlight .glass-card p {
  color: var(--text-muted);
}
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #0F172A;
  box-shadow: 0 15px 40px rgba(0,0,0,0.28);
  cursor: pointer;
}
.slider-control::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #E8EFFA;
  border-right: 2px solid #E8EFFA;
  transform: rotate(135deg);
  margin: auto;
}
.slider-control.next {
  right: 0;
}
.slider-control.prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}
.tab-btn {
  border: 1px solid rgba(110, 229, 255, 0.18);
  background: rgba(255,255,255,0.04);
  color: #DDE7F4;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, rgba(110,229,255,0.16), rgba(105,177,255,0.14));
  color: var(--accent);
}
.gallery-slider {
  overflow: visible;
}
.gallery-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  width: 100%;
  margin: 0;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.gallery-card h3 {
  margin: 0;
}
.gallery-card p {
  color: var(--text-muted);
}
.project-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.contact-form {
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.contact-form h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: #0F172A;
  font-weight: 700;
}
.contact-form label span {
  font-size: 0.92rem;
}
.contact-form .full-width {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15,23,42,0.12);
  background: #F8FAFC;
  color: #0F172A;
  padding: 0.95rem 1rem;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(29,78,216,0.55);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(29,78,216,0.1);
}
.contact-form .btn {
  margin-top: 1.25rem;
}
.contact-panel {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  padding: 2rem;
  background: #0F172A;
  color: #F8FAFC;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.contact-info p,
.contact-highlights div {
  margin: 0;
}
.contact-info p strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #CBD5E1;
}
.contact-info a {
  color: #FFFFFF;
  font-weight: 700;
}
.contact-highlights {
  display: grid;
  gap: 1rem;
}
.contact-highlights div {
  padding: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.contact-highlights h3 {
  margin: 0;
  font-size: 1rem;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.section-header h2 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin: 1rem 0 0;
  line-height: 1.12;
  letter-spacing: 0;
  background: linear-gradient(135deg, #0F172A, #1D4ED8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header.white h2,
.section-header.white .eyebrow {
  color: #E8EFFA;
}
.section-cta {
  justify-content: center;
  margin-top: 2rem;
}
.quote-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 8px;
  background: #0F172A;
  color: #F8FAFC;
  box-shadow: var(--shadow);
}
.quote-mark {
  font-size: 5rem;
  color: rgba(96,165,250,0.3);
  line-height: 0.85;
}
.quote-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #CBD5E1;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 2.2rem;
  background: #0F172A;
  color: #F8FAFC;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 8px;
}
.footer-note {
  margin-top: 2rem;
  text-align: center;
  color: #7B8EB9;
}

.brand-footer img { width: 44px; height: 44px; margin-right: 0.6rem; }
.brand-footer { display:flex; align-items:center; gap:0.6rem; }
.socials { margin-top:0.8rem; display:flex; gap:0.6rem; }
.social-link { display:inline-block; color: var(--accent); text-decoration:none; font-weight:600; }
.site-footer {
  padding: 4rem 0 1.5rem;
  background: #F8FAFC;
  border-top: 1px solid rgba(15,23,42,0.08);
}
.site-footer h4 {
  margin: 0 0 1rem;
}
.site-footer p {
  color: var(--text-muted);
}
.site-footer .footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}
.site-footer a {
  color: #334155;
}
.site-footer a:hover {
  color: var(--accent);
}
.loader-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  z-index: 9999;
}
.loader-card {
  width: min(360px, 86vw);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: transparent;
  text-align: center;
}
.loader-logo {
  width: 140px;
  height: 140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(29,78,216,0.14);
  box-shadow: 0 18px 42px rgba(15,23,42,0.12);
  animation: loaderLogoPop 1.2s ease both;
}
.loader-text .loader-title { display:block; color: var(--accent); font-weight:700; font-size:1.1rem; }
.loader-text .loader-tag { display:block; color: #0F172A; margin-top:6px; font-size:0.95rem; }
.loader-bar {
  margin-top: 1rem;
  width: 100%;
  height: 6px;
  background: rgba(15,23,42,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #60A5FA);
  animation: progressBar 1.5s ease forwards;
}
@keyframes progressBar {
  0% { width: 0; }
  100% { width: 100%; }
}
@keyframes loaderLogoPop {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-animate].reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
  }
}
@media (max-width: 1024px) {
  .split-grid,
  .flow-grid,
  .services-grid,
  .impact-grid,
  .footer-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }
  .section-header,
  .hero-copy {
    text-align: center;
  }
  .hero-copy {
    margin: 0 auto;
  }
  .cta-panel {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-block .split-grid {
    grid-template-columns: 1fr;
  }
  .team-highlight .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .gallery-track { column-count: 2; }
}

@media (max-width: 520px) {
  .gallery-track { column-count: 1; }
}
@media (max-width: 768px) {
  .hero-section,
  .page-hero {
    min-height: auto;
    padding: 1rem 0 2rem;
  }
  .page-hero {
    padding: 3.5rem 0;
  }
  .page-hero .hero-copy {
    text-align: center;
  }
  .hero-slider {
    min-height: 680px;
    width: min(100% - 1rem, 1180px);
    border-radius: 20px;
  }
  .hero-slide {
    min-height: 680px;
    padding: 2rem 1.25rem;
    align-items: flex-end;
    text-align: left;
    border-radius: 20px;
  }
  .hero-copy {
    text-align: left;
  }
  .hero-slide::after {
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(248,250,252,0.22) 0%, rgba(248,250,252,0.96) 42%, rgba(248,250,252,0.98) 100%),
      linear-gradient(135deg, rgba(29,78,216,0.2), rgba(15,23,42,0.14));
  }
  .nav-toggle {
    display: flex;
    padding: 0.65rem;
    border: 1px solid rgba(15,23,42,0.1);
    border-radius: 10px;
  }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1rem;
    width: min(340px, calc(100% - 2rem));
    margin-right: 1rem;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(18px);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    border: 1px solid rgba(15,23,42,0.1);
    border-radius: 16px;
    box-shadow: 0 24px 54px rgba(15,23,42,0.16);
  }
  .main-nav.open {
    transform: translateY(0);
  }
  .section-header h2,
  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .team-track {
    overflow-x: auto;
  }
  .team-slider {
    padding: 0;
  }
  .slider-control {
    display: none;
  }
  .team-card,
  .gallery-card {
    min-width: 260px;
  }
  .team-card.wide {
    min-width: 300px;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(100% - 1.25rem, 1140px);
  }
  .brand-tag {
    display: none;
  }
  .hero-copy h1,
  .section-header h2 {
    font-size: 2rem;
  }
  .hero-actions,
  .section-cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .team-highlight .cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-form,
  .contact-panel {
    padding: 1.25rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .gallery-track {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    min-width: 0;
  }
  .cta-panel {
    padding: 1.5rem;
  }
}
