body {

    background: linear-gradient(135deg, #000000, #3b1c42, #24243e);
    color: white;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.Facts-btn {
    background: #8a2be2;
    color: white;
    box-shadow: 0 0 15px #8a2be2;
}

.Facts-btn:hover {
    background: #a855f7;
    box-shadow: 0 0 25px #a855f7;
    transform: scale(1.05);
}

.logo-1 {
    width: 80px;
    height: 80px;
    border-radius: 50px;
}

.nav-link {
    color: white;
    transition: 0.3s ease;
    font-size: 20px;
}

.nav-link:hover {
    color: #bf83f7;
    transform: scale(1.05);
    font-size: 20px;



}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}

/* LEFT SIDE */
.hero-text {
    max-width: 600px;
    animation: slideLeft 1.5s ease;
}

.hero-text h4 {
    font-weight: 300;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 80px;
    font-weight: 200px;
    margin: 0;
    font-weight: 700;
    background: #0d0d0d;
    background: linear-gradient(90deg, rgb(138, 2, 126) 16%, rgba(139, 87, 199, 1) 62%, rgba(83, 124, 237, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing {
    font-size: 22px;
    color: #d6affd;
    margin: 15px 0;
    height: 30px;
}

#typing-text {
    color: #e0c9f8;
    font-weight: 500;
}

.hero-text p {
    color: #ddd;
    margin-bottom: 25px;
}

/* BUTTONS */
.btn {
    padding: 12px 28px;
    margin-right: 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Primary Button */
.btn-primary {
    background: #a855f7;
    color: white;
    box-shadow: 0 0 15px #a855f7;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #c084fc;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid #c084fc;
    color: #c084fc;
}

.btn-outline:hover {
    background: #c084fc;
    color: white;
    box-shadow: 0 0 20px #c084fc;
}

/* RIGHT SIDE IMAGE */
.hero-img {
    animation: slideRight 1.5s ease;
}

.hero-img img {
    width: 350px;
    border-radius: 50%;
    box-shadow: 0 0 40px #a855f7;
}

/* ANIMATIONS */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-section {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: white;
    border-radius: 50px;
}

/* Heading Style */
.about-heading {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(90deg, #a855f7, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #d1d5db;
}

/* Image Style */
.about-img img {
    width: 300px;
    border-radius: 50%;
    box-shadow: 0 0 40px #a855f7;
    transition: 0.5s ease;
}

.about-img img:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn-purple {
    background: #a855f7;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-purple:hover {
    cursor: pointer;
    background: #9333ea;
    box-shadow: 0 0 20px #a855f7;
}

.btn-outline-purple {
    cursor: pointer;
    border: 2px solid #a855f7;
    color: #a855f7;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-outline-purple:hover {
    background: #a855f7;
    color: white;
    box-shadow: 0 0 20px #a855f7;
}


.about-section {
    animation: fadeIn 1.5s ease-in-out;
}

.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.skills-section {
    background: #1d1e4d;
    color: white;
    border-radius: 50px;
}

/* Section Title */
.section-title {
    font-size: 60px;
    font-weight: bold;
    background: linear-gradient(90deg, #a855f7, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Bars */
.skill {
    margin-bottom: 20px;
}

.skill p {
    margin-bottom: 5px;
}

.progress {
    background: #2d2a55;
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 10px;
    background: #a855f7;
    width: 0;
    transition: width 2s ease;
}

/* Individual Widths */
.progress-bar.html { width: 90%; }
.progress-bar.css { width: 85%; }
.progress-bar.js { width: 75%; }
.progress-bar.bootstrap { width: 80%; }
.progress-bar.firebase { width: 70%; }
.progress-bar.git { width: 100%; }

/* Design Cards */
.design-card {
    background: #1e1b4b;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    transition: 0.4s;
    border: 1px solid #a855f7;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #a855f7;
}
.projects-section {
    background: linear-gradient(135deg, #0f0c29, #302b63);
    color: white;
    border-radius: 50px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px #a855f7;
}

.project-card h4 {
    margin-bottom: 15px;
}

.project-card p {
    font-size: 14px;
    color: #d1d5db;
}

.tech-stack {
    font-size: 13px;
    color: #a855f7;
    margin-bottom: 15px;
}

.project-buttons .btn {
    border-radius: 20px;
    padding: 6px 15px;
}
.contact-section {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: white;
    border-radius: 50px;
}

/* Contact Info */
.contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-info a {
    color: #a855f7;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: #1e1b4b;
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form button {
    border-radius: 25px;
    padding: 10px 25px;
}
.footer {
    background: #0f0c29;
    padding: 40px 0;
    color: white;
    border-radius: 50px;
}

.footer-name {
    font-weight: bold;
    background: linear-gradient(90deg, #a855f7, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Social Icons */
.social-icons a {
    color: white;
    font-size: 22px;
    margin: 0 15px;
    transition: 0.4s;
}

.social-icons a:hover {
    color: #a855f7;
    transform: translateY(-5px);
}

/* Copyright Text */
.footer p {
    font-size: 14px;
    color: #bbb;
}
.footer {
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #9333ea, #a855f7);
    animation: glowLine 3s linear infinite;
}

@keyframes glowLine {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}
/* RESPONSIVE */
@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-img {
        margin-top: 30px;
    }

    .hero-text h1 {
        font-size: 40px;
    }
}