/*
Theme Name: Waverock Theme
Theme URI: https://example.com/
Author: Naresh
Author URI: https://example.com/
Description: A custom WordPress theme for the Waverock landing page.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: waverock
*/

:root {
    --brand-navy: #00215E;
    --brand-blue: #4A94DB;
    --bg-main: #FFFFFF;
    --bg-alt: #F8FAFC;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-light: rgba(0, 33, 94, 0.1);
    --white: #ffffff;
	
	/* Spacing */
            --spacing-gap: 8px;
            --item-padding: 14px 18px;
            --icon-gap: 12px;
            --border-radius: 8px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.9);
    border-bottom: 1px solid var(--border-light);
    transition: padding 0.3s;
  }
  .logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .logo img {
    height: 36px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--brand-navy); }
  .btn-sign-in {
    color: var(--brand-navy) !important;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: border-color 0.2s, background 0.2s !important;
  }
  .btn-sign-in:hover { border-color: var(--brand-navy) !important; background: rgba(0,33,94,0.03); }
  .btn-demo {
    background: var(--brand-navy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500 !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .btn-demo:hover { background: #001845 !important; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    padding: 120px 60px 80px;
    text-align: center;
    overflow: hidden;
  }

  /* Animated background grid */
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(rgba(74,148,219,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(74,148,219,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
  }
  @keyframes gridDrift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
  }

  /* Wave SVG */
  .wave-animation {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    pointer-events: none;
  }

  /* Glow orbs */
  .orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
    animation: orb-float 8s ease-in-out infinite;
  }
  .orb-1 { width: 400px; height: 400px; background: var(--brand-blue); top: 10%; left: 15%; animation-delay: 0s; }
  .orb-2 { width: 300px; height: 300px; background: var(--brand-navy); top: 30%; right: 10%; animation-delay: -3s; }
  .orb-3 { width: 250px; height: 250px; background: #82B1FF; bottom: 15%; left: 40%; animation-delay: -6s; }
  @keyframes orb-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }

  .hero-content { position: relative; z-index: 2; max-width: 75%; }

  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(74,148,219,0.1);
    border: 1px solid rgba(74,148,219,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); }

  h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--brand-navy);
    animation: fadeUp 0.8s ease 0.1s both;
  }
  h1 span.gradient {
    background: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 100%;
    margin: 0 auto 20px;
    font-weight: 400;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-ctas {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .btn-primary {
    background: var(--brand-navy);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(0,33,94,0.25);
  }
  .btn-primary:hover {
    background: #001845;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,33,94,0.35);
  }

  .btn-ghost {
    background: transparent;
    color: var(--brand-navy);
    padding: 15px 32px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    display: flex; align-items: center; gap: 8px;
  }
  .btn-ghost:hover {
    border-color: var(--brand-navy);
    background: rgba(0,33,94,0.03);
    transform: translateY(-2px);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION SHARED ── */
  section { padding: 100px 60px; position: relative; }
  .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.15;
    letter-spacing: -0.005em;
  }
  .container { max-width: 1100px; margin: 0 auto; }

  /* ── PROBLEM ── */
  .problem {
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
  }
  .problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .problem-text .section-title {
    margin-bottom: 20px;
  }
  .problem-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 40px;
  }
  .pain-points {
    display: flex; flex-direction: column; gap: 14px;
  }
  .pain-item {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    transition: border-color 0.2s, background 0.2s;
  }
  .pain-item:hover {
    border-color: rgba(74,148,219,0.4);
    background: rgba(74,148,219,0.05);
  }
  .pain-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.25);
    color: #EF4444;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
  }
  .chaos-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    position: relative; overflow: hidden;
  }
  .chaos-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(74,148,219,0.15), transparent 70%);
    border-radius: 50%;
  }
  .chaos-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--brand-navy);
  }
  .chaos-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .idea-pile { display: flex; flex-direction: column; gap: 10px; }
  .idea-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    width: fit-content;
  }
  .idea-tag.active {
    background: rgba(74,148,219,0.1);
    border-color: rgba(74,148,219,0.3);
    color: var(--brand-navy);
  }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--bg-alt);
  }
  .how-header { text-align: center; margin-bottom: 72px; }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border-light);
    border-radius: 20px;
    overflow: hidden;
  }
  .step {
    background: var(--bg-main);
    padding: 40px 28px;
    position: relative;
    transition: background 0.3s;
  }
  .step:hover { background: #F8FAFC; }
  .step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(74,148,219,0.15);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s;
  }
  .step:hover .step-number { color: rgba(74,148,219,0.3); }
  .step-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74,148,219,0.15), rgba(0,33,94,0.05));
    border: 1px solid rgba(74,148,219,0.2);
    color: var(--brand-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .step-arrow {
    position: absolute; top: 50%; right: -12px;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    background: var(--brand-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    z-index: 2;
  }
  .step:last-child .step-arrow { display: none; }

  /* ── OUTPUT PREVIEW ── */
  .output-section {
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .output-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: center;
  }
  .output-text .section-title { margin-bottom: 16px; }
  .output-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 36px;
  }
  .output-features { display: flex; flex-direction: column; gap: 12px; }
  .feature-row {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
  }
  .feature-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand-blue); flex-shrink: 0;
  }

  /* Mock dashboard */
  .dashboard-mock {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,33,94,0.08);
  }
  .dash-header {
    background: var(--bg-alt);
    padding: 14px 20px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--border-light);
  }
  .dot-red { width: 10px; height: 10px; border-radius: 50%; background: #FF5F57; }
  .dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #FEBC2E; }
  .dot-green { width: 10px; height: 10px; border-radius: 50%; background: #28C840; }
  .dash-title { margin-left: 8px; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
  .dash-body { padding: 24px; }
  .dash-tabs {
    display: flex; gap: 6px; margin-bottom: 20px;
  }
  .dash-tab {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
  }
  .dash-tab.active {
    background: rgba(74,148,219,0.1);
    color: var(--brand-navy);
    border: 1px solid rgba(74,148,219,0.2);
  }
  .dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
  .metric-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 14px;
  }
  .metric-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.1em; }
  .metric-value { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; color: var(--brand-navy); font-weight: 800; }
  .metric-value.up { color: var(--brand-blue); }
  .metric-change { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
  .priority-list { display: flex; flex-direction: column; gap: 8px; }
  .priority-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 8px;
  }
  .priority-rank {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(74,148,219,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--brand-navy);
    flex-shrink: 0;
  }
  .priority-name { font-size: 0.75rem; font-weight: 500; color: var(--text-main); flex: 1; }
  .priority-bar-wrap { width: 60px; height: 4px; background: rgba(0,33,94,0.08); border-radius: 2px; }
  .priority-bar { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue)); }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 100px 60px;
    overflow: hidden;
  }
  .testimonials-header { text-align: center; margin-bottom: 64px; }
  .testi-track-wrap { position: relative; max-width: 900px; margin: 0 auto; }
  .testi-cards { position: relative; min-height: 260px; }
  .testi-card {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 20px; padding: 44px 52px;
    box-shadow: 0 10px 30px rgba(0,33,94,0.03);
    opacity: 0; transform: translateX(48px) scale(0.97);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
  }
  .testi-card.active {
    opacity: 1; transform: translateX(0) scale(1);
    pointer-events: auto; position: relative;
  }
  .testi-card.exit {
    opacity: 0; transform: translateX(-48px) scale(0.97);
    position: absolute;
  }
  .testi-quote-mark {
    font-size: 4rem; line-height: 1; color: rgba(74,148,219,0.25);
    font-family: Georgia, serif; margin-bottom: 12px;
  }
  .testi-text {
    font-size: 1.08rem; line-height: 1.75;
    color: var(--text-muted); font-weight: 500;
    font-style: italic; flex: 1; margin-bottom: 32px;
  }
  .testi-author { display: flex; align-items: center; gap: 16px; }
  .testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; color: var(--white);
    flex-shrink: 0; font-style: normal;
  }
  .testi-name { font-weight: 700; font-size: 0.95rem; color: var(--brand-navy); margin-bottom: 2px; }
  .testi-role { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
  .testi-stars { margin-left: auto; color: var(--brand-blue); font-size: 0.9rem; letter-spacing: 2px; }
  .testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
  .testi-dots { display: flex; gap: 8px; align-items: center; }
  .testi-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(0,33,94,0.15); border: none;
    cursor: pointer; transition: background 0.3s, transform 0.3s; padding: 0;
  }
  .testi-dot.active { background: var(--brand-navy); transform: scale(1.4); }
  .testi-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-main); border: 1px solid var(--border-light);
    color: var(--brand-navy); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: background 0.2s, border-color 0.2s;
  }
  .testi-btn:hover { background: var(--bg-alt); border-color: var(--brand-navy); }

  /* ── V2 HOOK ── */
  .v2 {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
    border-top: 1px solid var(--border-light);
    text-align: center;
  }
  .v2-inner { max-width: 680px; margin: 0 auto; }
  .v2 .section-title { margin-bottom: 16px; }
  .v2 p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
  }
  .v2-features {
    display: flex; gap: 24px; justify-content: center;
    margin-bottom: 44px; flex-wrap: wrap;
  }
  .v2-feat {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--text-main);
  }
  .v2-feat-icon {
    width: 28px; height: 28px; border-radius: 7px;
    background: rgba(74,148,219,0.1);
    border: 1px solid rgba(74,148,219,0.25);
    color: var(--brand-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
  }

  /* ── FINAL CTA ── */
  .final-cta {
    background: var(--bg-main);
    text-align: center;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
  }
  .cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(74,148,219,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .final-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    position: relative;
  }
  .final-cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
  }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; position: relative; }

  /* ── FOOTER ── */
  footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-muted);
  }
  .footer-copy {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
  }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--brand-navy); }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    .hero { padding: 100px 24px 72px; }
    .problem-inner, .output-inner { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .step-arrow { display: none; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
  }
  /* Updated to CSS Grid for 2 columns */
        .sidebar-nav {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            width: 100%;
            max-width: 600px; /* Increased to accommodate two columns */
            gap: var(--spacing-gap);
            column-gap: 20px; /* Added slight extra gap between columns */
        }

        .nav-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--brand-navy);
            font-size: var(--font-size);
            font-weight: 400;
            padding: var(--item-padding);
            border-radius: var(--border-radius);
            border: 1px solid transparent;
            transition: all 0.2s ease-in-out;
            
        }

        .nav-item i {
            font-size: 20px;
            margin-right: var(--icon-gap);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hover State */
        .nav-item:hover:not(.active) {
            background-color: var(--bg-hover);
            transform: translateX(2px);
        }

        /* Active State */
        .nav-item.active {
            background-color: var(--bg-active);
            border-color: var(--border-active);
            color: var(--brand-blue);
            font-weight: 500;
        }        
		/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

.modal-content {
  background: #ffffff;
  margin: 6% auto;
  width: 90%;
  max-width: 60%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
}

.modal-header {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
  color: var(--text-muted);
  line-height: 1.7;
}
.modal-body a {
color: var(--brand-blue);
text-decoration:none;
}
.modal-body a:hover {
color: var(--brand-navy);
}
.modal-body h3, h4 {
margin-top:16px;
}
.modal-body h4 {
margin-top:8px;
}
.modal-body ul {
padding-left:20px;
}
.close-btn {
  font-size: 40px;
  cursor: pointer;
  color: var(--text-muted);
  font-weight:normal;
}

.close-btn:hover {
  color: var(--brand-navy);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* TABS */
.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  background: #f8fafc;
}

.tab-btn {
  flex: 1;
  padding: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.tab-btn.active {
  color: var(--brand-navy);
  border-bottom: 2px solid var(--brand-blue);
  background: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background: var(--bg-color, #0f172a);
    position: relative;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-section .section-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color, #00d4ff);
}

.contact-section .section-title {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.contact-tagline {
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary-color, #00d4ff),
        var(--secondary-color, #2563eb)
    );
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.contact-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}
/* Responsive adjustments */
        @media (max-width: 768px) {
            .sidebar-nav {
                grid-template-columns: 1fr; /* Stacks to 1 column on mobile */
                max-width: 100%;
            }
            .nav-item {
                font-size: 15px;
                padding: 12px 16px;
            }
			.hero-content {
				max-width: 100%;
			}
			.testimonials {
			    padding: 80px 24px;
			}
			.testi-card {
				padding: 44px 24px;
			}
			.testimonials-header {
				margin-bottom: 24px;
			}
			.testi-quote-mark {
				ont-size: 5rem;
				line-height: .5;
				margin-bottom: 0;
			}
			.final-cta {
				padding: 120px 24px;
			}
			.modal-content {
				max-width: 100%;
			}
    }