/* ------------------------------------------------------
   GLOBAL BASE STYLES
------------------------------------------------------ */

:root {
  --color-bg: #ffffff;
  --color-text: #2d3640;
  --color-muted: #677489;
  --color-primary: #0D7A83;
  --color-primary-light: #12A1A3;
  --color-border: #e0e6ed;
  --radius: 0.75rem;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ------------------------------------------------------
   LAYOUT CONTAINERS
------------------------------------------------------ */

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #f7f9fc;
  padding: 4.5rem 0;
}

.section-header {
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-header p {
  max-width: 600px;
  color: var(--color-muted);
}

/* ------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------ */

.site-header {
  background: #ffffffcc;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

/* BRAND LOGO + TEXT */

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-svg {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .brand-logo-svg {
    width: 34px !important;
    height: 34px !important;
  }
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* NAV LINKS */

.nav {
  display: flex;
  gap: 1.6rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--color-text);
}

.nav a:hover {
  color: var(--color-primary);
}

/* MOBILE NAV */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.nav-toggle-line {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    padding: 1.3rem 1.4rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    width: 70%;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    cursor: pointer;
  }
}

/* ------------------------------------------------------
   HERO SECTION
------------------------------------------------------ */

.hero-modern {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, #f2f5f9 0%, #e7edf4 40%, #e1e9f2 100%) !important;
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-text h1 {
  font-size: 2.7rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.hero-sub {
  max-width: 580px;
  color: var(--color-muted);
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.btn {
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 500;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--color-primary);
  color: white;
}

.btn.primary:hover {
  background: var(--color-primary-light);
}

.btn.ghost {
  background: white;
  border: 1px solid var(--color-border);
}

/* MOBILE HERO TWEAK */

@media (max-width: 768px) {
  .hero-modern {
    padding: 2.3rem 0 2rem !important;
  }
  .hero-text h1 {
    font-size: 2rem !important;
  }
  .hero-sub {
    font-size: 0.98rem;
  }
}

/* ------------------------------------------------------
   SECTOR CARDS
------------------------------------------------------ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.card {
  padding: 1.6rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
}

.card h3 {
  margin-top: 0;
}

.card-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--color-primary);
  font-weight: 500;
}

.card-link:hover {
  color: var(--color-primary-light);
}

/* ------------------------------------------------------
   INSIGHTS LIST
------------------------------------------------------ */

.insight-item {
  margin-bottom: 1.4rem;
}

.insight-item a {
  color: var(--color-primary);
  font-weight: 600;
}

/* ------------------------------------------------------
   UPDATED FOUNDER CARD (PREMIUM VERSION)
------------------------------------------------------ */

.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.8rem 1.6rem;
  background: linear-gradient(145deg, #f5f7fb, #e8eef6);
  border: 1px solid #dde5f0;
  border-radius: 1.2rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.founder-avatar-img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;

  /* Teal glow ring + soft shadow */
  border: 4px solid rgba(13, 122, 131, 0.55);
  box-shadow:
    0 0 0 6px rgba(13,122,131,0.10),
    0 12px 26px rgba(0,0,0,0.12);
}

.founder-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-text {
  flex: 1;
}

.founder-text h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.founder-text p {
  margin: 0.25rem 0;
}

.founder-name {
  margin-top: 0.75rem;
  font-weight: 600;
}

.founder-name span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* MOBILE FOUNDER FIX */

@media (max-width: 768px) {
  .founder-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 1.5rem 1.2rem;
  }

  .founder-avatar-img {
    width: 72px;
    height: 72px;
    border-width: 3px;
    box-shadow:
      0 0 0 4px rgba(13,122,131,0.12),
      0 10px 22px rgba(0,0,0,0.10);
  }

  .founder-text h3 {
    font-size: 1rem;
  }
}

/* ------------------------------------------------------
   FOOTER
------------------------------------------------------ */

.site-footer {
  padding: 2.2rem 0;
  background: #f8fafc;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-muted);
}