 * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0c1445 0%, #1a2980 50%, #26d0ce 100%);
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* Top Banner */
        .top-banner {
            width: 100%;
            background: linear-gradient(90deg, #4facfe, #00f2fe);
            color: #fff;
            text-align: center;
            padding: 0.7rem 0;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            animation: bannerFadeIn 1s ease;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        @keyframes bannerFadeIn {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Navigation */
        .main-nav {
            width: 100%;
            background: rgba(12,20,69,0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 999;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            transform: translateY(-2px);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(12,20,69,0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.3s ease;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .hamburger {
                display: flex;
                z-index: 1001;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
        }
        
        /* Animated Typing */
        .animated-typing {
            text-align: center;
            font-size: 1.3rem;
            color: #4facfe;
            margin: 1rem 0;
            min-height: 1.5em;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            z-index: 10000;
            transition: width 0.3s ease;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        /* Profile Section */
        .profile-section {
            text-align: center;
            margin-bottom: 5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        .profile-image {
            width: 250px;
            height: 295px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(45deg, #667eea 0%, #030ff9 100%);
            padding: 4px;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease;
        }
        
        .profile-image:hover { 
            transform: scale(1.05) rotate(5deg); 
        }
        
        .profile-image img {
            width: 100%; 
            height: 100%; 
            border-radius: 50%; 
            object-fit: cover;
        }
        
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, #f0f8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .subtitle {
            font-size: 1.3rem;
            color: #e0e8ff;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .download-btn, .contact-btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .download-btn {
            background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
        }
        
        .contact-btn {
            background: transparent;
            color: #4facfe;
            border: 2px solid #4facfe;
        }
        
        .download-btn:hover, .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
        }
        
        .contact-btn:hover {
            background: #4facfe;
            color: white;
        }
        
        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            transition: transform 0.3s ease;
        }
        
        .section:hover {
            transform: translateY(-5px);
        }
        
        .section:nth-child(1) { animation-delay: 0.1s; }
        .section:nth-child(2) { animation-delay: 0.2s; }
        .section:nth-child(3) { animation-delay: 0.3s; }
        .section:nth-child(4) { animation-delay: 0.4s; }
        .section:nth-child(5) { animation-delay: 0.5s; }
        .section:nth-child(6) { animation-delay: 0.6s; }
        
        .section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #fff;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .section h2::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            border-radius: 2px;
            margin-left: 1rem;
        }
        
        /* About Section */
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #e0e8ff;
            margin-bottom: 1.5rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            border: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #4facfe;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #e0e8ff;
            margin-top: 0.5rem;
        }
        
        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .project-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }
        
        .project-card:hover::before {
            left: 100%;
        }
        
        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(79, 172, 254, 0.2);
        }
        
        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
        }
        
        .project-card h3 {
            color: #4facfe;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }
        
        .project-status {
            background: linear-gradient(45deg, #4caf50, #45a049);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .project-card p {
            color: #e0e8ff;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .tech-tag {
            background: rgba(79, 172, 254, 0.2);
            color: #4facfe;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(79, 172, 254, 0.3);
        }
        
        .project-links {
            display: flex;
            gap: 1rem;
        }
        
        .project-card a {
            color: #00f2fe;
            text-decoration: none;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(45deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
            border-radius: 25px;
            display: inline-block;
            transition: all 0.3s ease;
            border: 1px solid rgba(79, 172, 254, 0.3);
        }
        
        .project-card a:hover {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
        }
        
        .skill-tag {
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .skill-tag::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
        }
        
        .skill-tag:hover::after {
            width: 300px;
            height: 300px;
        }
        
        .skill-tag:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        
        /* Experience Section */
        .experience-timeline {
            position: relative;
            padding-left: 2rem;
        }
        
        .experience-timeline::before {
            content: '';
            position: absolute;
            left: 1rem;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
        }
        
        .experience-item {
            position: relative;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border-left: 4px solid #4facfe;
        }
        
        .experience-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 1.5rem;
            width: 12px;
            height: 12px;
            background: #4facfe;
            border-radius: 50%;
            border: 3px solid #0c1445;
        }
        
        .experience-item h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #4facfe;
        }
        
        .experience-company {
            color: #00f2fe;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .experience-date {
            color: #e0e8ff;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .experience-description {
            color: #e0e8ff;
            line-height: 1.6;
        }
        
        /* Education Section */
        .education-item {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border-left: 4px solid #4facfe;
            transition: all 0.3s ease;
        }
        
        .education-item:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .education-item h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: #4facfe;
        }
        
        .education-institution {
            color: #00f2fe;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .education-item p {
            color: #e0e8ff;
            margin-bottom: 0.5rem;
        }
        
        /* Certificates Section */
        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .certificate-card {
            background: rgba(193, 29, 29, 0.08);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid rgba(12, 132, 237, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .certificate-card::before {
            content: '🏆';
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 3rem;
            opacity: 0.1;
        }
        
        .certificate-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(79,172,254,0.2);
            border-color: rgba(79, 172, 254, 0.5);
        }
        
        .certificate-card h4 {
            color: #c1dff9;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .certificate-card .issuer {
            color: #00f2fe;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .certificate-card .date {
            color: #e0e8ff;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .certificate-card a {
            color: #00f2fe;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            background: rgba(0, 242, 254, 0.1);
            border-radius: 20px;
            display: inline-block;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 242, 254, 0.3);
        }
        
        .certificate-card a:hover {
            background: #00f2fe;
            color: #0c1445;
        }
        
        /* Goals Section */
        .goals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .goal-item {
            background: rgba(255, 255, 255, 0.08);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(79, 172, 254, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .goal-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
        }
        
        .goal-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(79, 172, 254, 0.2);
            border-color: rgba(79, 172, 254, 0.5);
        }
        
        .goal-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .goal-item h4 {
            color: #4facfe;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .goal-item p {
            color: #e0e8ff;
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.2);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }
        
        .contact-details h4 {
            color: #1be1fb;
            margin-bottom: 0.3rem;
        }
        
        .contact-details p {
            color: #e0e8ff;
            margin: 0;
        }
        
        /* Social Links */

        .follow-section{
             text-align: center;

        }
        .follow-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
}
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }



        
        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4facfe;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(79, 172, 254, 0.3);
        }
        
        .social-link:hover {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(100px);
        }
        
        .back-to-top.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
        }
        
        /* Floating Shapes */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .shape:nth-child(2) { top: 60%; right: 10%; animation-delay: 2s; }
        .shape:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
        .shape:nth-child(4) { top: 40%; right: 30%; animation-delay: 6s; }
        
        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        @keyframes particleFade {
            0% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(0) translateY(-20px); }
        }
        
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .container { padding: 1rem; }
            h1 { font-size: 2.5rem; }
            .content-grid { grid-template-columns: 1fr; gap: 2rem; }
            .section { padding: 2rem 1.5rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .goals-grid { grid-template-columns: 1fr; }
            .certificates-grid { grid-template-columns: 1fr; }
            .contact-info { grid-template-columns: 1fr; }
            .social-links { flex-wrap: wrap; }
            .experience-timeline { padding-left: 1rem; }
            .experience-timeline::before { left: 0.5rem; }
            .experience-item::before { left: -1.75rem; }
        }
        
        @media (max-width: 480px) {
            .profile-image { width: 200px; height: 200px; }
            h1 { font-size: 2rem; }
            .subtitle { font-size: 1.1rem; }
            .section h2 { font-size: 1.5rem; }
            .nav-links { width: 85%; }
        }
