* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     background:

        radial-gradient(circle at top,

            #1b1b2f 0%,
            #111111 45%,
            #080808 100%);
    color: #f5f5f5;
 font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 8%;

    background: rgba(8,8,8,.55);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e50914;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f5;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e50914;
}

.hero {
    padding-top: 90px;

    min-height: calc(100vh - 90px);

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    color: #9c9c9c;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    box-shadow:0 0 0 transparent;
}

.hero-buttons a,
.hero-buttons button {
    padding: 14px 28px;
    border:1px solid #6366f1;
    border-radius: 8px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    text-decoration: none;
}

.hero-buttons a:hover,
.hero-buttons button:hover {
    background:#6366f1;
    transform: translateY(-3px);
    border-color:#6366f1;
    box-shadow:0 10px 25px rgba(99,102,241,.30);
}



.loading-screen {
    position: fixed;
    inset: 0;

    background: #090909;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
    transition: opacity 0.8s ease;
}

.intro-logo {
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.letter-a,
.letter-k {

    display: inline-block;

    transition: 0.8s ease;
}

.letter-a {
    transform: translateX(100px);
}

.letter-k {
    transform: translateX(-100px);
}


.about {

    max-width: 900px;
    margin: 120px auto;
    padding: 0 30px;

}

.about h2 {
    font-size: 3rem;
    margin-bottom: 25px;

}

.about p {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
}



.projects {
    margin: 120px 8%;
}

.projects h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #151515;
    border-radius: 15px;
    padding: 30px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #e50914;
}

.project-card h3 {
    margin-bottom: 15px;
}

.project-card p {
    color: #b0b0b0;
    line-height: 1.7;
}



.dashboard {

    margin: 120px 8%;
}

.dashboard h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.dashboard-grid {

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.dashboard-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.dashboard-card h3 {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.dashboard-card p {
    font-size: 2rem;
    font-weight: 700;
}
.dashboard-card:hover {
    transform: translateY(-8px);
    /*border-color: #08ee26;*/
    border-color:#6366f1;    
     box-shadow: 0 15px 35px rgba(99, 102, 241, 0.28);
}



.contact {
    padding: 120px 8%;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

#contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#contact-form input,#contact-form textarea {
    padding: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;

}
#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #6366f1;

}
#contact-form button {
    padding: 18px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;

}
#contact-form button:hover {
    transform: translateY(-3px);
    background: #5458e8;
}


.footer {
    margin-top: 100px;
    padding: 40px 8%;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-socials a {
    color: #b0b0b0;
    text-decoration: none;
    transition: .3s;
}

.footer-socials a:hover {
    color: #6366f1;
}

.footer p {
    color: #7a7a7a;
    font-size: .9rem;
}