
:root {
    --primary: #3a0ca3;
    --secondary: #4361ee;
    --accent: #4cc9f0;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #0f0f1a;
    color: #e0e0e0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

/* Navbar */
.navbar {
    background-color: rgba(15, 15, 26, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.5s;
}

.navbar-brand {
    font-weight: 700;
    color: var(--accent) !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #090915 0%, #131340 100%);
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.6);
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
}

/* About Section */
.section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(to right, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
}

.about-info {
    background: rgba(25, 25, 36, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Avatar style */
.profile-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    display: block;
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.avatar-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
}

.avatar-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    z-index: -1;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(to right, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--accent);
}

/* Skills Section */
.skills-container {
    background: rgba(25, 25, 36, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-item {
    margin-bottom: 35px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.skill-percent {
    font-weight: 700;
    color: var(--accent);
}

.progress {
    height: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: visible;
}

.progress-bar {
    position: relative;
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: inherit;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.python-bar {
    background: linear-gradient(to right, #3498db, #2980b9);
}

.flask-bar {
    background: linear-gradient(to right, #2ecc71, #27ae60);
}

.tensorflow-bar {
    background: linear-gradient(to right, #9b59b6, #8e44ad);
}

.js-bar {
    background: linear-gradient(to right, #f1c40f, #f39c12);
}

.nodejs-bar {
    background: linear-gradient(to right, #1abc9c, #16a085);
}

.cpp-bar {
    background: linear-gradient(to right, #e74c3c, #c0392b);
}

/* Glowing effect */
.glow {
    box-shadow: 0 0 20px var(--accent);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px var(--accent);
    }
    to {
        box-shadow: 0 0 20px var(--accent), 0 0 30px var(--secondary);
    }
}

/* Footer */
.footer {
    background-color: #090915;
    padding: 30px 0;
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #e0e0e0;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

/* Typing effect */
.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white }
}

/* Technology Icons */
.tech-icon {
    font-size: 3rem;
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.tech-icon:hover {
    color: var(--accent);
    transform: scale(1.2);
}

/* Badge */
.badge-custom {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin: 0 5px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .profile-avatar {
        width: 150px;
        height: 150px;
    }
    
    .avatar-container {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .profile-avatar {
        width: 120px;
        height: 120px;
    }
    
    .avatar-container {
        width: 120px;
        height: 120px;
    }
}
/* #home{
    position: relative;
}
.mew{
    width: 40vw;
    position: fixed;
    justify-self: ;
} */