* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        /* Navigation */
        .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.3s ease;
        }

        .header-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 32px;
        }

    

        .main-navigation {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #667eea;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Home Section */
        .welcome-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .welcome-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .welcome-section h1.typing {
            opacity: 1;
            transform: translateY(0);
        
        }


        .hero-text-container {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 32px;
        }

        .welcome-section h1 {
            font-size: 56px;
            margin-bottom: 32px;
            animation: fadeInUp 1s ease;
        }

        .welcome-section p {
            font-size: 19px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .know-me-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #667eea;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
            animation: fadeInUp 1s ease 0.4s both;
            margin-top: 60px;
        }

        .know-me-btn:hover {
            background: #5a6fd8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        /* Sections */
        .section {
            padding: 80px 0;
            width: 100%;
        }

        .section-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .big-title {
            text-align: center;
            font-size: 40px;
            margin-bottom: 48px;
            color: #333;
            position: relative;
        }

        .big-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #667eea;
        }

        /* About Section */
        .about {
            background: white;
            border-radius: 20px;
            margin: 32px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 800px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
            padding: 32px;

        }

        .profile-pic {
            width: 200px;
            height: 240px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            margin: 0 auto;
        }

        .about-text h3 {
            font-size: 28px;
            margin-bottom: 16px;
            color: #667eea;
        }

        .about-text p {
            margin-bottom: 16px;
            line-height: 1.8;
        }

        /* Skills Section */
        .skills {
            background: white;
            border-radius: 20px;
            margin: 32px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            padding: 48px;
        }

        .skills-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .skill-category {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #667eea;
        }

        .skill-category h3 {
            font-size: 24px;
            margin-bottom: 24px;
            color: #667eea;
        }

        .skill-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .indiv-skill {
            background: #667eea;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .indiv-skill:hover {
            background: #5a6fd8;
            transform: translateY(-2px);
        }

        /* Education & Experience */
        .timeline {
            background: white;
            border-radius: 20px;
            margin: 32px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            padding: 48px;
        }

        .experience {
            background: white;
            border-radius: 20px;
            margin: 32px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            padding: 48px;
        }

        .journey-item {
            margin-bottom: 32px;
            padding-left: 32px;
            position: relative;
        }

        .journey-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background: #667eea;
            border-radius: 50%;
        }

        .journey-date {
            font-weight: bold;
            color: #667eea;
            margin-bottom: 8px;
        }

        .journey-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .journey-company {
            color: #666;
            margin-bottom: 8px;
        }

        /* Projects Section */
        .projects {
            background: white;
            border-radius: 20px;
            margin: 32px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            padding: 48px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .project-card {
            background: #f8f9fa;
            padding: 24px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .project-name {
            font-size: 20px;
            margin-bottom: 12px;
            color: #667eea;
        }

        .project-description {
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tech-tag {
            background: #667eea;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
        }

        /* Contact Section */
        .contact {
            background: white;
            border-radius: 20px;
            margin: 32px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            padding: 48px;
        }

        .contact-content {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .contact-symbol {
            width: 40px;
            height: 40px;
            background: #667eea;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .error {
            color: #dc3545;
            font-size: 0.8rem;
            margin-top: 0.3rem;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .modal-content {
            background: white;
            position: relative;
            padding: 32px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }

        .modal.show .modal-content {
            transform: scale(1);
        }

        .close {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #aaa;
        }

        .close:hover {
            color: #333;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 32px 0;
            margin-top: 32px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .main-navigation {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 32px 0;
            }

            .main-navigation.active {
                left: 0;
            }

            .welcome-section h1 {
                font-size: 40px;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 32px;
            }

            .skills-container {
                grid-template-columns: 1fr;
            }

            .section-container {
                padding: 0 16px;
            }

            .journey-item {
                margin-left: 16px;
            }

            .about, .skills, .timeline, .projects, .contact {
                margin: 16px;
                padding: 32px;
            }
        }

        @media (max-width: 480px) {
            .welcome-section h1 {
                font-size: 32px;
            }

            .section-title {
                font-size: 32px;
            }

            .about, .skills, .timeline, .projects, .contact {
                padding: 24px;
            }
        }