:root {
    --neon-red: #ff003a;
    --neon-pink: #ff2a6d;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #ffffff;
    --text-dim: #aaaaaa;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);



}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
/* width: 100vh; */
    background: var(--dark-bg);
    color: var(--text-light);
    font-family: "Exo 2", sans-serif;
    line-height: 1.7;
    overflow: scroll;
    height: 100vh;
    position: relative;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    display: flex;
    padding: 25px 40px;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid rgba(255, 0, 60, 0.1);
}

.logo {
    text-decoration: none;
    font-family: "Orebitron", sans-serif;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
}

.nav-links {
    gap: 35px;
    display: flex;
}

.nav-link {
    color: var(--text-dim);
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0%;
    bottom: -5px;
    height: 2px;
    background: var(--neon-red);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-light);
}

.nav-link:hover::after {
    width: 100%;
}

#hero {
    display: inline-flex;
    justify-content: center;
    padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-contant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 2;

}

h1,
h2 {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

p {
    margin-top: 1.5rem;
    color: var(--text-dim);
    font-weight: 300;
}

.hero-text h1 {
    margin-bottom: 25px;
    font-size: 3.5rem;
    background: linear-gradient(#ffffff,
            var(--neon-red),
            var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;

}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: var(--text-dim);
}

.hero-text p {
    font-size: 1.4rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.btn-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;

}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: transparent;
    color: var(--neon-red);
    border: 2px solid var(--neon-red);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.3);
    position: relative;

    overflow: hidden;
    z-index: 1;
    margin-bottom: 50px;

}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--neon-red);
    transition: width 0.5s ease;
    z-index: -1;
    /* background: black; */
}

.btn:hover {
    color: #000;
    font-weight: 700;
    /* color: var(--neon-red); */
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--neon-red);
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--neon-red);
    color: #000;
    font-weight: 700;

}

.btn-primary:hover {
    background: transparent;
    color: var(--neon-red);
}

.btn-primary::before {
    background: black;
}

.portfolio-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.profile-wrapper {
    width: 450px;
    height: 450px;
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
    }

    50% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    75% {
        transform: translateY(-10px) rotateX(-2deg) rotateY(-2deg);
    }
}

.profile-img {
    left: 250%;
    bottom: 110%;
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    object-fit: cover;
    border: 6px solid transparent;
    box-shadow: 0 0 50px var(--neon-red), 0 0 100px rgba(255, 0, 60, 0.5), 0 0 150px rgba(255, 0, 60, 0.3);
    animation: glow 3s infinite alternate, morph 12s ease-in-out infinite;
    z-index: 10;
    background: linear-gradient(45deg, var(--dark-bg), var(--darker-bg));
}

@keyframes glow {
    0% {
        box-shadow: 0 0 40px var(--neon-red), 0 0 80px rgba(255, 0, 60, 0.5),
            0 0 120px rgba(255, 0, 60, 0.3);
        border-color: var(--neon-red);
    }

    100% {
        box-shadow: 0 0 60px var(--neon-red), 0 0 120px rgba(255, 0, 60, 0.7), 0 0 180px rgba(255, 0, 60, 0.5);
        border-color: var(--neon-pink);
    }
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    33% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    66% {
        border-radius: 18% 42% 41% 59% / 59% 54% 46% 41%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.glow-effect {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border-radius: 50%;
    background: var(--neon-red);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.2%;
        transform: scale(0.95);
    }

    100% {
        opacity: 0.4%;
        transform: scale(1.05);
    }
}

footer {
    width: 100%;
    text-align: center;
    background: var(--darker-bg);
    padding: 50px 0 30px;
    /* align-items: center; */
    border-top: 1px solid rgba(255, 0, 60, 0.1);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: "Orbitron", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-logo span {
    color: var(--neon-red);
}

.footer text {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.5rem;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--neon-red);
    color: #000;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4);
    border-color: var(--neon-red);

}

.copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: var(--neon-red);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

@media (max-width:995px) {
    .hero-contant {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 6px;
    }

    .btn-group {
        justify-content: center;
    }

    .profile-wrapper {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
}