 
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #0f172a;
            color: #e2e8f0;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #0ea5e9, #7e22ce);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .typewriter {
    overflow: hidden; /* Text bahar na nikalay */
    border-right: .15em solid transparent; /* Cursor effect */
    white-space: nowrap; /* Aik hi line mein rahay */
    margin: 0;
    letter-spacing: .10em;
    animation: 
        typing 3.5s steps(30, end),
        blink-caret .75s step-end infinite;
}

/* Typing animation */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* Cursor blinking animation */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #3b82f6; } 
}

.floating {
    animation: float 3s ease-in-out infinite;
}
.skill-bar {
    height: 10px; 
    background-color: #1e293b;
    border-radius: 9999px;
    overflow: hidden; /* Taake progress bar corners se bahar na nikalay */
}
  
   .skill-progress {
    transition: width 1.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    width: 0; /* Shuru mein bilkul 0 rahay gi */
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #0ea5e9, #7e22ce);
    /* Transition lazmi hai taake width change hote waqt fill hoti nazar aaye */
    box-shadow: 0 0 10px 1px rgba(139, 92, 246, 0.5);
}
/* Shuru mein section hidden aur thoda neechay hoga */
.reveal-section {
    opacity: 0;
    transform: translateY(80px); /* Zyada gap ke liye */
    transition: all 1.2s ease-out;
}

/* Jab JS class add karega toh section apni asli jagah par aa jaye ga */
.reveal-section.opacity-100 {
    opacity: 1;
    transform: translateY(0);
}
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(90deg, #0ea5e9, #7e22ce);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .active::after {
            width: 100%;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            left: -7.5px;
            top: 0;
            background: linear-gradient(135deg, #0ea5e9, #7e22ce);
        }
        
       
        
    .project-card {
    background: rgba(30, 41, 59, 0.4); /* Transparent background */
    backdrop-filter: blur(12px); /* Blur effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.project-card:hover {
    border-color: #0ea5e9;
    transform: scale(1.02);
}
        
        .contact-input {
            background-color: #1e293b;
            border: 1px solid #334155;
            transition: all 0.3s ease;
        }
        
        .contact-input:focus {
            border-color: #0ea5e9;
            box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
        }
        
        .btn-primary {
            background: linear-gradient(90deg, #0ea5e9, #7e22ce);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
        }
        
        .social-icon {
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .floating {
            animation: float 3s ease-in-out infinite;
        }
       
    
        
/* Navbar ko hamesha sab se upar rakhne ke liye */
nav {
    z-index: 100 !important;
    position: sticky;
    top: 0;
    background-color: #000; /* Aapka black bar */
}

/* Picture ko control karne ke liye */
.hero-img {
    max-height: 80vh; /* Picture screen se bari na ho */
    object-fit: contain;
}
