*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    .brand-icon {
      width: 200px; /* Adjust this number until it looks right */
      height: auto;
      object-fit: contain; /* 'contain' is better than 'fill' as it prevents stretching */
      box-shadow: 0 0 20px rgba(232,196,162,0.3);
      display: block; /* Helps with spacing in headers */
    }
    .container {
    display: flex;
    flex-direction: row; 
    gap: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
  }

  .profile-card {
    display: flex;
    align-items: center;
    border: 6px solid #040348;
    padding: 30px;
    border-radius: 100px;
    flex: 2;
    background-color: #ffffff;
    box-shadow: 1 4px 6px rgba(100,0,0,0.07);
  }

  .emoji {
    font-size: 45px;
    margin-right: 20px;
  }

  .content {
    line-height: 1.5;
    color: #444;
    font-size: 14px;
  }

  /* Responsive Logic: Mobile view (Stacked) */
  @media (max-width: 600px) {
    .container {
      flex-direction: column; /* Stacks the divs vertically */
    }
    
    .profile-card {
      width: 100%; /* Ensures they take full width on mobile */
    }
    }

    :root {
      --navy: #151B54;
      --navy-mid: #1e2560;
      --navy-light: #272f6e;
      --accent: #E8C4A2;
      --accent-glow: rgba(232,196,162,0.3);
      --purple: #c9956e;
      --teal: #d4a882;
      --bg: #151B54;
      --surface: #1a2160;
      --surface2: #1f276b;
      --text: #f0ece8;
      --muted: #9aa3c0;
      --border: rgba(232,196,162,0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: 0.4;
    }

    /* ── NAVBAR ── */
    #navbar {
      position: fixed; top: 0; width: 100%; z-index: 100;
      padding: 0 clamp(1rem, 5vw, 3rem);
      display: flex; align-items: center; justify-content: space-between;
      height: 70px;
      bargba(232, 196, 162, 0.85)
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s, box-shadow 0.3s;
    }
    #navbar.scrolled {
        /*navbar color rgba(232, 196, 162, 0.85*/
      background: rgba(21,27,84,0.97);
      box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }

    .brand {
      display: flex; align-items: center; gap: 12px;
      font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700;
      color: var(--text); text-decoration: none;
    }
    .brand-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: linear-gradient(135deg, #E8C4A2, #c9956e);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 800; color: #151B54;
      box-shadow: 0 0 20px rgba(232,196,162,0.3);
    }

    .nav-links {
      display: flex; gap: clamp(1rem, 3vw, 2.5rem); list-style: none;
    }
    .nav-links a {
      color: var(--muted); text-decoration: none; font-size: 0.9rem;
      font-weight: 500; letter-spacing: 0.02em;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0;
      width: 0; height: 1.5px;
      background: #E8C4A2;
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: linear-gradient(135deg, #E8C4A2, #c9956e);
      color: #151B54 !important; padding: 9px 22px; border-radius: 999px;
      font-weight: 600 !important; font-size: 0.85rem !important;
      transition: box-shadow 0.3s, transform 0.2s !important;
      box-shadow: 0 0 20px rgba(232,196,162,0.3);
    }
    .nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 0 35px rgba(232,196,162,0.45) !important; }
    .nav-cta::after { display: none !important; }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 5px; background: none; border: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--text); border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; top: 70px; left: 0; right: 0;
      background: rgba(21,27,84,0.97); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 2rem;
      flex-direction: column; gap: 1.2rem;
      z-index: 99;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--muted); text-decoration: none; font-size: 1rem;
      font-weight: 500; padding: 0.5rem 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--text); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      position: relative; padding: 100px 1.5rem 60px;
      text-align: center; overflow: hidden;
    }

    /* Animated grid background */
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(232,196,162,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,196,162,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridMove 20s linear infinite;
    }
    @keyframes gridMove {
      from { background-position: 0 0; }
      to { background-position: 60px 60px; }
    }

    /* Glowing orbs */
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); pointer-events: none;
      animation: orbFloat 8s ease-in-out infinite;
    }
    .orb-1 {
      width: clamp(300px, 50vw, 600px); height: clamp(300px, 50vw, 600px);
      background: radial-gradient(circle, rgba(232,196,162,0.14), transparent 70%);
      top: -10%; left: -10%;
    }
    .orb-2 {
      width: clamp(200px, 40vw, 500px); height: clamp(200px, 40vw, 500px);
      background: radial-gradient(circle, rgba(180,140,100,0.12), transparent 70%);
      bottom: 0; right: -5%;
      animation-delay: -4s;
    }
    .orb-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(232,196,162,0.08), transparent 70%);
      top: 40%; left: 50%; transform: translate(-50%,-50%);
      animation-delay: -2s;
    }
    @keyframes orbFloat {
      0%, 100% { transform: translate(0,0); }
      33% { transform: translate(20px, -20px); }
      66% { transform: translate(-15px, 15px); }
    }

    .hero-content { position: relative; z-index: 1; max-width: 800px; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(232,196,162,0.1); border: 1px solid rgba(232,196,162,0.3);
      padding: 6px 16px; border-radius: 999px;
      font-size: 0.8rem; font-weight: 500; color: var(--accent);
      margin-bottom: 2rem; letter-spacing: 0.05em; text-transform: uppercase;
      animation: fadeUp 0.8s ease both;
    }
    .hero-badge .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #E8C4A2;
      animation: pulse 2s ease infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.4rem, 7vw, 5.5rem);
      font-weight: 800; line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s 0.1s ease both;
    }
    .hero h1 .grad {
      background: linear-gradient(135deg, #E8C4A2 0%, #c9956e 50%, #e8d4b8 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .maintenance-note {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,180,0,0.08); border: 1px solid rgba(255,180,0,0.25);
      padding: 8px 18px; border-radius: 8px; margin-bottom: 1.5rem;
      font-size: 0.82rem; color: #ffb400;
      animation: fadeUp 0.8s 0.15s ease both;
    }

    .hero p {
      font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--muted);
      margin-bottom: 2.5rem; line-height: 1.7;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-btns {
      display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      flex-wrap: wrap;
      background: linear-gradient(135deg, #E8C4A2, #c9956e);
      color: #151B54; padding: 14px 32px; border-radius: 999px;
      font-weight: 600; font-size: 0.95rem; text-decoration: none;
      margin-top: 30px;
      transition: transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 0 30px rgba(232,196,162,0.3);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(232,196,162,0.45); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid var(--border); color: var(--text);
      padding: 14px 32px; border-radius: 999px;
      font-weight: 500; font-size: 0.95rem; text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    @media (max-width: 450px) {
        .button-group {
            flex-direction: column; /* Stacks buttons vertically on very small screens */
            width: 100%;
        }
        .profile-card {
            flex-direction: row; /* Switches to vertical divisions */
            text-align: center; 
            width: 100%;/* Centers text for the vertical look */
            border-radius: 20px;    /* Optional: less rounding for mobile edges */
            padding: 20px;
        }
  
        .btn-primary, .btn-ghost {
            justify-content: center; /* Centers text inside buttons when stacked */
        }
  }
    .btn-ghost:hover { border-color: #E8C4A2; background: rgba(232,196,162,0.06); }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 0rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 1px;
      color: var(--muted); font-size: 0.75rem; letter-spacing: 0.08em;
      text-transform: uppercase; animation: fadeIn 1s 1s ease both;
    }
    .scroll-hint .arrow {
      width: 20px; height: 30px; border: 1.5px solid rgba(232,196,162,0.4);
      border-radius: 10px; position: relative;
    }
    .scroll-hint .arrow::after {
      content: ''; position: absolute; top: 5px; left: 50%;
      transform: translateX(-50%);
      width: 4px; height: 8px; background: #E8C4A2; border-radius: 2px;
      animation: scrollBounce 1.5s ease infinite;
    }
    @keyframes scrollBounce { 0%,100% { opacity: 1; top: 5px; } 50% { opacity: 0.3; top: 13px; } }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }

    /* ── STATS STRIP ── */
    .stats-strip {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 2rem 1.5rem;
    }
    .stats-inner {
      max-width: 1000px; margin: auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem; text-align: center;
    }
    .stat-num {
      font-family: 'Syne', sans-serif; font-size: 2.2rem;
      font-weight: 800; color: var(--accent);
      display: block;
    }
    .stat-label { color: var(--muted); font-size: 0.85rem; margin-top: 4px; display: block; }

    /* ── SECTION SHARED ── */
    section { padding: clamp(4rem, 8vw, 7rem) 1.5rem; }

    .section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
    .section-tag {
      display: inline-block;
      color: var(--accent); font-size: 0.78rem;
      font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700; line-height: 1.1;
      color: var(--text);
    }
    .section-sub {
      color: var(--muted); font-size: 1rem; max-width: 560px;
      margin: 1rem auto 0; line-height: 1.7;
    }

    /* ── ABOUT ── */
    #about { background: var(--surface); }
    .about-grid {
      max-width: 1000px; margin: auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    }
    .about-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .about-hexagon {
  width: clamp(200px, 35vw, 300px); 
  height: clamp(200px, 35vw, 300px);
  background: linear-gradient(135deg, #004BFF, #040348);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: clamp(3rem, 8vw, 5rem);
  box-shadow: 0 0 60px rgba(232,196,162,0.15);
  animation: morphBlob 8s ease-in-out infinite;

  /* Add this line */
  mix-blend-mode: multiply; 
}
    @keyframes morphBlob {
      0%,100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
      25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
      50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
      75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    }
    .about-text h3 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 700; margin-bottom: 1.2rem; line-height: 1.2;
    }
    .about-text p { color: var(--muted); line-height: 1.8; font-size: 0.98rem; margin-bottom: 1rem; }
    .about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
    .chip {
      background: rgba(232,196,162,0.1); border: 1px solid rgba(232,196,162,0.2);
      padding: 6px 14px; border-radius: 999px;
      font-size: 0.8rem; color: var(--accent); font-weight: 500;
    }

    /* ── SERVICES ── */
    #services { background: var(--bg); }
    .services-grid {
      max-width: 1100px; margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    /* Person Division Specific Styles */
.profile-card {
  /* Layout: Emoji left, Text right */
  display: flex;
  align-items: center;
  gap: 1.5rem;
  
  /* Background & Border from Services Style */
  background: var(--surface);
  border: 6px solid #040348;
  border-radius: 40px; 
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative; 
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}

/* The Glow Effect on Hover */
.profile-card::before {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(232,196,162,0.07), transparent 60%);
  opacity: 1; 
  transition: opacity 0.2s;
  pointer-events: none;
}

.profile-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(232,196,162,0.4); 
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(232,196,162,0.1); 
}

.profile-card:hover::before { 
  opacity: 4; 
}

/* Emoji / Icon Styling */
.profile-emoji {
  flex-shrink: 0;
  width: 56px; 
  height: 56px; 
  border-radius: 16px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(232,196,162,0.12); /* Matching the "blue" style color */
  box-shadow: 0 0 20px rgba(232,196,162,0.12);
  z-index: 1;
}

/* 4-Line Content Styling */
.profile-content {
  position: relative;
  z-index: 1;
}

.profile-content h4 {
  font-family: 'Syne', sans-serif; 
  font-size: 1.1rem;
  font-weight: 700; 
  margin: 0 0 0.5rem 0; 
  color: var(--text);
}

.profile-content p { 
  color: var(--muted); 
  font-size: 0.9rem; 
  line-height: 1.75; 
  margin: 0;
}

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px; padding: clamp(1.5rem, 4vw, 2.5rem);
      position: relative; overflow: hidden;
      transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
      cursor: default;
    }
    .card::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(232,196,162,0.07), transparent 60%);
      opacity: 0; transition: opacity 0.3s;
    }
    .card:hover { transform: translateY(-6px); border-color: rgba(232,196,162,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(232,196,162,0.1); }
    .card:hover::before { opacity: 1; }

    .card-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 1.5rem;
      position: relative;
    }
    .card-icon.blue  { background: rgba(232,196,162,0.12); box-shadow: 0 0 20px rgba(232,196,162,0.12); }
    .card-icon.purple { background: rgba(201,149,110,0.12); box-shadow: 0 0 20px rgba(201,149,110,0.12); }
    .card-icon.teal  { background: rgba(232,196,162,0.10); box-shadow: 0 0 20px rgba(232,196,162,0.10); }

    .card h4 {
      font-family: 'Syne', sans-serif; font-size: 1.1rem;
      font-weight: 700; margin-bottom: 0.8rem; color: var(--text);
    }
    .card p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
    .card-arrow {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--accent); font-size: 0.85rem; font-weight: 600;
      margin-top: 1.2rem; text-decoration: none;
      transition: gap 0.2s;
    }
    .card:hover .card-arrow { gap: 10px; }

    /* ── CERTIFICATIONS ── */
    #certifications { background: var(--surface); }
    .cert-grid {
      max-width: 1000px; margin: auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }
    .cert-card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 2rem 1.5rem;
      display: flex; flex-direction: column; gap: 1rem;
      position: relative; overflow: hidden;
      transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
      cursor: default;
    }
    .cert-card::after {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #E8C4A2, #c9956e);
      border-radius: 20px 20px 0 0;
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s ease;
    }
    .cert-card:hover { transform: translateY(-5px); border-color: rgba(232,196,162,0.35); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
    .cert-card:hover::after { transform: scaleX(1); }

    .cert-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 52px; height: 52px; border-radius: 14px;
      font-size: 1.4rem;
    }
    .cert-badge.gold  { background: rgba(232,196,162,0.15); box-shadow: 0 0 20px rgba(232,196,162,0.15); }
    .cert-badge.blue  { background: rgba(201,149,110,0.12); box-shadow: 0 0 20px rgba(201,149,110,0.12); }
    .cert-badge.green { background: rgba(232,196,162,0.10); box-shadow: 0 0 20px rgba(232,196,162,0.10); }

    .cert-card h4 {
      font-family: 'Syne', sans-serif; font-size: 1.15rem;
      font-weight: 700; color: var(--text);
    }
    .cert-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }
    .cert-level {
      display: inline-block;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
      padding: 4px 12px; border-radius: 999px; margin-top: auto;
    }
    .cert-level.adv { background: rgba(232,196,162,0.12); color: #E8C4A2; border: 1px solid rgba(232,196,162,0.30); }
    .cert-level.int { background: rgba(201,149,110,0.10); color: #d4a882;  border: 1px solid rgba(201,149,110,0.30); }
    .cert-level.fnd { background: rgba(232,216,184,0.10); color: #e8d4b8;  border: 1px solid rgba(232,216,184,0.30); }

    /* ── CONTACT ── */
    #contact { background: var(--bg); }
    .contact-inner {
      max-width: 700px; margin: auto;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px; padding: clamp(2rem, 6vw, 3.5rem);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .contact-inner::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(232,196,162,0.07), transparent 60%);
    }
    .contact-inner > * { position: relative; }

    .contact-info { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2rem 0; }
    .contact-item {
      display: flex; align-items: center; gap: 10px;
      background: var(--surface2); border: 1px solid var(--border);
      padding: 12px 20px; border-radius: 12px;
      font-size: 0.9rem; color: var(--text);
      transition: border-color 0.2s, transform 0.2s;
    }
    .contact-item:hover { border-color: #E8C4A2; transform: translateY(-2px); }
    .contact-item span.icon { font-size: 1.1rem; }

    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    /* ════════════════════════════
   FOOTER
════════════════════════════ */
footer { background-color: #0b1425; background: #0b1425; border-top: 1px solid rgba(61,154,255,0.1); padding: clamp(2.5rem,5vw,3.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); margin-bottom: 2.5rem; }
.footer-brand p { color: #5e7a96; font-size: 0.85rem; line-height: 1.7; max-width: 230px; margin-top: 0.75rem; }
.footer-col h6 { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #a8becf; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { color: #5e7a96; text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #e4ecf8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { color: #5e7a96; font-size: 0.78rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a { width: 32px; height: 32px; border-radius: 8px; background-color: #0f1d35; border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; text-decoration: none; color: #5e7a96; transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
.footer-socials a:hover { color: #e4ecf8; border-color: rgba(61,154,255,0.3); background-color: rgba(61,154,255,0.08); }


    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links, .nav-cta-wrap { display: none; }
      .hamburger { display: flex; }
      .about-grid { grid-template-columns: 1fr; }
      .about-visual { display: none; }
      .profile-card {
          width: 100%;
      }
    }