/* =====================================================
   JOYMORE WEBSITE
   MAIN STYLESHEET
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050b12;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   NAVBAR
===================================================== */

/* =====================================================
   PROFESSIONAL MOBILE NAVBAR
===================================================== */

.navbar {
    position: relative;
    padding: 18px 20px;
}

.logo {
    position: relative;
    z-index: 2001;
}

.menu-toggle {
    display: flex !important;

    width: 44px;
    height: 44px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 217, 255, 0.35);
    border-radius: 8px;

    background: rgba(7, 17, 26, 0.95);
    color: #00d9ff;

    font-size: 23px;
    line-height: 1;

    cursor: pointer;

    position: relative;
    z-index: 2001;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(0, 217, 255, 0.08);
    border-color: #00d9ff;
}

.menu-toggle:active {
    transform: scale(0.94);
}

.nav-button {
    display: none !important;
}


/* MOBILE DROPDOWN */

.nav-links {
    position: absolute;

    top: calc(100% + 8px);
    left: 15px;
    right: 15px;

    display: flex !important;
    flex-direction: column;

    gap: 4px;

    padding: 10px;

    background: rgba(7, 17, 26, 0.98);

    border: 1px solid rgba(0, 217, 255, 0.2);

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1500;
}


/* OPEN MENU */

.nav-links.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}


/* MENU ITEMS */

.nav-links li {
    width: 100%;
}

.nav-links a {
    display: block;

    width: 100%;

    padding: 14px 16px;

    border-radius: 8px;

    color: #aab5c2;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-links a:hover {
    background: rgba(0, 217, 255, 0.07);
    color: #00d9ff;
}


/* LET'S TALK */

.nav-button {
    padding: 11px 20px;

    border: 1px solid #00d9ff;
    border-radius: 6px;

    color: #00d9ff;
    font-size: 14px;

    transition: 0.3s ease;
}

.nav-button:hover {
    background: #00d9ff;
    color: #050b12;
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 217, 255, 0.35);
    border-radius: 8px;

    background: rgba(5, 11, 18, 0.9);
    color: #00d9ff;

    font-size: 24px;
    cursor: pointer;

    z-index: 2000;
}


/* =====================================================
   MOBILE HERO
===================================================== */

.hero {
    min-height: auto;

    padding:
        140px 20px 80px;
}

.hero-content {
    max-width: 100%;
}

.status {
    font-size: 9px;

    letter-spacing: 1.5px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(40px, 12vw, 58px);

    letter-spacing: -1.5px;

    line-height: 1.08;

    margin-bottom: 22px;
}

.hero p {
    font-size: 15px;

    line-height: 1.75;
}

.hero-buttons {
    flex-direction: column;

    width: 100%;

    gap: 12px;

    margin-top: 30px;
}

.btn,
.btn-outline {
    width: 100%;

    max-width: 320px;

    min-height: 50px;
}

.hero-tech {
    margin-top: 35px;

    gap: 8px;
}

.hero-tech span {
    padding: 6px 10px;

    font-size: 10px;
}

/* =====================================================
   GENERAL SECTION
===================================================== */

.about,
.services,
.projects,
.technology {
    max-width: 1200px;

    margin: auto;

    padding: 110px 25px;

    position: relative;
}


/* SECTION DIVIDER */

.about::before,
.services::before,
.projects::before,
.technology::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 70px;
    height: 1px;

    transform: translateX(-50%);

    background: #00d9ff;

    opacity: 0.35;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.4);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;

    position: relative;
    z-index: 1;
}

.section-heading > span {
    color: #00d9ff;

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: bold;
}

.section-heading h2 {
    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.1;

    margin: 15px 0;
}

.section-heading h2 strong {
    color: #00d9ff;
}

.section-heading p {
    color: #8996a5;
    font-size: 16px;
}


/* =====================================================
   ABOUT
===================================================== */

/* =====================================================
   ABOUT
===================================================== */

about-content {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 70px;

    align-items: start;
}

.about-text {
    max-width: 650px;
}

.about-text h3 {
    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 22px;
}

.about-text p {
    color: #8996a5;

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 18px;
}

.about-text p:last-child {
    margin-bottom: 0;
}


/* ABOUT HIGHLIGHTS */

.about-highlights {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.about-highlight {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.about-highlight:hover {
    border-color: rgba(0, 217, 255, 0.6);

    background:
        rgba(0, 217, 255, 0.04);

    transform: translateX(6px);
}

.about-highlight > span {
    flex-shrink: 0;

    color: #00d9ff;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 1px;
}

.about-highlight h4 {
    margin-bottom: 5px;

    font-size: 16px;

    line-height: 1.3;
}

.about-highlight p {
    color: #8996a5;

    font-size: 13px;

    line-height: 1.6;

    margin: 0;
}
/* =====================================================
   SERVICES
===================================================== */

/* =====================================================
   SERVICES
===================================================== */

.services {
    padding-top: 110px;
    padding-bottom: 110px;
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    max-width: 1100px;

    margin: 0 auto;
}

.service-card {
    position: relative;

    padding: 32px 28px;

    min-height: 230px;

    display: flex;

    flex-direction: column;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;

    backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(0, 217, 255, 0.65);

    background:
        rgba(0, 217, 255, 0.04);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}


/* SERVICE ICON */

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 12px;

    background:
        rgba(0, 217, 255, 0.08);

    border:
        1px solid rgba(0, 217, 255, 0.15);

    font-size: 25px;
}


/* SERVICE TITLE */

.service-card h3 {
    margin-bottom: 10px;

    font-size: 19px;

    line-height: 1.35;
}


/* SERVICE DESCRIPTION */

.service-card p {
    color: #8996a5;

    font-size: 13px;

    line-height: 1.75;

    margin: 0;
}


/* =====================================================
   SERVICE CTA
===================================================== */

.service-cta {
    max-width: 800px;

    margin: 60px auto 0;

    padding: 45px 35px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.06),
            rgba(255, 255, 255, 0.02)
        );

    border:
        1px solid rgba(0, 217, 255, 0.16);

    border-radius: 16px;
}

.service-cta h3 {
    font-size: 28px;

    line-height: 1.3;

    margin-bottom: 10px;
}

.service-cta p {
    max-width: 600px;

    margin: 0 auto 28px;

    color: #8996a5;

    font-size: 14px;

    line-height: 1.7;
}

/* =====================================================
   PROJECTS
===================================================== */

.project-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}

.project-card {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 14px;

    transition: 0.3s ease;

    backdrop-filter: blur(8px);
}

.project-card:hover {
    transform: translateY(-5px);

    border-color: #00d9ff;
}

.project-image {
    width: 100%;
    height: 250px;

    overflow: hidden;

    background: #0d1b27;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-info small {
    color: #00d9ff;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: bold;
}

.project-info h3 {
    margin: 8px 0 10px;

    font-size: 22px;
}

.project-info p {
    color: #8996a5;

    font-size: 14px;

    margin-bottom: 18px;
}

.project-info a {
    color: #00d9ff;

    font-size: 13px;

    font-weight: bold;
}

.projects-button {
    text-align: center;

    margin-top: 45px;
}


/* =====================================================
   TECHNOLOGY
===================================================== */

.technology {
    padding-top: 100px;
    padding-bottom: 100px;
}

.technology .section-heading {
    margin-bottom: 45px;
}

.technology-list {
    max-width: 950px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.technology-list div {
    padding: 11px 19px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.02);

    color: #8996a5;

    font-size: 13px;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.technology-list div:hover {
    border-color: #00d9ff;

    color: #00d9ff;

    background:
        rgba(0, 217, 255, 0.05);

    transform: translateY(-3px);
}

/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    padding: 100px 25px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 217, 255, 0.10),
            transparent 55%
        );

    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.final-cta::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(0, 217, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.final-cta-content {
    position: relative;

    z-index: 1;

    max-width: 750px;

    margin: auto;

    text-align: center;
}

.final-cta-content > span {
    color: #00d9ff;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 3px;
}

.final-cta h2 {
    margin: 15px 0;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;
}

.final-cta h2 strong {
    display: block;

    color: #00d9ff;
}

.final-cta p {
    max-width: 650px;

    margin: 0 auto;

    color: #8996a5;

    font-size: 15px;

    line-height: 1.8;
}

.final-cta-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}
/* =====================================================
   CONTACT
===================================================== */

.contact {
    padding: 110px 25px;

    position: relative;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 217, 255, 0.08),
            transparent 45%
        );
}

.contact::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 70px;
    height: 1px;

    transform: translateX(-50%);

    background: #00d9ff;

    opacity: 0.35;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.4);
}

.contact-grid {
    max-width: 1100px;

    margin: 50px auto 0;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.contact-card {
    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 105px;

    padding: 24px;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;

    backdrop-filter: blur(8px);
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0, 217, 255, 0.6);

    background:
        rgba(0, 217, 255, 0.05);
}

.contact-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(0, 217, 255, 0.08);

    border:
        1px solid rgba(0, 217, 255, 0.15);

    color: #00d9ff;

    font-size: 21px;

    font-weight: bold;
}

.contact-card small {
    display: block;

    color: #00d9ff;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: bold;
}

.contact-card h3 {
    margin: 6px 0;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.3;
}

.contact-card p {
    margin: 0;

    color: #8996a5;

    font-size: 12px;

    line-height: 1.5;
}

.contact-location {
    max-width: 1100px;

    margin: 30px auto 0;

    padding-top: 25px;

    text-align: center;

    color: #8996a5;

    font-size: 13px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}
/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 65px 25px 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    background: #040910;
}

.footer-content {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 45px;

    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 24px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.footer-logo span {
    color: #00d9ff;
}

.footer-brand p {
    color: #8996a5;

    font-size: 13px;

    line-height: 1.8;
}


/* FOOTER LINK COLUMNS */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-links h4 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 11px;

    letter-spacing: 2px;
}

.footer-links a {
    color: #8996a5;

    font-size: 13px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover {
    color: #00d9ff;

    transform: translateX(3px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    max-width: 1200px;

    margin: 45px auto 0;

    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #667382;

    font-size: 11px;

    line-height: 1.6;
}
/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .nav-links {
        gap: 18px;
    }

    .about-content {
        gap: 35px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE SERVICES
===================================================== */

.services {
    padding-top: 85px;
    padding-bottom: 85px;
}

.service-grid {
    grid-template-columns: 1fr;

    gap: 15px;
}

.service-card {
    min-height: auto;

    padding: 25px 22px;
}

.service-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 18px;

    font-size: 23px;
}

.service-card h3 {
    font-size: 18px;
}

.service-card p {
    font-size: 13px;

    line-height: 1.7;
}

.service-cta {
    margin-top: 40px;

    padding: 32px 22px;
}

.service-cta h3 {
    font-size: 24px;
}

.service-cta p {
    font-size: 13px;

    line-height: 1.7;
}

/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 500px) {

    .logo {
        font-size: 21px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero p {
        font-size: 15px;
    }

    .project-image {
        height: 220px;
    }

    .contact-card {
        padding: 20px;

        gap: 15px;
    }

    .contact-card h3 {
        font-size: 14px;

        word-break: break-word;
    }

    .service-cta {
        padding:
            30px 20px;
    }

    .service-cta h3 {
        font-size: 24px;
    }

    .footer-links {
        gap: 15px;
    }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

a:focus-visible,
button:focus-visible {
    outline:
        2px solid #00d9ff;

    outline-offset: 4px;
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}/* =====================================================
   SCROLL TO TOP
===================================================== */

.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 50%;

    background: #07111a;
    color: #00d9ff;

    font-size: 20px;
    font-weight: bold;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;

    z-index: 3000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    background: #00d9ff;
    color: #050b12;

    transform: translateY(-3px);
}


/* =====================================================
   MOBILE SCROLL BUTTON
===================================================== */

@media (max-width: 800px) {

    .scroll-top {
        right: 18px;
        bottom: 18px;

        width: 42px;
        height: 42px;
    }

}
/* =====================================================
   MOBILE CONTACT
===================================================== */

.contact {
    padding: 85px 20px;
}

.contact-grid {
    grid-template-columns: 1fr;

    gap: 14px;

    margin-top: 40px;
}

.contact-card {
    min-height: 95px;

    padding: 20px;

    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    font-size: 19px;
}

.contact-card h3 {
    font-size: 14px;

    word-break: break-word;
}

.contact-card p {
    font-size: 12px;
}

.contact-location {
    margin-top: 25px;

    padding-top: 20px;

    font-size: 12px;
}/* =====================================================
   MOBILE FINAL CTA
===================================================== */

.final-cta {
    padding: 80px 20px;
}

.final-cta-content > span {
    font-size: 9px;

    letter-spacing: 2px;
}

.final-cta h2 {
    font-size: 38px;

    line-height: 1.12;
}

.final-cta p {
    font-size: 14px;

    line-height: 1.75;
}

.final-cta-buttons {
    flex-direction: column;

    gap: 12px;

    margin-top: 28px;
}

.final-cta-buttons .btn,
.final-cta-buttons .btn-outline {
    width: 100%;

    max-width: 320px;
}/* =====================================================
   MOBILE FOOTER
===================================================== */

footer {
    padding: 50px 20px 22px;
}

.footer-content {
    grid-template-columns: 1fr;

    gap: 30px;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    font-size: 22px;
}

.footer-brand p {
    font-size: 13px;

    line-height: 1.75;
}

.footer-links {
    gap: 9px;
}

.footer-links h4 {
    margin-bottom: 5px;
}

.footer-links a {
    font-size: 13px;
}

.footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 6px;

    margin-top: 35px;

    padding-top: 18px;
}/* =====================================================
   SCROLL TO TOP BUTTON
===================================================== */

.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 50%;

    background: rgba(5, 11, 18, 0.9);
    color: #00d9ff;

    font-size: 22px;
    font-weight: bold;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
    
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    background: #00d9ff;
    color: #050b12;

    transform: translateY(-4px);
}/* =====================================================
   SCROLL TO TOP
===================================================== */

.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 217, 255, 0.4);

    border-radius: 50%;

    background: rgba(5, 11, 18, 0.92);

    color: #00d9ff;

    font-size: 22px;
    font-weight: bold;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;

    z-index: 999;
}

.scroll-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    background: #00d9ff;

    color: #050b12;

    transform: translateY(-4px);
}/* =====================================================
   MOBILE NAVBAR FINAL FIX
===================================================== */

@media (max-width: 800px) {

    header {
        position: absolute;
        width: 100%;
    }

    .navbar {
        position: relative;
        min-height: 75px;
        padding: 15px 20px;
    }

    .logo {
        z-index: 2001;
    }

    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 3000;

        flex-shrink: 0;

        width: 44px;
        height: 44px;

        padding: 0;
        margin-left: auto;

        align-items: center;
        justify-content: center;

        cursor: pointer;

        border: 1px solid rgba(0, 217, 255, 0.35);
        border-radius: 8px;

        background: rgba(5, 11, 18, 0.95);
        color: #00d9ff;

        font-size: 23px;
        line-height: 1;
    }

    .nav-links {
        top: 70px;
        left: 15px;
        right: 15px;

        width: auto;

        z-index: 2500;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        color: #ffffff;
    }

    .nav-links a:active {
        background: rgba(0, 217, 255, 0.1);
        color: #00d9ff;
    }

}/* =====================================================
   PROJECTS PAGE
===================================================== */

.projects-page-hero {
    min-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 140px 25px 90px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0, 217, 255, 0.12),
            transparent 45%
        ),
        #050b12;
}

.projects-page-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.projects-page-content h1 {
    font-size: clamp(45px, 7vw, 75px);

    line-height: 1.05;

    margin: 20px 0 25px;
}

.projects-page-content h1 strong {
    display: block;

    color: #00d9ff;
}

.projects-page-content p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #8996a5;

    font-size: 17px;
}

.projects-page {
    padding-top: 100px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    padding: 110px 25px;

    text-align: center;

    position: relative;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 217, 255, 0.09),
            transparent 50%
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.final-cta-content {
    max-width: 800px;

    margin: auto;
}

.final-cta-content > span {
    color: #00d9ff;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 3px;
}

.final-cta h2 {
    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.1;

    margin: 15px 0;
}

.final-cta h2 strong {
    color: #00d9ff;
}

.final-cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #8996a5;

    font-size: 16px;
}

.final-cta-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;
}


/* =====================================================
   SCROLL TO TOP
===================================================== */

.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(0, 217, 255, 0.35);

    border-radius: 8px;

    background: #07111a;

    color: #00d9ff;

    font-size: 20px;

    cursor: pointer;

    z-index: 1000;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s ease;
}

.scroll-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    background: #00d9ff;

    color: #050b12;

    transform: translateY(-3px);
}


/* =====================================================
   PROJECT PAGE MOBILE
===================================================== */

@media (max-width: 800px) {

    .projects-page-hero {
        min-height: 70vh;

        padding:
            120px 20px 70px;
    }

    .projects-page-content h1 {
        font-size: 43px;
    }

    .projects-page-content p {
        font-size: 15px;
    }

    .final-cta {
        padding:
            85px 20px;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons .btn,
    .final-cta-buttons .btn-outline {
        width: 100%;

        max-width: 300px;
    }

    .scroll-top {
        right: 18px;
        bottom: 18px;
    }

}