:root {
    --navy: #0a1b3d;
    --navy-deep: #060f26;
    --black: #050608;
    --sky: #3fc1ff;
    --sky-dim: #1e5a80;
    --white: #f7f9fc;
    --line: rgba(247, 249, 252, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

body {
    overflow-x: hidden;
    cursor: default;
    background: var(--black);
    color: var(--white);
}

abbr {
    text-decoration: none;
    font-weight: 600;
}

/* ===== NAVBAR ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 28px;
}

.logo {
    font-family: "Anton", sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--sky);
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-items: center;
    justify-self: center;
}

.nav-links > .has-drop {
    position: relative;
}

.nav-links a {
    opacity: 0.8;
    transition:
        opacity 0.2s,
        color 0.2s;
    position: relative;
    padding: 4px 0;
    color: inherit;
    text-decoration: none;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--sky);
}

.dropdown {
    position: absolute;
    top: 22px;
    left: -16px;
    background: var(--navy-deep);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px;
    min-width: 170px;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.has-drop:hover .dropdown,
.has-drop.touch-open .dropdown {
    display: flex;
}

.dropdown a {
    padding: 9px 12px;
    border-radius: 4px;
    opacity: 0.85;
}

.dropdown a:hover {
    background: rgba(63, 193, 255, 0.1);
    opacity: 1;
}

.nav-cta {
    background: var(--sky);
    color: var(--black);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition:
        background 0.2s,
        transform 0.2s;
}

.nav-cta:hover {
    background: #fff;
    transform: translateY(-1px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    display: block;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--navy-deep);
    border-top: 1px solid var(--line);
}

.mobile-menu a {
    padding: 16px 28px;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
}

.mobile-menu.open {
    display: flex;
}

@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .burger {
        display: flex;
    }
}

.pitch-lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}
/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero2 {
    height: 49vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    z-index: 5;
}

#homepagehero {
    height: 40vh;
    background-image: linear-gradient(-90deg, #fff, #a2dcff);
}

#homepageherocontent {
    padding-bottom: 40px;
    margin-top: 140px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
}

.hero-content h4 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 22px;
    color: #fff;
}

.hero-content h3 {
    margin-top: 178px;
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

#title2 {
    color: #fff;
}

.hero-content p {
    margin-top: 38px;
    margin-bottom: 24px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgb(185, 185, 185);
}

#ab {
    font-size: 1.7rem;
}

#herobtn {
    padding: 5px 0;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--sky);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
    border-radius: 4px;
}

.btn:hover {
    background: var(--sky-dim);
}

.heroimgdiv::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.heroimg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.heroimg2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ===== RESPONSIVE for hero ===== */

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3rem;
        padding: 0 8px;
    }

    .hero-content p {
        padding: 0 30px;
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    #ab {
        padding: 0 30px;
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .btn {
        padding: 12px 30px;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    #abhero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.5);
        z-index: 2;
    }
}

@media (max-width: 600px) {
    /* ================= HERO MOBILE DESIGN ================= */

    #hero {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding: 90px 18px 40px;
        background: #fff;
    }

    #heroimgdiv {
        width: 100%;
        margin-bottom: 80px;
        z-index: 2;
    }

    #heroimgdiv::after {
        background: rgba(0, 0, 0, 0);
        z-index: 2;
    }

    #heroimg {
        margin-top: 137px;
        width: 100%;
        padding: 0 10px;
        border-radius: 16px;
        object-fit: cover;
        max-height: 240px;
    }

    #hero-content {
        text-align: center;
    }

    .hero-content {
        z-index: 2;
    }

    #hero-content h3 {
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1.2;
        color: #111;
    }

    #hero-content p {
        font-size: 0.95rem;
        color: #444;
        margin-top: 8px;
        letter-spacing: 1px;
    }

    #herobtn a {
        color: #000;
    }

    #herobtn::after {
        border: 2px solid #000;
    }

    #herobtn:hover a {
        color: #fff;
    }

    /*
    #herobtn {
        display: block;
        margin-top: 15px;
        background: var(--sky-dim);
        color: white;
        text-align: center;
        padding: 38px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
    }
*/
}

@media (max-width: 500px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 1rem 0rem 7rem 0rem;
    text-align: center;
    background: var(--navy-deep);
}

.services-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-content: center;
    align-items: center;
    text-align: center;
}

/* CARD */
.service-card img {
    width: 100%;
    height: 68vh;
    margin-bottom: 2rem;
    border-radius: 7px;
    align-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    max-width: 100%;
    text-align: center;
}

.service-card a {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.bottom-img {
    padding-top: 4.1rem;
    margin-bottom: -0.3rem;
    width: 100%;
}

/* ===== RESPONSIVE for services ===== */
@media (max-width: 900px) {
    .services {
        padding: 4rem 4rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-card p {
        max-width: 100%;
    }

    .service-card img {
        height: auto;
    }

    .bottom-img {
        display: none;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 15rem 6rem 0rem 3rem;
    background: rgba(6, 15, 38, 0.81);
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
    padding-bottom: 7rem;
}

.about-container-index {
    max-width: 1200px;
    margin: -7rem auto 0 auto;
    align-items: center;
    gap: 6rem;
    padding-bottom: 8rem;
}

.about-container-index2 {
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 6rem;
    padding-bottom: 8rem;
}

#about-container-index2 {
    padding-bottom: 3rem;
}

.about-container-scout2 {
    max-width: 1100px;
    margin: 0 auto;
    text-align: end;
    gap: 6rem;
    padding-bottom: 8rem;
}

#path-timeline {
    padding-top: 3rem;
}

#about-container-scout2 p {
    max-width: 1100px;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}

.about-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    color: #000;
}

.about-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    color: #000;
}

#about-texth4 {
    font-size: 1.4rem;
}

.about-text h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 880px;
}

#apply_subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    padding: 0 160px;
    text-align: center;
}

#applycards {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

#applycards a {
    width: 70%;
    align-self: center;
    text-align: center;
}

.prog-img {
    height: 260px;
    width: 99.3%;
    background-size: contain;
    background-position: center;
}

.about-league-text {
    text-align: center;
    color: #000;
}

.about-league-text span {
    font-weight: bolder;
}

.about-league-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    width: 100%;
    padding-bottom: 45px;
}

.about-league-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
}

.about-league-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    letter-spacing: 1px;
    color: #e0dada;
}

/* ===== CORE PILLARS ===== */
.pillars-section {
    padding: 6rem 2rem;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    color: #000;
}

.section-title span {
    color: var(--sky);
}

.pillars-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.4rem 1.6rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: #fff3e8;
    color: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.pillar-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.pillar-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.9rem;
    }
}

.about-text ul {
    padding-top: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cccccc;
    gap: 4rem;
    max-width: 480px;
}

.about-text ul li {
    padding-bottom: 10px;
    list-style: none;
}

.about-text a {
    margin-bottom: 4rem;
}

#indknow {
    margin-bottom: 0rem;
}

#about-textpt1 {
    max-width: 100%;
    width: 100%;
}

#about-textpt2 {
    color: #e0dada;
    max-width: 84%;
    width: 100%;
    justify-self: center;
}

#faqhead {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 3.5rem;
    margin-top: -2rem;
    letter-spacing: 1.7px;
    color: #fff;
}

#faqhead span {
    color: var(--sky);
}

.about-image img {
    width: 80%;
    height: 83vh;
    display: block;
    border-radius: 10px;
}

.about-image2 img {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* ===== RESPONSIVE for about ===== */
@media (max-width: 900px) {
    .about {
        padding: 12rem 3rem 6rem 3rem;
    }

    #apply_subtitle {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: #fff;
        padding: 0 0px;
        text-align: center;
    }

    .prog-img {
        background-size: cover;
    }

    .prog-img2 {
        background-position: left;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text h3 {
        text-align: center;
    }

    .about-text h4 {
        text-align: center;
    }

    .about-text h5 {
        text-align: center;
    }

    .about-text a {
        text-align: center;
        width: 100%;
    }

    .about-text p {
        max-width: 100%;
        text-align: center;
    }

    #about-textpt1 {
        max-width: 100%;
        width: 100%;
    }

    .pillars ul {
        display: block;
    }

    .pillars ul li {
        padding-bottom: 24px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-width: 360px;
        margin: 0 auto;
        display: block;
    }

    #faqhead {
        text-align: center;
        font-size: 1.7rem;
        font-weight: 900;
        letter-spacing: 1.2px;
        margin-top: -2rem;
    }

    .about-image2 img {
        width: 100%;
        height: auto;
        max-width: 360px;
        margin: 0 auto;
        display: block;
    }

    #about-textpt2 {
        max-width: 100%;
        width: 100%;
    }
}

/* ---------- PARTNER CTA ---------- */
.partner-cta {
    background: var(--sky);
    color: var(--black);
    text-align: center;
    padding: 100px 0;
}

.partner-cta h2 {
    font-size: clamp(32px, 5.5vw, 58px);
    color: var(--black);
}

#cta_h2 {
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 0.95;
    color: #000;
}

.partner-cta p {
    max-width: 560px;
    margin: 20px auto 32px;
    font-size: 17px;
    line-height: 1.6;
}

.button {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 3px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition:
        transform 0.2s,
        background 0.2s,
        color 0.2s;
}

.btn-primary {
    background: var(--sky);
    color: var(--black);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1.5px solid rgba(247, 249, 252, 0.35);
    color: var(--white);
}

.partner-cta .btn-primary {
    background: var(--black);
    color: var(--white);
}

.partner-cta .btn-primary:hover {
    background: var(--navy);
}

.cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-cta .btn-ghost {
    border-color: rgba(5, 6, 8, 0.4);
    color: var(--black);
}

.partner-cta .btn-ghost:hover {
    border-color: var(--black);
    color: var(--navy);
}

.btn-ghost:hover {
    border-color: var(--sky);
    color: var(--sky);
    transform: translateY(-2px);
    background: transparent;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(21, 21, 21, 0.69);
    border-top: 2px solid var(--line);
    padding: 64px 0 32px;
    position: relative;
    z-index: 1;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.foot-brand .logo {
    margin-bottom: 16px;
}

.foot-brand p {
    font-size: 14.5px;
    color: rgba(247, 249, 252, 0.6);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 6px;
    transition: transform 0.7s ease;
}

.foot-brand p a {
    color: inherit;
    text-decoration: none;
}

.foot-brand p a:hover {
    color: rgb(237, 241, 247);
}

.foot-col h4 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 18px;
}

.foot-col a {
    display: block;
    font-size: 14.5px;
    color: rgba(247, 249, 252, 0.7);
    margin-bottom: 12px;
    transition: color 0.2s;
    text-decoration: none;
}

.foot-col a:hover {
    color: var(--sky);
}

.foot-socials {
    display: flex;
    gap: 14px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.foot-socials a {
    font-size: 13px;
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 20px;
    margin-bottom: 0;
}

#tik:hover {
    border-color: white;
    color: #000;
    background: white;
}

#yt:hover {
    border-color: red;
    color: white;
    background: red;
}

#gram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
    border: 1.7px solid #000;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: rgba(247, 249, 252, 0.45);
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 860px) {
    .foot-grid {
        display: flex;
        flex-direction: column;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 12rem 4rem 6rem 4rem;
    background: #fffcf7;
    z-index: 1;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
}

.contact-form {
    font-size: 2rem;
    font-weight: 700;
    margin-left: 1rem;
}

.contact-form h2 {
    color: var(--sky-dim);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #bfc3cf;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--sky);
}

.contact-form button {
    width: fit-content;
    padding: 12px 28px;
    background: var(--sky);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: var(--sky-dim);
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--sky-dim);
    font-weight: 700;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.7rem;
}

#locay {
    display: block;
}

#locay p {
    color: var(--sky);
}

.info-item .icon {
    width: 42px;
    height: 42px;
    border: 1px solid #7bc043;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.info-item .icon i {
    font-size: 1.3rem;
}

.info-item small {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #333;
}

.info-item a {
    text-decoration: none;
    font-size: 1rem;
    color: var(--sky);
    margin-top: 4px;
}

.info-item iframe {
    border-radius: 14px;
    margin-left: -50px;
    margin-top: 14px;
}

.socials p {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--sky);
    border: 1.9px solid var(--sky);
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s;
}

#yt:hover {
    background: red;
    color: #fff;
    border: 1.7px solid red;
}

#in:hover {
    background: #25d366;
    color: #fff;
    border: 1.7px solid #25d366;
}

#insta:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
    border: 1.7px solid white;
}

#tik:hover {
    background: #000;
    color: #fff;
    border: 1.7px solid #000;
}

/* ===== RESPONSIVE for contact ===== */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 500px) {
    .contact-section {
        padding: 5rem 2rem;
    }
    
    #cemail {
        font-size: 14px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 1.6rem;
    }

    .info-item iframe {
        margin-left: -50px;
        width: 310px;
        height: 270px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 88%;
        padding: 14px 16px;
    }
}

#features {
    padding-top: 50px;
    padding-bottom: 170px;
}

.feature-row {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.feature-col {
    flex-basis: 25%;
    text-align: center;
}

abbr {
    text-decoration: none;
}

.feature-col img {
    width: 100px;
}

.feature-col h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 1100px) {
    .feature-col {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .feature-row {
        display: block;
        justify-content: space-between;
    }
}

.fpagenavbar {
    width: 100%;
    background: #fff;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    height: 24vh;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fpagelogo {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 4px;
    border-radius: 9px;
    border-bottom: -7px;
    width: 3rem;
}

.fpagenav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.fpagenav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 300;
    font-size: 14px;
}

.fpagenav-links a:hover {
    color: var(--sky);
}

/* HEADER */
.page-header {
    text-align: center;
    padding: 12rem 20px 40px 20px;
    background: rgba(6, 15, 38);
    position: relative;
    z-index: 1;
}

.section-tag {
    color: var(--sky);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 12px 0;
}

.page-header h1 span {
    color: var(--sky);
}

.subtitle {
    color: #b5b5b5;
}

/* CONTENT */
.content {
    padding: 60px 20px;
    background: rgba(6, 15, 38);
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
}

/* IMAGE CARD */
.image-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    width: 93%;
}

.image-card img {
    width: 100%;
    display: block;
}

.name-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--sky);
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
}

/* VIDEO SECTION */
.video-section h3 {
    font-size: 24px;
    font-weight: 800;
}

.video-section h3 span {
    color: var(--sky);
}

.video-section p {
    margin: 12px 0 20px;
    color: #555;
    max-width: 420px;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Direction variants */
.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

/* Slight delay utilities */
.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* ===== FOUNDER QUOTE SECTION ===== */
#fbody {
    background: var(--black);
}

.founder-quote {
    padding: 20px 20px;
    background: rgba(6, 15, 38);
    position: relative;
    z-index: 1;
}

.quote-card {
    background: rgba(6, 15, 38);
    z-index: 1;

    max-width: 900px;
    margin: auto;
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.29);
    position: relative;
}

.quote-icon {
    width: 42px;
    height: 42px;
    background: rgb(50, 66, 108);
    color: var(--sky);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.quote-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #e3e3e3;
    margin-bottom: 22px;
}

.quote-text .highlight {
    color: var(--sky);
    font-weight: 700;
}

.quote-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid #e6e6e6;
}

.quote-footer img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-footer strong {
    font-size: 0.95rem;
}

.quote-footer span {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive */
@media (max-width: 600px) {
    .quote-card {
        padding: 40px 25px;
    }

    .quote-text p {
        font-size: 0.98rem;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 900px) {
    .founder-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .founder-text iframe {
        width: 560px;
    }

    .founder-text h2 {
        text-align: center;
    }

    .founder-text p {
        max-width: 100%;
        text-align: center;
    }

    .nav-container {
        height: 23vh;
        margin-top: -47px;
        margin-bottom: 59px;
    }

    .fpagelogo {
        margin-left: -10px;
    }

    .fpagelogo img {
        width: 5.5rem;
    }

    .fpagenav-links {
        z-index: 1000;
    }
}

/* ===== ACADEMY SECTION ===== */
.academy-section {
    padding: 13rem 2rem 6rem 2rem;
    background: rgba(6, 15, 38, 0.81);
    text-align: center;
    position: relative;
    z-index: 1;
}

.academy-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.academy-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #fff;
}

.academy-title span {
    color: var(--sky);
}

.academy-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: #fff;
}

/* Card */
.academy-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: var(--navy-deep);
    padding: 2.2rem 2.4rem;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.17);
    text-align: left;
    z-index: 10;
}
.academy-card ul {
    padding-left: 1.2rem;
}
.indknow {
    text-align: center;
}

.dice {
    font-size: 0.9rem;
    color: #dadada;
    padding-top: 10px;
    line-height: 30px;
}

.academy-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #dadada;
}

.payplan p {
    padding-top: 20px;
}

#academy-cardp {
    margin-top: 1.2rem;
}

#academy-cardp strong {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Phase Section */
.academy-phase {
    max-width: 900px;
    margin: auto;
    background: rgba(6, 15, 38, 0.81);
}

.phase-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 3rem;
}

.phase-subheader {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.phase-badge {
    background: var(--sky);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
}

.phase-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.phase-header h3 span {
    color: var(--sky);
}

/* Focus Areas */
.academy-card h4 {
    margin-top: 1.6rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
}
.academy-card h2 {
    color: #fff;
}
.academy-card h5 {
    color: #fff;
}

#academy-cardh4 {
    font-size: 1.3rem;
}

.focus-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.6rem;
}

.focus-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #dadada;
}

.focus-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sky);
    font-weight: 700;
}

.focus-list2 {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.9rem;
}

.focus-list2 li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: #fff;
}

.focus-list2 li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sky);
    font-weight: 700;
}

/* Footer Note */
.phase-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .academy-title {
        font-size: 1.3rem;
    }

    .academy-subtitle {
        font-size: 0.9rem;
        font-weight: 400;
    }

    .academy-card {
        padding: 1.8rem;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .phase-header h3 {
        font-size: 1.3rem;
    }
}

/* ===== INFO SECTION ===== */
.academy-info-section {
    padding: 6rem 2rem;
    background: var(--navy-deep);
    background: rgba(6, 15, 38, 0.81);
    position: relative;
    z-index: 1;
}

/* Header */
.academy-info-header {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #fff;
}

.academy-info-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.academy-info-header h2 span {
    color: var(--sky);
}

.academy-info-header p {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #666;
}

.academy-info-header a {
    font-size: 4.3rem;
    padding-left: 10px;
    color: #fff;
    margin-bottom: -19px;
}

#player-profile {
    margin-bottom: 0.5rem;
    padding-top: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-header2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.phase-header2 h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.phase-header2 h3 span {
    color: var(--sky);
}

/* Grid */
.academy-info-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    padding-bottom: 4rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

/* Cards */
.info-card {
    background: var(--navy-deep);
    padding: 2rem 2.2rem;
    border-radius: 14px;
    border: 1px solid var(--navy-deep);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.info-card p {
    font-size: 12.5px;
    margin-top: 100px;
}

.info-icon {
    font-size: 1.6rem;
    color: var(--sky);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

/* Lists */
.info-card ul {
    padding-left: 1rem;
    margin-bottom: 1.4rem;
}

.info-card ul li {
    font-size: 0.9rem;
    color: #dadada;
    margin-bottom: 0.4rem;
}

/* Timetable & Calendar */
.timetable div,
.calendar div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #dadada;
}

#frequecy {
    margin-top: 40px;
}

#trfr {
    width: 50%;
    text-align: center;
}

.timetable strong,
.calendar strong {
    font-weight: 700;
    color: #fff;
    text-align: end;
}

/* Buttons */
.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    margin-top: 2rem;
    border-radius: 999px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s;
}

.outline-btn:hover {
    background-color: var(--sky);
    border: 1px solid var(--sky);
    color: #fff;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    background: var(--sky);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

/* Kits Card */
.kits-card {
    max-width: 650px;
    margin: 4rem auto 0;
    padding: 3rem 2.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
    text-align: center;
}

.kits-icon {
    font-size: 2rem;
    color: var(--sky);
    margin-bottom: 1rem;
}

.kits-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.kits-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.6rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .academy-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================== PROFILE PAGE =================================== */

.profile-section {
    margin-top: 190px;
    text-align: center;
}

.players-grid {
    padding: 20px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.player-card {
    position: relative;
    background: #fff;
    border: 0px solid var(--sky);
    border-radius: 24px;
    overflow: hidden;
    padding: 18px;
    min-height: 320px;
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.3);
}

/* TOP */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.academy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.academy-text h2 {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 900;
    color: var(--sky);
}

.academy-text span {
    color: var(--sky);
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: -4px;
}

.profile-number {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--sky);
    line-height: 1;
}

.card-main {
    display: flex;
    gap: 4rem;
}

/* IMAGE */
.player-image {
    position: relative;
    border: 3px solid var(--sky);
    border-radius: 18px;
    overflow: hidden;
    height: 340px;
    margin-bottom: 20px;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.number-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--sky);
    width: 140px;
    height: 140px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px;
}

.number-tag span {
    font-size: 2.7rem;
    font-weight: 900;
    color: #000;
}

/* NAME */
.player-name {
    margin-bottom: 18px;
    display: flex;
}

.player-name h1 {
    font-size: 1.4rem;
    line-height: 0.9;
    font-weight: 900;
    color: var(--sky);
}

.player-name h1 span {
    display: block;
    padding-top: 4px;
    color: var(--sky);
}

/* DETAILS */
.player-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail {
    display: flex;
    justify-content: space-between;
    gap: 2.8rem;
    align-items: center;
    border-top: 2px solid #fff;
    padding-top: 12px;
}

.detail-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sky);
    font-weight: 700;
    text-transform: uppercase;
}

.detail-left i {
    font-size: 24px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 900;
}

@media (max-width: 768px) {
    .player-card {
        min-height: auto;
    }

    .player-name h1 {
        font-size: 2.4rem;
    }

    .profile-number {
        font-size: 3rem;
    }
}
