.elementor-302 .elementor-element.elementor-element-b1aa31f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a257a0b *//* ========================================= */
/* COLOURS – FROM ABOUT PAGE */
/* ========================================= */

:root {
    --heading-blue: #77B8FF;
    --subheading-blue: #1F7CFF;
    --obsidian: #031A39;
    --twilight: #0A2647;
    --sapphire: #133B7A;
    --charcoal: #0D1B2A;
    --light-text: #E8F1FF;
}

/* ========================================= */
/* GLOBAL */
/* ========================================= */

body {
    margin: 0;
    background: linear-gradient(to bottom right, var(--obsidian), var(--charcoal));
    color: var(--light-text);
    font-family: system-ui, sans-serif;
    overflow-x: hidden;
}

/* ========================================= */
/* HERO LAYOUT */
/* ========================================= */

.hero-section {
    padding: 90px 20px;
    position: relative;
}

.glow-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 100%;
    background: linear-gradient(to bottom, #77B8FFaa, #1F7CFF55, transparent);
    filter: blur(3px);
}

.hero-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.hero-left {
    flex: 1 1 480px;
}

.hero-title {
    font-size: clamp(34px, 4vw, 56px);
    margin: 0 0 12px;
    font-weight: 900;
    color: var(--heading-blue);
    text-shadow: 0 0 20px rgba(119,184,255,0.5);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 26px);
    margin-bottom: 18px;
    color: var(--subheading-blue);
    font-weight: 700;
    white-space: nowrap; /* keeps it on ONE line */
}

.hero-about {
    font-size: 18px;
    line-height: 1.55;
    max-width: 650px;
    color: var(--light-text);
    opacity: 0.92;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: nowrap;
}

.btn {
    flex: 1 1 auto;
    background: var(--sapphire);
    border: 2px solid white;
    padding: 14px 20px;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover {
    background: var(--heading-blue);
    color: black;
}

/* ========================================= */
/* PHOTO */
/* ========================================= */

.photo-frame {
    flex: 1 1 420px;
    max-width: 500px;
    background: var(--twilight);
    padding: 12px;
    border-radius: 14px;
    border: 3px solid var(--sapphire);
    box-shadow: 0 0 30px rgba(19,59,122,0.55);
}

.hero-photo {
    width: 100%;
    border-radius: 10px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 900px) {
    .hero-buttons {
        flex-wrap: wrap;
    }

    .btn {
        flex: 1 1 48%;
    }
}

@media (max-width: 600px) {
    .btn {
        flex: 1 1 100%;
    }

    .hero-subtitle {
        font-size: 20px;
        white-space: normal; /* allow wrap on very small screens if needed */
    }
}
/* ============================
   MOBILE MENU IMPROVED COLOURS
   ============================ */

.mobile-nav {
    background: rgba(255, 255, 255, 0.12); /* lighter background */
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    z-index: 9999;
    padding: 40px 25px;
    transition: right 0.35s ease;
    border-left: 2px solid rgba(255,255,255,0.25);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #E8F1FF; /* clear / bright text */
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
/* ============================
   MOBILE MENU IMPROVED COLOURS
   ============================ */

.mobile-nav {
    background: rgba(255, 255, 255, 0.12); /* lighter background */
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    z-index: 9999;
    padding: 40px 25px;
    transition: right 0.35s ease;
    border-left: 2px solid rgba(255,255,255,0.25);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #E8F1FF; /* clear / bright text */
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-nav a:hover {
    color: #77B8FF;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #E8F1FF;
    cursor: pointer;
}

/* TABLET + MOBILE */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 22px;
        right: 22px;
    }

    nav.desktop-nav {
        display: none;
    }
}/* End custom CSS */