.container{
    background-color: rgb(246, 246, 246);
    
}
header{
    position:fixed; 
}
.nav-link{
    display: flex;
    color: #027aca;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-radius: 20px;
    border: 1px solid #d69af1;
    justify-content: center;
    width: 130px;
    cursor: pointer;
    padding: 10px 15px;
    row-gap: 50px;
    background-color: aliceblue;
    
}
.nav-link:hover{
    font-weight: 600;
    border: 1px solid #d69af1;
    border-radius: 20px;
    background-color: #f6eefa;
    color: #520452;
    
}

.profile-image{
    margin-bottom: 150px;
}
.image{
    border-radius: 15px;
}
.image-placeholder{
    align-items: center;
   
}        
.about-section {
    padding: 100px 0;
    max-width: 800px;
    margin: 100px auto;
}
.project-section {
    padding: 100px 0;
}
.home-section {
    padding: 100px 0;
    margin-bottom: auto;
}
.name-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.role {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.content-block {
    margin-bottom: 2.5rem;
}

.highlight {
    background: linear-gradient(120deg, #e0f2fe 0%, #e0f2fe 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 0 0.1em;
    font-weight: 600;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.tech-item {
    background-color: var(--light-bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #7ed6df;
}
.custom-card{
    border-radius: 20px;
   
}

.btn{
    border-radius: 25px;
    border: 1px solid #7ed6df;

}
.name{
    display: flex;
    text-decoration: none;
    justify-content: center;
}

.card-img img{
    margin-top: 20px;
    border-radius: 100%;
    width: 100px;
    border: 5px solid #b8c9d1;
    
}


.navb a.btn {
    border-radius: 20px;
    transition: background-color 0.2s;
}

.navb a.btn:hover {
    background-color: #f0f0f0;
}
html {
    scroll-behavior: smooth;
}

 html {
            scroll-behavior: smooth;
        }
        
        /* Hero Enhancements */
        .hero-section {
            position: relative;
            overflow: hidden;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            z-index: -1;
        }
        
        .status-badge {
            display: inline-block;
            background: #d4edda;
            color: #155724;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .status-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #28a745;
            border-radius: 50%;
            margin-right: 8px;
            animation: blink 1.5s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 10;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
        
        .scroll-indicator i {
            font-size: 32px;
            color: #212529;
            opacity: 0.6;
        }
        
        /* Particle Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }
        
        /* Stats boxes */
        .stats-container {
            margin: 30px 0;
        }
        
        .stat-box {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #212529;
            margin: 0;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: #6c757d;
            margin: 0;
        }
        
        /* Enhanced CTA buttons */
        .btn-primary-custom {
            background: #212529;
            color: white;
            padding: 12px 32px;
            border-radius: 8px;
            border: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-custom:hover {
            background: #000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .btn-outline-custom {
            border: 2px solid #212529;
            color: #212529;
            padding: 10px 30px;
            border-radius: 8px;
            background: transparent;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background: #212529;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Project cards enhancement */
        .project-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
        }
        
        /* Profile image with rotating border */
        .profile-image-wrapper {
            position: relative;
            display: inline-block;
        }
        
        .profile-image-border {
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            animation: rotate 3s linear infinite;
            z-index: -1;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .profile-image .image {
            border: 5px solid white;
            border-radius: 50%;
        }
        
        /* Back to top button */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: none;
            z-index: 99;
            border: none;
            outline: none;
            background-color: #212529;
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 50%;
            font-size: 18px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        #backToTop:hover {
            background-color: #000;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }
        
        /* Learning status indicator */
        .learning-badge {
            background: #fff3cd;
            color: #856404;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 13px;
            font-weight: 500;
        }
