

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

:root {
  --clr-bg:        #070c1b;
  --clr-bg2:       #0b1022;
  --clr-card:      #0f1630;
  --clr-card2:     #131d3a;
  --clr-accent:    #f5a623;
  --clr-accent-lt: #f5a623;
  --clr-purple:    #7c4dff;
  --clr-purple-lt: #9b72ff;
  --clr-text:      #e8eaf6;
  --clr-muted:     #6b7499;
  --clr-border:    rgba(255,255,255,0.07);
  --font-head:     'Manrope', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: rgba(7,12,27,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--clr-text) !important;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 3px;
}
.navbar-brand .dot {
  width: 7px; height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 2px;
  margin-right: 2px;
}
.navbar-brand .accent { color: var(--clr-accent-lt); }
.nav-link {
  color: var(--clr-muted) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 1rem !important;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem; bottom: -2px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--clr-text) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.btn-nav-cta {
  background: var(--clr-accent);
  color: #070c1b !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-nav-cta:hover {
  box-shadow: 0 0 24px rgba(201,168,76,0.45);
  transform: translateY(-1px);
  color: #070c1b !important;
}
.navbar-toggler { border-color: var(--clr-border); }
.navbar-toggler-icon { filter: invert(1); }

/* =============================================
   SECTION PILL (reusable)
   ============================================= */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--clr-accent-lt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-pill .blink {
  width: 6px; height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* =============================================
   WHO WE ARE — HERO BANNER
   ============================================= */
.about-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(7,12,27,0.97) 0%,
    rgba(7,12,27,0.88) 45%,
    rgba(7,12,27,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem;
}

.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  color: var(--clr-text);
}
.about-hero h1 span { color: var(--clr-accent-lt); }
.about-hero .lead-text {
  color: var(--clr-muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.75;
}

/* Hero buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--clr-accent);
  color: #070c1b;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.btn-hero-primary:hover {
  box-shadow: 0 0 26px rgba(201,168,76,0.5);
  transform: translateY(-2px);
  color: #070c1b;
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--clr-text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-hero-outline:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 16px rgba(201,168,76,0.15);
  transform: translateY(-2px);
  color: var(--clr-text);
}

/* Hero info card (right) */
.hero-info-card {
  background: rgba(11,16,34,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hic-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
}
.hic-dot {
  width: 7px; height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
.hic-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.hic-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hic-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hic-img-wrap:hover img { transform: scale(1.06); }
.hic-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,12,27,0.85), transparent);
  color: var(--clr-text);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.5rem 0.6rem 0.4rem;
  letter-spacing: 0.04em;
}
.hic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hic-tag {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--clr-accent-lt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

/* =============================================
   MISSION SECTION
   ============================================= */
.mission-section {
  padding: 5rem 0 4rem;
}

/* Left image wrap */
.section-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.section-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transition: transform 0.5s ease;
}
.section-img-wrap:hover .section-img { transform: scale(1.02); }

/* Floating badge on image */
.img-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--clr-accent);
  color: #070c1b;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  letter-spacing: 0.02em;
  z-index: 2;
}

/* Right text */
.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--clr-text);
}
.section-h2 span { color: var(--clr-accent-lt); }
.section-para {
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/* Highlight chips */
.highlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.h-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--clr-accent-lt);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}
.h-chip i { color: var(--clr-accent); font-size: 0.85rem; }

.mission-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mission-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
}

/* Vision / Approach cards with image */
.va-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.va-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.va-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.va-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.va-card:hover .va-card-img img { transform: scale(1.06); }
.va-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,12,27,0.2) 0%, rgba(7,12,27,0.75) 100%);
}
.va-card-img-label {
  position: absolute;
  bottom: 1rem; left: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
}
.va-icon-sm {
  width: 30px; height: 30px;
  background: var(--clr-accent);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #070c1b;
  font-size: 0.85rem;
}
.va-card-body {
  padding: 1.6rem 1.8rem;
}
.va-card-body p {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   CORE VALUES
   ============================================= */
.values-section {
  padding: 5rem 0;
  position: relative;
}
.values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(124,77,255,0.04) 50%, transparent 100%);
  pointer-events: none;
}

.value-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Top image */
.value-card-img {
  position: relative;
  height: 140px;
  overflow: hidden;
}
.value-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.55) saturate(0.7);
}
.value-card:hover .value-card-img img {
  transform: scale(1.08);
  filter: brightness(0.65) saturate(0.9);
}
.vc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,12,27,0.1) 0%, rgba(15,22,48,0.9) 100%);
}

/* Body */
.value-card-body {
  padding: 1.5rem 1.4rem;
  text-align: center;
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent-lt);
  margin: -38px auto 1rem;
  position: relative;
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.value-card:hover .value-icon {
  background: rgba(201,168,76,0.22);
  transform: scale(1.1) rotate(-5deg);
}
.value-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.value-desc {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* =============================================
   TEAM / STATS SECTION
   ============================================= */
.team-section {
  padding: 5rem 0 4rem;
  position: relative;
}
.team-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

/* Stat grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 420px;
}
.stat-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-purple-lt));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.stat-box:hover::before { transform: scaleX(1); }
.stat-box:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-lbl {
  font-size: 0.72rem;
  color: var(--clr-muted);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Team photo collage */
.team-collage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.tc-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
}
.tc-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tc-main:hover img { transform: scale(1.04); }
.tc-main-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,12,27,0.85) 0%, transparent 100%);
  color: var(--clr-text);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 1.2rem 1.2rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.tc-small {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 150px;
}
.tc-small img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tc-small:hover img { transform: scale(1.06); }
.tc-small-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,12,27,0.8) 0%, transparent 100%);
  color: var(--clr-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.8rem 0.8rem 0.5rem;
}
/* Floating badge */
.tc-badge {
  position: absolute;
  top: 16px; right: -12px;
  background: rgba(11,16,34,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 5;
  animation: floatIcon 4s ease-in-out infinite;
}

/* Expertise bars */
.expertise-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.expertise-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-purple-lt), var(--clr-accent));
  background-size: 200% 100%;
  animation: shimmerLine 3s linear infinite;
}
.exp-bar-item {
  margin-bottom: 1.1rem;
}
.exp-bar-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--clr-text);
}
.exp-bar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 50px;
  width: 0%;
  transition: width 1.2s ease;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 1.8rem 0;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--clr-text);
  letter-spacing: -0.02em;
}
.footer-brand .fa { color: var(--clr-accent-lt); }
.footer-copy { font-size: 0.78rem; color: var(--clr-muted); }
.footer-nav a {
  font-size: 0.8rem;
  color: var(--clr-muted);
  padding: 0 0.5rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--clr-text); }

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
@keyframes shimmerLine {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .about-hero { min-height: auto; }
  .hero-content { padding: 4rem 0 3.5rem; }
  .stat-grid { max-width: 100%; }
  .tc-badge { right: 8px; }
}
@media (max-width: 767.98px) {
  .hero-content { padding: 3.5rem 0 3rem; }
  .about-hero h1 { font-size: 2.2rem; }
  .section-img { height: 260px; }
  .img-badge { bottom: -12px; right: 12px; }
  .va-card-img { height: 140px; }
  .tc-main { height: 200px; }
  .tc-small { height: 120px; }
  .expertise-wrap { padding: 1.5rem 1.2rem; }
  .site-footer .d-flex { flex-direction: column; text-align: center; gap: 0.7rem; }
}
@media (max-width: 575.98px) {
  .stat-grid { grid-template-columns: 1fr; max-width: 180px; }
  .tc-row { grid-template-columns: 1fr 1fr; }
  .highlight-chips { flex-direction: column; }
  .hic-img-row { grid-template-columns: 1fr 1fr; }
}

a.navbar-brand img {
    width: 50%;
}