/* ============================================
   SALMAN SADIQ — salmansadiq.com
   Master Stylesheet · Light Theme
   Playfair Display + Inter · Blocksy Palette
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Blocksy palette */
  --c1: #4A7C9B;
  --c2: #3A6A88;
  --c3: #1B2E3F;
  --c4: #111D28;
  --c5: #E8F1F5;
  --c6: #fcfeff;
  --c7: #eff4f6;
  --c8: #FFFFFF;

  /* Semantic */
  --bg: var(--c7);
  --bg-card: var(--c8);
  --bg-surface: var(--c6);
  --bg-dark: var(--c4);
  --bg-dark-card: #1a2a38;
  --text: var(--c4);
  --text-body: var(--c3);
  --text-muted: #6B7B8D;
  --accent: var(--c1);
  --accent-hover: var(--c2);
  --border: var(--c5);
  --border-subtle: rgba(74, 124, 155, 0.08);

  /* Typography */
  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1440px;
  --container-sm: 1200px;
  --gap: 2rem;
  --section-pad: 7rem 3rem;
  --section-pad-mobile: 4rem 1.5rem;
  --radius: 12px;
  --radius-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;
}

/* Container responsive */
@media (max-width: 1500px) {
  :root { --container: 1200px; }
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
  background: var(--c8);
      border-bottom: 2px solid var(--c5);
}




.nav.scrolled {
  background: rgba(248, 250, 251, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}

.nav-logo {
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 1px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(248, 250, 251, 0.98);
  backdrop-filter: blur(30px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-pad); }
.section .container { max-width: var(--container); margin: 0 auto; }

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}
.section--dark .text-body { color: rgba(255,255,255,0.6); }
.section--dark .text-muted { color: rgba(255,255,255,0.35); }
.section--dark .label { color: rgba(74, 124, 155, 0.7); }
.section--dark .card { background: var(--bg-dark-card); border-color: rgba(255,255,255,0.06); }
.section--dark .card h4, .section--dark .card h3 { color: #fff; }
.section--dark .card p { color: rgba(255,255,255,0.55); }

.section--surface { background: var(--bg-surface); }
.section--white { background: var(--bg-card); }

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  max-width: var(--container);
  margin: 0 auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.title {
  font-family: var(--heading);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.title em { font-style: italic; color: var(--accent); }
.section--dark .title { color: #fff; }

.title--hero { font-size: clamp(3rem, 6vw, 5.5rem); }
.title--xl { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.title--lg { font-size: clamp(2rem, 4vw, 3rem); }
.title--md { font-size: clamp(1.5rem, 3vw, 2rem); }

.subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-body);
  opacity: 0.75;
  max-width: 640px;
  line-height: 1.8;
}
.section--dark .subtitle { color: #9daebe; }

.text-body { color: var(--text-body); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }

.highlight-quote {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
  max-width: 640px;
}

.closing-line {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  margin-top: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary { background: var(--accent); color: #fff; border: none; }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(74,124,155,0.3); }
.btn--outline { background: transparent; color: var(--text-body); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding: 0;
  border: none;
  font-weight: 600;
  transition: all 0.3s;
}
.btn--ghost:hover { transform: translateX(4px); }

.section--dark .btn--outline { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.section--dark .btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.card:hover {
  border-color: rgba(74,124,155,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.card h4 {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 16px;
  color: var(--text-body);
  opacity: 0.75;
  line-height: 1.7;
}

/* Venture link card */
.venture-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.venture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.5s var(--ease);
  border-radius: 0 0 2px 0;
}
.venture-card:hover {
  border-color: rgba(74,124,155,0.25);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.venture-card:hover::before { height: 100%; }
.venture-card h4 {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.venture-card p {
  font-size: 16px;
  color: var(--text-body);
  opacity: 0.7;
  line-height: 1.7;
}
.venture-card .arrow {
  font-size: 14px;
  color: var(--accent);
  margin-top: 1rem;
  display: inline-block;
  transition: transform 0.3s;
  font-weight: 600;
}
.venture-card:hover .arrow { transform: translateX(6px); }

.section--dark .venture-card {
  background: var(--bg-dark-card);
  border-color: rgba(255,255,255,0.06);
}
.section--dark .venture-card:hover { border-color: rgba(74,124,155,0.3); }
.section--dark .venture-card h4 { color: #fff; }
.section--dark .venture-card p { color: rgba(255,255,255,0.55); }

/* Fragment / quote card */
.fragment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.4s;
}
.fragment-card:hover {
  border-color: rgba(74,124,155,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.fragment-card blockquote {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1rem;
}
.fragment-card cite {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* DIST card */
.dist-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.4s;
}
.dist-card:hover { border-color: rgba(74,124,155,0.25); transform: translateY(-2px); }
.dist-letter {
  font-family: var(--heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.dist-word {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}
.dist-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Tour node */
.tour-node {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: all 0.4s;
}
.tour-node:hover { border-color: rgba(74,124,155,0.25); transform: translateY(-2px); }
.tour-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 12px rgba(74,124,155,0.4);
}
.tour-name {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.tour-tradition {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Now / status items */
.now-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.now-item:last-child { border-bottom: none; }
.now-status {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.now-item h4 {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.now-item p {
  font-size: 16px;
  color: var(--text-body);
  opacity: 0.7;
  max-width: 620px;
  line-height: 1.7;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    flex-direction: column;
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(74,124,155,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(74,124,155,0.03) 0%, transparent 60%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-lines::before, .hero-lines::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(74,124,155,0.08) 30%, rgba(74,124,155,0.08) 70%, transparent);
}
.hero-lines::before { left: 15%; }
.hero-lines::after { left: 85%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 120px auto 0;
  padding: 0 3rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { padding-top: 4rem; }

.hero-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-name {
  font-family: var(--heading);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
.hero-name em {
  font-style: italic;
  color: var(--accent);
  font-weight: 800;
}
.hero-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-body);
  opacity: 0.7;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.hero-image-frame {
  width: 380px;
  height: 500px;
  position: relative;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-surface);
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  
  border-radius: var(--radius);
  z-index: -1;
}
.hero-image-placeholder img {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(58, 106, 136, 0.15);
}
.hero-data {
  position: absolute;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.hero-data.top-right { top: -28px; right: -50px; }
.hero-data.bottom-left { bottom: -28px; left: -30px; }

.hero-marquee {
  margin-top: 4rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--c5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s forwards;
  background: var(--c2);
    padding: 5px 0;
    width:100%;
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  padding: 10rem 3rem 4rem;
  background: var(--bg-card);
}
.page-hero .container { max-width: var(--container); margin: 0 auto; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.back-link:hover { transform: translateX(-3px); }

/* ============================================
   CONTENT BLOCKS (Inner pages)
   ============================================ */
.content-block { margin-bottom: 4rem; }

.content-block h2 {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.content-block h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.content-block p {
  font-size: 17px;
  color: var(--text-body);
  opacity: 0.8;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 740px;
}
.content-block .highlight {
  color: var(--text);
  font-weight: 600;
  opacity: 1;
}


.section--dark .content-block.reveal.visible p {
    color: #9daebe;
}
/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border), transparent);
  border-radius: 1px;
}
.timeline-entry {
  position: relative;
  padding-bottom: 3.5rem;
  padding-left: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.timeline-entry.visible { opacity: 1; transform: translateY(0); }
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(74,124,155,0.4);
}
.timeline-year {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.timeline-entry h4 {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.timeline-entry p {
  font-size: 16px;
  color: var(--text-body);
  opacity: 0.7;
  line-height: 1.75;
  max-width: 580px;
}

/* ============================================
   MAARIFAT CIRCLE
   ============================================ */
.maarifat-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.maarifat-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(74,124,155,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.maarifat-circle::before {
  content: '';
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(74,124,155,0.1);
  position: absolute;
}
.maarifat-circle::after {
  content: '';
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,155,0.08), transparent 70%);
  position: absolute;
}
.maarifat-word {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.orbit-label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.6;
}
.orbit-label.top { top: -8px; left: 50%; transform: translateX(-50%); }
.orbit-label.right { right: -55px; top: 50%; transform: translateY(-50%); }
.orbit-label.bottom { bottom: -8px; left: 50%; transform: translateX(-50%); }
.orbit-label.left { left: -55px; top: 50%; transform: translateY(-50%); }

/* ============================================
   CONNECT / CTA
   ============================================ */
.connect-section {
  text-align: center;
  padding: 8rem 3rem;
}
.connect-section .title { margin-bottom: 1rem; }
.connect-section .subtitle {
  margin: 0 auto 2.5rem;
  text-align: center;
}
.connect-email {
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 2px solid rgba(74,124,155,0.25);
  padding-bottom: 3px;
  transition: all 0.3s;
}
.connect-email:hover { border-bottom-color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  max-width: 100%;
    margin: 0 auto;
    background: var(--c8);
}
.footer-left {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-right {
  display: flex;
  gap: 2rem;
}
.footer-right a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-right a:hover { color: var(--accent); }

/* ============================================
   VENTURE DOMAIN LINK
   ============================================ */
.domain-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  padding: 10px 20px;
  border: 1px solid rgba(74,124,155,0.2);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  margin-top: 2rem;
}
.domain-link:hover {
  background: rgba(74,124,155,0.05);
  border-color: var(--accent);
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: 2rem 0;
}

/* Column header for ventures */
.col-header {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { padding-top: 8rem; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-cta { justify-content: center; }
  
  .grid-2 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: flex; }
  .section { padding: var(--section-pad-mobile); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-right { flex-wrap: wrap; justify-content: center; }
  .connect-section { padding: 5rem 1.5rem; }
  .hero-content { width: 100% !important;padding: 15px; }
  .hero-text {
    padding-top: 20px !important;
    
}
.hero-data.top-right {
 
    right: 0;
}

.hero-data.bottom-left {
    
    left: 0;
}
  .maarifat-circle {
    width: 280px;
    height: 280px; 
}
 
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
}


section.section.section--dark h2 {
    color: #fff;
}