/* =========================================================
   QEVORA
   Premium Dark Digital Company Website
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050816;
    color: #f5f7ff;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --bg: #050816;
    --bg-soft: #080d20;
    --card: rgba(255, 255, 255, 0.045);
    --border: rgba(255, 255, 255, 0.10);

    --text: #f5f7ff;
    --muted: #9ca6bf;

    --accent: #7c5cff;
    --accent-2: #00d9ff;

    --max-width: 1200px;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    width: 100%;
    max-width: var(--max-width);
    margin: auto;

    padding: 24px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 20;
}

.logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-2);
}

.navbar nav {
    display: flex;
    gap: 30px;
}

.navbar nav a {
    color: #aab3ca;
    font-size: 14px;
    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: white;
}

.nav-btn {
    border: 1px solid rgba(124, 92, 255, 0.5);
    padding: 11px 18px;
    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 850px;
    max-width: var(--max-width);
    margin: auto;

    padding: 100px 30px 130px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;

    position: relative;
}

.hero::before {
    content: "";
    position: absolute;

    width: 550px;
    height: 550px;

    left: -250px;
    top: 100px;

    background: rgba(124, 92, 255, 0.10);
    filter: blur(100px);
    border-radius: 50%;

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.035);

    padding: 8px 13px;
    border-radius: 30px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;

    color: #b5bdd1;
}

.badge span {
    width: 7px;
    height: 7px;
    background: #00e7a4;
    border-radius: 50%;

    box-shadow: 0 0 12px #00e7a4;
}

.firebase-live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #b5bdd1;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.firebase-live-status strong {
    color: #f0b95a;
    font-weight: 600;
}

.firebase-live-status[data-state="connected"] strong {
    color: #00e7a4;
}

.firebase-live-status[data-state="error"] strong {
    color: #f27b87;
}

.hero h1 {
    margin-top: 28px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.98;

    letter-spacing: -4px;
    font-weight: 600;
}

.hero h1 strong {
    display: block;

    background: linear-gradient(
        90deg,
        #ffffff,
        #7c5cff,
        #00d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero p {
    max-width: 600px;

    margin-top: 30px;

    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 35px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--accent),
        #5b7cff
    );

    box-shadow:
        0 10px 30px rgba(124, 92, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(124, 92, 255, 0.38);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: #dce2f2;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}


/* =========================================================
   STATS
========================================================= */

.stats {
    display: flex;
    gap: 55px;

    margin-top: 60px;
}

.stats div {
    display: flex;
    flex-direction: column;
}

.stats b {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
}

.stats small {
    color: #737d98;
    margin-top: 3px;
    font-size: 12px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    min-height: 520px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.glow {
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124, 92, 255, 0.30),
            rgba(0, 217, 255, 0.10),
            transparent 70%
        );

    filter: blur(25px);
}

.ai-orb {
    width: 310px;
    height: 310px;

    border-radius: 50%;

    position: relative;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #8f6cff 8%,
            #4c36a5 35%,
            #101637 68%,
            #050816 100%
        );

    box-shadow:
        0 0 50px rgba(124, 92, 255, 0.45),
        inset -30px -30px 70px rgba(0, 0, 0, 0.6);

    animation: floatOrb 5s ease-in-out infinite;
}

.orb-core {
    position: absolute;

    width: 80px;
    height: 80px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #ffffff,
            #00d9ff 20%,
            #7c5cff 60%,
            transparent 72%
        );

    filter: blur(2px);

    box-shadow:
        0 0 60px #00d9ff;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    padding: 15px 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(12, 17, 38, 0.75);

    backdrop-filter: blur(15px);

    border-radius: 12px;

    color: #cdd4e8;

    font-size: 13px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.3);

    display: flex;
    align-items: center;
    gap: 10px;

    z-index: 5;
}

.floating-card span {
    color: var(--accent-2);
}

.floating-card b {
    font-size: 9px;
    color: #00e7a4;
    letter-spacing: 1px;
}

.card-one {
    top: 80px;
    right: 5px;
}

.card-two {
    bottom: 80px;
    left: 5px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    max-width: var(--max-width);

    margin: auto;

    padding: 120px 30px;
}

.section-heading span {
    color: var(--accent-2);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 18px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 500;
}

.section-heading h2 strong {
    color: #7d88a5;
}

.section-heading p {
    max-width: 650px;

    margin-top: 20px;

    color: var(--muted);
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    border-top: 1px solid var(--border);
}

.about-text {
    padding-top: 45px;
}

.about-text p {
    color: var(--muted);

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 25px;
}

.about-text strong {
    color: white;
}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 60px;
}

.service {
    min-height: 300px;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    transition: 0.35s ease;

    position: relative;

    overflow: hidden;
}

.service::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    top: -70px;
    right: -70px;

    background: rgba(124, 92, 255, 0.12);

    filter: blur(35px);

    border-radius: 50%;
}

.service:hover {
    transform: translateY(-7px);

    border-color:
        rgba(124, 92, 255, 0.45);

    background:
        rgba(124, 92, 255, 0.06);
}

.number {
    color: #59627d;

    font-size: 11px;

    letter-spacing: 1px;
}

.service-icon {
    margin-top: 55px;

    font-size: 28px;

    color: var(--accent-2);
}

.service h3 {
    margin-top: 18px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 23px;
}

.service p {
    margin-top: 12px;

    color: #8993ad;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects {
    border-top: 1px solid var(--border);
}

.project-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 60px;
}

.project {
    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    background: rgba(255,255,255,0.025);

    transition: 0.3s ease;
}

.project:hover {
    transform: translateY(-6px);
}

.project-top {
    padding: 18px 20px;

    display: flex;
    justify-content: space-between;

    color: #707b97;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.project-image {
    height: 260px;

    margin: 0 10px;

    border-radius: 12px;

    background:
        radial-gradient(
            circle,
            rgba(124, 92, 255, 0.5),
            #0a1026 55%,
            #050816
        );

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.project-orb {
    width: 130px;
    height: 130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 30%,
            white,
            #7c5cff 15%,
            #22185c 55%,
            transparent 70%
        );

    box-shadow:
        0 0 60px rgba(124, 92, 255, 0.6);

    animation: floatOrb 4s ease-in-out infinite;
}

.project-image.second {
    background:
        linear-gradient(
            135deg,
            #08122c,
            #10194a
        );
}

.grid-lines {
    width: 100%;
    height: 100%;

    background-image:
        linear-gradient(
            rgba(0,217,255,0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,217,255,0.12) 1px,
            transparent 1px
        );

    background-size: 30px 30px;

    transform: perspective(300px)
        rotateX(55deg)
        scale(1.5);
}

.project-image.third {
    background:
        linear-gradient(
            145deg,
            #0b112b,
            #151139
        );
}

.bars {
    display: flex;

    align-items: end;

    gap: 14px;

    height: 150px;
}

.bars i {
    display: block;

    width: 28px;

    border-radius: 5px 5px 0 0;

    background:
        linear-gradient(
            to top,
            #7c5cff,
            #00d9ff
        );

    box-shadow:
        0 0 20px rgba(0,217,255,0.25);
}

.bars i:nth-child(1) {
    height: 55px;
}

.bars i:nth-child(2) {
    height: 100px;
}

.bars i:nth-child(3) {
    height: 75px;
}

.bars i:nth-child(4) {
    height: 140px;
}

.project h3 {
    padding: 24px 20px 8px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;
}

.project p {
    padding: 0 20px 25px;

    color: #8993ad;

    font-size: 14px;
}


/* =========================================================
   TEAM
========================================================= */

.team-section {
    border-top: 1px solid var(--border);
}

.team-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 60px;
}

.team-card {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: rgba(255,255,255,0.025);

    transition: 0.35s ease;
}

.team-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(124, 92, 255, 0.45);
}

.team-card-photo {
    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(124,92,255,0.28),
            #0a1026 65%,
            #050816
        );
}

.team-card-photo img,
.team-card-photo .team-member-photo,
.team-card-photo .team-member-image,
.team-card-photo .team-photo {
    width: 100%;
    height: 100%;

    aspect-ratio: 3 / 4;

    display: block;

    object-fit: cover;
    object-position: center top;
}

.team-placeholder {
    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-family: "Space Grotesk", sans-serif;

    font-size: 45px;

    color: white;

    border: 1px solid
        rgba(255,255,255,0.15);

    background:
        linear-gradient(
            135deg,
            #7c5cff,
            #00d9ff
        );

    box-shadow:
        0 0 60px rgba(124,92,255,0.35);
}

.team-card-content {
    padding: 25px;
}

.team-role {
    color: var(--accent-2);

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.team-card h3 {
    margin-top: 8px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;
}

.team-card p {
    margin-top: 10px;

    color: #8993ad;

    font-size: 14px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    max-width: 1000px;

    margin: 100px auto;

    padding: 110px 30px;

    text-align: center;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.contact > span {
    color: var(--accent-2);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;
}

.contact h2 {
    margin-top: 20px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 6vw, 75px);

    line-height: 1;

    letter-spacing: -4px;
}

.contact h2 strong {
    display: block;

    color: #7c88a5;
}

.contact p {
    margin: 25px auto 35px;

    max-width: 600px;

    color: var(--muted);
}


/* =========================================================
   FORMS
========================================================= */

.form-section {
    max-width: 800px;
}

.form-section form {
    margin-top: 50px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #c9d0e2;

    font-size: 13px;

    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: rgba(255,255,255,0.035);

    color: white;

    padding: 15px 16px;

    outline: none;

    transition: 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group select option {
    background: #0a1026;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #68728d;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(124,92,255,0.10);
}

.form-message {
    margin-top: 18px;

    color: #00e7a4;

    font-size: 13px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    max-width: var(--max-width);

    margin: auto;

    padding: 70px 30px 40px;

    text-align: center;
}

.footer-logo {
    font-family: "Space Grotesk", sans-serif;

    font-size: 28px;

    font-weight: 700;

    letter-spacing: 2px;
}

footer p {
    margin-top: 12px;

    color: #69738e;

    font-size: 13px;
}

.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;
}

.footer-links a {
    color: #8e98b0;

    font-size: 12px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

footer small {
    display: block;

    margin-top: 30px;

    color: #4e5872;

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .navbar {
        padding: 20px;
    }

    .navbar nav {
        gap: 15px;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 70px;

        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 450px;
    }

    .about {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .about-text {
        padding-top: 0;
    }

    .services-grid,
    .project-grid,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 650px) {

    .navbar {
        flex-wrap: wrap;

        justify-content: center;

        gap: 18px;
    }

    .navbar nav {
        order: 3;

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }

    .hero {
        padding:
            55px 20px
            90px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero p {
        font-size: 14px;
    }

    .buttons {
        justify-content: center;
    }

    .stats {
        gap: 25px;

        width: 100%;
    }

    .hero-visual {
        min-height: 370px;
    }

    .ai-orb {
        width: 240px;
        height: 240px;
    }

    .glow {
        width: 300px;
        height: 300px;
    }

    .card-one {
        top: 30px;
        right: 0;
    }

    .card-two {
        bottom: 30px;
        left: 0;
    }

    .section {
        padding:
            80px 20px;
    }

    .section-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .services-grid,
    .project-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-photo {
        height: auto;
    }

    .contact {
        margin:
            50px 20px;

        padding:
            80px 20px;
    }

    .contact h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* ==========================================
   QEVORA CONTACT MODAL
   ========================================== */

.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;

    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.75);
}

.contact-modal.active {
    display: flex;
}

.contact-modal-box {
    position: relative;

    width: 100%;
    max-width: 520px;
    max-height: 90vh;

    overflow-y: auto;

    padding: 35px;

    box-sizing: border-box;

    background: #050816;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: white;

    font-size: 28px;
    line-height: 40px;

    cursor: pointer;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contact-modal-box h2 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.contact-modal-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.contact-modal-box input,
.contact-modal-box textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.05);
    color: white;

    font-family: inherit;
    font-size: 15px;

    outline: none;
}

.contact-modal-box input:focus,
.contact-modal-box textarea:focus {
    border-color: rgba(255, 255, 255, 0.35);
}

.contact-modal-box textarea {
    resize: vertical;
}

#quick-contact-status {
    margin: 5px 0 0;
    text-align: center;
    font-size: 14px;
}