        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;     
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            --primary-color: #38bdf8;
            --primary-light: #7dd3fc;
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --card-bg: rgba(30, 41, 59, 0.8);
            --card-border: rgba(56, 189, 248, 0.2);
            --nav-bg: rgba(15, 23, 42, 0.95);
            --accent-color: #f472b6;
            --project-bg: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            --contact-bg: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        }
        
        body {
             background: var(--primary-bg);
            color: #e2e8f0;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.5s ease-out;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo i {
            font-size: 1.9rem;
        }
        
         .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        } 
        
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 6px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section with Image on Right */
        .hero-section {
            padding: 100px 0 60px;
            display: flex;
            align-items: center;
            min-height: 90vh;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 50px;
            opacity: 0;
            /* transform: translateY(-30px); */
            animation: fadeInRight 1s ease-out 0.3s forwards;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(30px);
            animation: fadeInLeft 1s ease-out 0.5s forwards;
        }
        
        .profile-img {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-color);
            box-shadow: 0 15px 35px rgba(56, 189, 248, 0.3);
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
        }
        
        .profile-img::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--primary-light);
            top: 15px;
            left: 15px;
            
            z-index: -1;
            opacity: 0.5;
            animation: pulse 3s infinite alternate;
        }
        
        .profile-img:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(56, 189, 248, 0.5);
        }
        
        /* New Name Animation */
        .name-container {
            position: relative;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .intro-text {
            font-size: 1.8rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
        }
        
        .name-animation {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }
        
        .name-animation::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            height: 80%;
            width: 3px;
            background: var(--primary-color);
            animation: blink 0.8s infinite;
        }
        
        .typing-text {
            overflow: hidden;
            border-right: 3px solid var(--primary-color);
            white-space: nowrap;
            margin: 0 auto;
            animation: typing 3s steps(30, end), blink-caret 0.8s step-end infinite;
        }
        
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 500;
        }
        
        .tagline {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-weight: 300;
        }
        
        .intro {
            margin-bottom: 35px;
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.9;
        }
        
        .divider {
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
            margin: 30px 0;
            width: 100%;
            max-width: 500px;
            opacity: 0.7;
        }
        
        .cta {
            display: flex;
            gap: 25px;
            margin: 40px 0;
        }
        
        .btn {
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            border: none;
            font-size: 1.05rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: #0f172a;
            border: 2px solid var(--primary-color);
        }
        
        .btn-primary:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-secondary:hover {
            background: var(--primary-color);
            color: #0f172a;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
        }
        
        .btn-accent {
            background: var(--accent-color);
            color: white;
            border: 2px solid var(--accent-color);
        }
        
        .btn-accent:hover {
            background: transparent;
            color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(244, 114, 182, 0.4);
        }
        
        main {
            flex: 1;
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 60px;
            color: var(--text-primary);
            position: relative;
            padding-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        /* About Section Styles with Video */
        .about-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .video-container {
            width: 100%;
            max-width: 800px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            position: relative;
            background: #1e293b;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .video-container video {
            width: 100%;
            display: block;
            transition: all 0.5s ease;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .video-overlay:hover {
            opacity: 1;
        }
        
        .play-btn {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            font-size: 2rem;
            transition: all 0.3s ease;
            transform: scale(0.9);
        }
        
        .video-overlay:hover .play-btn {
            transform: scale(1);
        }
        
        .video-caption {
            text-align: center;
            max-width: 800px;
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .resume-container {
            text-align: center;
            margin-top: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .resume-btn {
            padding: 14px 35px;
            background: var(--primary-color);
            color: #0f172a;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
        }
        
        .resume-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
            gap: 15px;
        }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-bottom: 80px;
        }
        
        .skill-card {
            background: var(--card-bg);
            border-radius: 18px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid var(--card-border);
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .skill-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 15px 35px rgba(56, 189, 248, 0.25);
            border-color: rgba(56, 189, 248, 0.4);
        }
        
        .skill-icon {
            font-size: 3.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            background: rgba(56, 189, 248, 0.1);
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.5s ease;
        }
        
        .skill-card:hover .skill-icon {
            transform: scale(1.1) rotate(10deg);
            background: rgba(56, 189, 248, 0.2);
        }
        
        .skill-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--text-primary);
        }
        
        .skill-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Projects Section with New Design */
        #projects {
            background: var(--project-bg);
            padding: 80px 0;
            border-radius: 30px;
            margin: 40px 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .project-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(56, 189, 248, 0.1) 100%);
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(56, 189, 248, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .project-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(56, 189, 248, 0.3);
            border-color: rgba(56, 189, 248, 0.6);
        }
        
        .project-img {
            width: 100%;
            height: 220px;
            background: linear-gradient(45deg, #1e293b 0%, #334155 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .project-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(56, 189, 248, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .project-card:hover .project-img::before {
            opacity: 1;
        }
        
        .project-img i {
            transition: all 0.5s ease;
        }
        
        .project-card:hover .project-img i {
            transform: scale(1.2);
        }
        
        .project-content {
            padding: 25px;
        }
        
        .project-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-primary);
        }
        
        .project-card p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .project-tag {
            background: rgba(56, 189, 248, 0.2);
            color: var(--primary-color);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .project-tag:hover {
            transform: translateY(-3px);
            background: rgba(56, 189, 248, 0.3);
        }
        
        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .project-link:hover {
            gap: 12px;
        }
        
        /* Contact Section with New Design */
        #contact {
            background: var(--contact-bg);
            padding: 80px 0;
            border-radius: 30px;
            margin: 40px 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .contact {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 80px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .contact p {
            margin-bottom: 40px;
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        /* Contact Form Styles */
        .contact-form {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(56, 189, 248, 0.1) 100%);
            border-radius: 18px;
            padding: 40px;
            margin-top: 40px;
            border: 1px solid rgba(56, 189, 248, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            text-align: left;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .form-control {
            width: 100%;
            padding: 16px 20px;
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(56, 189, 248, 0.3);
            border-radius: 10px;
            color: #e2e8f0;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
            transform: translateY(-2px);
        }
        
        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 40px;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.6s forwards;
        }
        
        .social-link {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(56, 189, 248, 0.15);
            color: var(--primary-color);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease-out forwards;
        }
        
        .social-link:nth-child(1) { animation-delay: 0.2s; }
        .social-link:nth-child(2) { animation-delay: 0.4s; }
        
        .social-link:hover {
            background: var(--primary-color);
            color: #0f172a;
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
        }
        
        footer {
            text-align: center;
            padding: 30px 0;
            background: rgba(15, 23, 42, 0.9);
            color: var(--text-secondary);
            margin-top: auto;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.8s forwards;
        }
        
        /* Form Status Messages */
        .form-status {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 25px;
            text-align: center;
            display: none;
            font-weight: 500;
            animation: shake 0.5s ease-in-out;
        }
        
        .form-status.success {
            background: rgba(101, 163, 13, 0.2);
            border: 1px solid rgba(101, 163, 13, 0.5);
            color: #65a30d;
            display: block;
        }
        
        .form-status.error {
            background: rgba(220, 38, 38, 0.2);
            border: 1px solid rgba(220, 38, 38, 0.5);
            color: #dc2626;
            display: block;
        }
        
        .form-status.info {
            background: rgba(56, 189, 248, 0.2);
            border: 1px solid rgba(56, 189, 248, 0.5);
            color: var(--primary-color);
            display: block;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            transform: scale(0);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }
        
        .back-to-top:hover {
            transform: scale(1.1) translateY(-5px);
        }
        
        /* Animation Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from { 
                opacity: 0;
                transform: translateX(-30px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInLeft {
            from { 
                opacity: 0;
                transform: translateX(30px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            from {
                transform: scale(1);
                box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
            }
            to {
                transform: scale(1.05);
                box-shadow: 0 8px 30px rgba(56, 189, 248, 0.6);
            }
        }
        
        @keyframes expandWidth {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 80%;
                opacity: 0.7;
            }
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--primary-color); }
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        /* Animation for elements when they come into view */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 992px) {
            .name-animation {
                font-size: 3.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero-section {
                flex-direction: column;
                text-align: center;
                padding: 80px 0 40px;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .divider {
                margin: 30px auto;
            }
            
            .cta {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .name-animation {
                font-size: 2.7rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links {
                gap: 20px;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 50px;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .cta {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 220px;
            }
            
            .profile-img {
                width: 250px;
                height: 250px;
            }
            
            .contact-form {
                padding: 25px;
            }
            
            .social-links {
                gap: 15px;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            .name-animation {
                font-size: 2.2rem;
            }
            
            .intro-text {
                font-size: 1.4rem;
            }
            
            h2 {
                font-size: 1.4rem;
            }
            
            .profile-img {
                width: 200px;
                height: 200px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .contact-form {
                padding: 20px;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 0.95rem;
            }
        }
        .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}