/* ============================================================
   JRAD GLOBAL CSS — SECTION 1: BASE STYLES
   Universal defaults applied to every JRAD page.
   ============================================================ */

/* ------------------------------------------------------------
   BODY BACKGROUND
   ------------------------------------------------------------ */
body {
    background-color: #05070b;   /* JRAD deep-space dark theme */
    margin: 0;
    padding: 0;
}

/* ------------------------------------------------------------
   TEXT COLOR
   ------------------------------------------------------------ */
body {
    color: #e5ecff;              /* Soft blue-white for readability */
}

/* ------------------------------------------------------------
   FONT STACK
   ------------------------------------------------------------ */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ------------------------------------------------------------
   LINE HEIGHT
   ------------------------------------------------------------ */
body {
    line-height: 1.6;            /* Balanced readability across devices */
}

/* ------------------------------------------------------------
   LINK DEFAULTS
   ------------------------------------------------------------ */
a {
    color: #8fb4ff;              /* JRAD link blue */
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #bcd3ff;              /* Slightly brighter on hover */
}



/* ============================================================
   JRAD GLOBAL CSS — SECTION 2: GLOBAL LAYOUT
   Structural layout for every JRAD page.
   ============================================================ */

/* ------------------------------------------------------------
   PAGE-WRAP (Centers content + auto-sizes on all devices)
   ------------------------------------------------------------ */
.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 16px 60px;
}

/* ------------------------------------------------------------
   HEADER (Dark theme + centered layout)
   ------------------------------------------------------------ */
.site-header {
    background-color: #0a0c10;
    padding: 20px 0;
    border-bottom: 1px solid #1a1d24;
}

/* ------------------------------------------------------------
   HEADER INNER (Centers logo + nav vertically)
   ------------------------------------------------------------ */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ------------------------------------------------------------
   LOGO (Centered image)
   ------------------------------------------------------------ */
.logo img {
    height: 60px;
    display: block;
}
/* ------------------------------------------------------------
   LOGO TITLE (Company name under the logo)
   ------------------------------------------------------------ */
.logo-title {
    font-size: 41px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    padding-bottom: 12px;   /* space above the line */
    border-bottom: 1px solid #ffffff;  /* the white separator line */
    margin-bottom: 12px;    /* space below the line before the nav */
}

/* ------------------------------------------------------------
   MAIN NAV (Centered horizontal navigation)
   ------------------------------------------------------------ */
.main-nav {
    display: flex;
    gap: 22px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ------------------------------------------------------------
   NAV ITEM (Positioning container for dropdowns)
   ------------------------------------------------------------ */
.nav-item {
    position: relative;
}

/* ------------------------------------------------------------
   NAV LINK (Default + active state)
   ------------------------------------------------------------ */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-link.active {
    border-bottom: 2px solid #4da3ff;
    color: #4da3ff;
}

/* ------------------------------------------------------------
   DROPDOWN MENU (Hidden until hover)
   ------------------------------------------------------------ */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    background-color: #0f1116;
    border: 1px solid #2a2d36;
    border-radius: 6px;
    min-width: 220px;
    z-index: 1000;
}

/* ------------------------------------------------------------
   DROPDOWN MENU LINKS
   ------------------------------------------------------------ */
.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: #d0d3db;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #1a1d24;
    color: #4da3ff;
}

/* ------------------------------------------------------------
   DROPDOWN HOVER BEHAVIOR
   ------------------------------------------------------------ */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* ------------------------------------------------------------
   FOOTER (Dark theme + centered layout)
   ------------------------------------------------------------ */
.site-footer {
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #0a0c10;
    text-align: center;
    color: #7a7f8a;
    font-size: 14px;
    border-top: 1px solid #1a1d24;
}

/* ------------------------------------------------------------
   FOOTER BUTTONS (Careers, Contact, Disclosures)
   ------------------------------------------------------------ */
.footer-buttons {
    margin-bottom: 25px;
}

.footer-btn {
    display: inline-block;
    margin: 0 10px;
    padding: 8px 16px;
    background-color: #0f1116;
    border: 1px solid #2a2d36;
    border-radius: 6px;
    color: #4da3ff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.footer-btn:hover {
    background-color: #1a1d24;
    border-color: #4da3ff;
}
/* ------------------------------------------------------------
   FOOTER CONTACT BLOCK (Address, Email, Hours)
   ------------------------------------------------------------ */
.footer-contact {
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact p {
    margin: 8px 0;
}

/* ------------------------------------------------------------
   FOOTER CONTAINER (Optional: unify spacing)
   ------------------------------------------------------------ */
.site-footer {
    padding: 30px 0;
    background-color: #0a0c10;
    border-top: 1px solid #1a1d24;
    text-align: center;
}

/* ------------------------------------------------------------
   RESPONSIVE BREAKPOINTS (Mobile optimization)
   ------------------------------------------------------------ */
@media (max-width: 640px) {
    .page-wrap {
        padding-top: 64px;
    }
    .main-nav {
        gap: 14px;
    }
    .logo img {
        height: 50px;
    }
}



/* ============================================================
   JRAD GLOBAL CSS — SECTION 3: COMPONENTS
   Reusable UI components used across JRAD pages.
   ============================================================ */

/* ------------------------------------------------------------
   PAGE TITLE (Centered, bold, consistent across all pages)
   ------------------------------------------------------------ */
.page-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 20px 0 30px;
    color: #ffffff;
}

/* ============================================================
   GRID SYSTEM
   ============================================================ */
.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
}

/* ============================================================
   CARD COMPONENTS
   ============================================================ */
.card {
    background-color: #0f1116;
    border: 1px solid #2a2d36;
    border-radius: 10px;
    padding: 20px;
    color: #d0d3db;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(77, 163, 255, 0.35);
}

/* Application Card */
.app-card {
    composes: card;
}

.app-card h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.app-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #a9b7d9;
}

/* Book Card */
.book-card {
    background: radial-gradient(circle at top, #151b2b 0, #070a11 55%, #05070b 100%);
    border-radius: 14px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(109, 142, 196, 0.35);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.book-thumb-wrap {
    border-radius: 10px;
    overflow: hidden;
}

.book-thumb {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.book-thumb.clicked {
    transform: scale(1.18);
    box-shadow: 0 0 25px rgba(77, 163, 255, 0.75);
}

.book-title {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: 4px;
}

.book-subtitle {
    font-size: 0.86rem;
    color: #8fa0c7;
    margin-bottom: 4px;
}

.book-desc {
    font-size: 0.86rem;
    color: #a9b7d9;
    line-height: 1.55;
    flex: 1;
}

.book-meta {
    font-size: 0.78rem;
    color: #6f7ca0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 6px;
}

/* ============================================================
   BUTTONS & UTILITIES
   ============================================================ */
.btn-primary {
    display: inline-block;
    padding: 10px 18px;
    background-color: #4da3ff;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.25s ease;
}

.btn-primary:hover {
    background-color: #1a8cff;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }



/* ============================================================
   JRAD GLOBAL CSS — SECTION 4: INTERACTIONS & ANIMATIONS
   Motion, transitions, and interactive behaviors.
   ============================================================ */

/* Universal transition */
* {
    transition: color 0.25s ease, background-color 0.25s ease,
                border-color 0.25s ease, box-shadow 0.25s ease,
                transform 0.25s ease;
}

/* Image zoom */
.img-zoom:hover {
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(77, 163, 255, 0.35);
}

/* Book click animation */
.book-thumb.clicked {
    transform: scale(1.18);
    box-shadow: 0 0 25px rgba(77, 163, 255, 0.75);
}

/* Card hover lift */
.card:hover,
.app-card:hover,
.book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(77, 163, 255, 0.35);
}

/* Fade-in */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Slide-up */
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.7s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover */
.btn-primary:hover {
    background-color: #1a8cff;
    transform: translateY(-2px);
}

/* Nav hover */
.nav-link:hover {
    color: #bcd3ff;
}

/* Dropdown fade-in */
.dropdown-menu {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* CONTACT PAGE LAYOUT FIX */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 14px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    background-color: #1a1d24;
    border: 1px solid #2a2d36;
    border-radius: 6px;
    color: #d0d3db;
    margin-bottom: 15px;
}

.contact-form button {
    background-color: #4da3ff;
    color: #ffffff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.contact-form button:hover {
    background-color: #1a8cff;
}
/* =========================================================
   SECTION 5 — HERO SECTION
   Full‑width magnetic flight hero with overlay + text
   ========================================================= */
.hero-section {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    max-width: 1200px;
    width: 100%;
}

.hero-image {
    width: 45%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(5, 6, 8, 0.2),
        rgba(5, 6, 8, 0.85)
    );
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: auto 0 8%;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    color: #d0d3db;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-content {
        inset: auto 0 6%;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}


@keyframes scrollPulse {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-section {
    position: relative;
    height: 80vh; /* you can tweak: 70–90vh */
    background-image: url('/images/flight-suit-hero.jpg');
    background-size: auto 100%;   /* fit full height */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ============================================================
   JRAD CONTACT PAGE — LAYOUT & FORM STYLING
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 780px) {
    .contact-grid {
        grid-template-columns: 1fr;<style>
    }
}

.contact-info p {
    margin-bottom: 14px;
    color: #d0d3db;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #ffffff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: #0f1116;
    border: 1px solid #2a2d36;
    border-radius: 6px;
    color: #e5ecff;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    background-color: #4da3ff;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #1a8cff;
}

/* Align contact form to the left edge */
.contact-form {
    justify-self: start;
    width: 100%;
}
/* ========================================= */
/* JRAD FORM SYSTEM — INVESTOR ACCESS        */
/* Clean, single-column, full-width layout   */
/* ========================================= */

<section class="investor-access-section">

