:root {
  --primary:#0b67c2;
  --dark:#0f172a;
  --gray:#64748b;
  --light:#f8fafc;
}

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:Inter, sans-serif;
}

body {
  color:var(--dark);
  background:white;
  line-height:1.6;
}

.container {
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.site-header {
  position: sticky;     /* 🔑 makes it sticky */
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;        /* 🔑 stays above everything */
  border-bottom: 1px solid #e5e7eb;
}

/* inner alignment */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* LOGO WRAPPER */
.logo-wrapper {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
.logo-wrapper img {
  height: 60px;                     /* 🔑 tuned for your logo */
  width: auto;
  object-fit: contain;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

/* CTA */
.nav-cta,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta:active {
  background: #020617;
  color: #ffffff !important;
  text-decoration: none;
}
 
/* HOVER */
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.btn-primary,
.btn-secondary,
.nav-cta,
button {
  background: #046AC2;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

/* Hover / Focus */
.btn-primary:hover,
.btn-secondary:hover,
.nav-cta:hover,
button:hover {
  background: #046AC2;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Active (Click) */
.btn-primary:active,
.btn-secondary:active,
.nav-cta:active,
button:active {
  background: #046AC2;
  color: #ffffff;
  transform: translateY(0);
}



.main-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover */
.main-nav a:hover {
  background: #046AC2;
  color: #ffffff;
}

/* Active / Current Page */
.main-nav a.active {
  background: #046AC2;
  color: #ffffff;
}

/* HERO */
.hero {
  padding-top:80px;
  min-height:100vh;
  background:linear-gradient(135deg,#f8fafc,#eef4ff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* 🔥 image gets more space */
  gap: 60px;
  align-items: center;
}

.hero h1 span {
  display:block;
  font-size:clamp(2.5rem,5vw,4rem);
}

.hero p {
  margin-top:20px;
  color:var(--gray);
}

.hero-actions {
  margin-top:30px;
  display:flex;
  gap:15px;
}

.hero-image img {
  width: 100%;
  max-width: none;          /* 🔑 remove artificial limit */
  height: auto;
  min-height: 420px;        /* 🔥 visual weight */
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

.btn-primary {
  background:var(--primary);
  color:white;
  padding:14px 20px;
  border-radius:8px;
  border:none;
  cursor:pointer;
}

.btn-secondary {
  border:1px solid var(--primary);
  padding:14px 20px;
  border-radius:8px;
  color:var(--primary);
}

.hero-image img {
  width:100%;
  border-radius:20px;
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* STATS */
.stats {
  padding:70px 0;
  background:#f8fafc;
}

.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.stat-number {
  font-size:3rem;
  font-weight:700;
  color:var(--primary);
}



/* ABOUT */
.about {
  padding:100px 0;
}

.about-header {
  max-width: 760px;
  margin: 0 auto 70px auto;   /* centers the block */
  text-align: center;         /* centers text */
}

.about-header h2 {
  letter-spacing: -0.02em;
}

.about-header p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--gray);
}

.about-foundation {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
  margin-bottom:80px;
}

.foundation-principles ul {
  list-style:none;
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.leaders {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:50px;
  margin-bottom:80px;
}

/* ===============================
   LEADER CARDS – CENTERED AUTHORITY
================================ */

.leader-card {
  background: #ffffff;
  padding: 42px 36px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.07);
  text-align: center;                 /* 🔥 key fix */
  display: flex;
  flex-direction: column;
  align-items: center;               /* 🔥 key fix */
}

/* PHOTO */
.leader-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.leader-photo img {
  width: 100%;
  height: 135%;
  object-fit: cover;
}

/* NAME */
.leader-name {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

/* ROLE */
.leader-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

/* DESCRIPTION */
.leader-desc {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 360px;
}

.about-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* CARD */
.about-principle-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  position: relative;
}

/* TITLE */
.about-principle-card h3 {
  font-size: 1.4rem;
  margin-bottom: 22px;
}

/* LIST */
.about-principle-card ul {
  list-style: none;
  padding: 0;
}

.about-principle-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--dark);
}

/* CUSTOM BULLET */
.about-principle-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 900px) {
  .about-bottom {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   APPROACH – ENGAGEMENT PHILOSOPHY
================================ */

.approach {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 100px 0;
}

/* HEADER */
.approach-header {
  max-width: 760px;
  margin: 0 auto 70px auto;
  text-align: center;
}

.approach-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.approach-header p {
  font-size: 1.05rem;
  color: var(--gray);
}

/* GRID */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.approach-card {
  background: #ffffff;
  padding: 38px 34px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* STEP NUMBER */
.approach-card::before {
  content: attr(data-step);
  position: absolute;
  top: -18px;
  right: 24px;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(2, 6, 23, 0.08);
}

/* TITLE */
.approach-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* TEXT */
.approach-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray);
}

/* HOVER */
.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}


/* SERVICES */
/* ===============================
   ADVISORY DOMAINS – DYNAMIC
================================ */

.advisory {
  background: #f8fafc;
  padding: 100px 0;
}

.advisory-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.advisory-header {
  max-width: 760px;
  margin: 0 auto 60px auto;   /* centers the block */
  text-align: center;         /* centers the text */
}

.advisory-header h2 {
  letter-spacing: -0.02em;
}

.advisory-header p {
  margin-top: 12px;
}
/* GRID */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.advisory-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 75px rgba(0,0,0,0.12);
}

/* HEAD */
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-head h3 {
  font-size: 1.1rem;
  line-height: 1.4;
}

.toggle {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  transition: transform 0.3s ease;
}

/* BODY (COLLAPSED BY DEFAULT) */
.card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 0;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.card-body ul {
  padding-left: 18px;
}

.card-body li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* ACTIVE STATE */
.advisory-card.active .card-body {
  max-height: 320px;
  margin-top: 20px;
}

.advisory-card.active .toggle {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .advisory-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT */
/* ===============================
   CONTACT – EXECUTIVE DESIGN
================================ */

.contact {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 100px 0;
}


.contact-header {
  max-width: 760px;
  margin: 0 auto 60px auto;   /* centers the block */
  text-align: center;         /* centers text */
}

.contact-header h2 {
  letter-spacing: -0.02em;
}

.contact-header p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--gray);
}
/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: stretch;
}

/* CARD BASE */
.contact-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* FORM CARD */
.form-card {
  padding: 44px;
}

.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

/* FORM */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 15px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,103,194,0.15);
}

.btn-primary.full {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--primary);
}

/* MAP CARD */
.map-card {
  padding: 0;
}

.map-frame {
  flex: 1;
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info {
  padding: 26px 30px;
  border-top: 1px solid #e5e7eb;
}

.map-info h4 {
  margin-bottom: 6px;
}

.map-info p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 34px;
  }

  .map-frame {
    min-height: 280px;
  }
}

/* REVEAL */
.reveal {
  opacity:0;
  transform:translateY(40px);
  transition:.8s ease;
}

.reveal.active {
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero-grid,
  .about-foundation,
  .leaders,
  .services-grid,
  .contact-grid {
    grid-template-columns:1fr;
  }
}
/* ===============================
   FOOTER – DARK & AUTHORITATIVE
================================ */

.site-footer {
  background: #020617; /* deep slate */
  color: #cbd5f5;
  padding-top: 80px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

/* BRAND */
.footer-brand img {
  height: 88px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 420px;
}

/* HEADINGS */
.site-footer h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #94a3b8;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* CONTACT */
.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #94a3b8;
}

.footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand img {
    height: 58px;
  }
}

.hero .btn-secondary {
  background: #0b67c2 ;
  color: #ffffff !important;        /* force visible text */
  border: none;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Hover state */
.hero .btn-secondary:hover {
  background: #020617;
  color: #ffffff !important;
}

.hero .btn-primary:hover {
  background: #020617;
  color: #ffffff !important;
}


/* ===============================
   WHATSAPP FLOATING BUTTON
================================ */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 50px;

  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ICON */
.whatsapp-float .wa-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* HOVER */
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
================================ */

/* Mobile – icon only */
@media (max-width: 425px) {
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-float .wa-text {
    display: none;
  }
}

/* Large screens – more breathing room */
@media (min-width: 1440px) {
  .whatsapp-float {
    right: 30px;
    bottom: 30px;
    padding: 16px 22px;
    font-size: 1rem;
  }
}




/* =================================================
   RESPONSIVE BREAKPOINTS – AXENZA ADVISORY
   Exact Sizes as Requested
================================================= */

/* ===============================
   S320 — Small Phones (≤320px)
================================ */
@media (max-width: 320px) {
  .container { width: 94%; }

  .hero {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero h1 span {
    font-size: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    min-height: 220px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   M375 — Medium Phones (≤375px)
================================ */
@media (max-width: 375px) {
  .hero h1 span {
    font-size: 2.3rem;
  }

  .hero-image img {
    min-height: 250px;
  }

  .leaders,
  .about-bottom,
  .approach-grid,
  .advisory-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   L425 — Large Phones (≤425px)
================================ */
@media (max-width: 425px) {
  .header-inner {
    flex-direction: column;
    gap: 14px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image img {
    min-height: 280px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   Tablet786 — Tablets (≤786px)
================================ */
@media (max-width: 786px) {
  .hero {
    padding-top: 90px;
  }

  .hero h1 span {
    font-size: 2.8rem;
  }

  .about-foundation {
    grid-template-columns: 1fr;
  }

  .leaders {
    grid-template-columns: 1fr;
  }

  .approach-grid,
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===============================
   Laptop1024 — Small Laptops (≤1024px)
================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .hero-image img {
    min-height: 380px;
  }

  .approach-grid,
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    gap: 40px;
  }
}

/* ===============================
   Laptop Large 1440 — Desktops (≤1440px)
================================ */
@media (max-width: 1440px) {
  .container {
    max-width: 1320px;
  }

  .hero h1 span {
    font-size: 3.8rem;
  }

  .hero-image img {
    min-height: 480px;
  }
}
