  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fafafa;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e11d48;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #e11d48;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #e11d48;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
            color: white;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.9s forwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: transparent;
            color: white;
            text-decoration: none;
            border: 2px solid white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .resume-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: white;
            color: #f43f5e;
            text-decoration: none;
            border: 2px solid white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .resume-button:hover {
            background: transparent;
            color: white;
            transform: translateY(-2px);
        }

        .cta-button:hover {
            background: white;
            color: #f43f5e;
            transform: translateY(-2px);
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            max-width: 300px;
            height: 450px;
            /* border-radius: 50%; */
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #666;
        }

        /* Skills Section */
        .skills {
            background: #fefce8;
            padding: 5rem 0;
        }

        .skills .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .skills .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .skill-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(225, 29, 72, 0.1);
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #f43f5e, #ec4899);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .skill-card:hover::before {
            transform: scaleX(1);
        }

        .skill-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(225, 29, 72, 0.15);
        }

        .skill-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fef2f2;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .skill-card:hover .skill-icon {
            background: #fee2e2;
            transform: scale(1.1);
        }

        .skill-icon img {
            width: 32px;
            height: 32px;
        }

        .skill-card h3 {
            font-size: 1.1rem;
            margin: 0;
            color: #333;
            font-weight: 600;
        }

        /* Education Section */
        .education {
            background: white;
            padding: 5rem 0;
        }

        .education-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .university-image {
            width: 100%;
            max-width: 400px;
            height: 300px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 15px 35px rgba(225, 29, 72, 0.1);
            transition: transform 0.3s ease;
        }

        .university-image:hover {
            transform: translateY(-10px);
        }

        .education-details {
            space-y: 2rem;
        }

        .education-item {
            background: #fef2f2;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #e11d48;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .education-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(225, 29, 72, 0.1);
        }

        .education-item h3 {
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .education-item .university {
            font-size: 1.1rem;
            color: #e11d48;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .education-item .duration {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .education-item p {
            color: #555;
            line-height: 1.6;
        }

        .gpa {
            display: inline-block;
            background: #e11d48;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }
        .projects {
            background: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-image.placeholder {
            background: linear-gradient(45deg, #f43f5e, #ec4899);
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .project-content p {
            color: #666;
            margin-bottom: 1rem;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .tech-tag {
            background: #e2e8f0;
            color: #475569;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .project-links {
            display: flex;
            gap: 1rem;
        }

        .project-link {
            color: #e11d48;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .project-link:hover {
            color: #be185d;
        }

        /* Contact Section */
        .contact {
            background: #1e293b;
            color: white;
        }

        .contact .section-title {
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 1rem;
            color: #94a3b8;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            background: #334155;
            color: white;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #94a3b8;
        }

        .submit-btn {
            padding: 1rem 2rem;
            background: #e11d48;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background: #be185d;
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #e11d48;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }

        .nav-links.mobile-open {
            display: flex;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.3rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .education-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .hero {
                padding: 2rem 0;
                min-height: 100vh;
            }

            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 0.5rem;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }

            .cta-button,
            .resume-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                width: 200px;
                text-align: center;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .skills .section-title {
                font-size: 2rem;
            }

            .skills .section-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .skills-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 1rem;
                margin-top: 2rem;
            }

            .skill-card {
                padding: 1.5rem 1rem;
            }

            .skill-card h3 {
                font-size: 1rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .project-card {
                max-width: none;
            }

            .about-image {
                max-width: 250px;
                height: 250px;
            }

            .about-text p {
                font-size: 1rem;
            }

            .education-item {
                padding: 1.5rem;
                margin-bottom: 1rem;
            }

            .education-item h3 {
                font-size: 1.2rem;
            }

            .university-image {
                max-width: 100%;
                height: 250px;
            }

            section {
                padding: 3rem 0;
            }

            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .skill-card {
                padding: 1rem 0.5rem;
            }

            .skill-icon {
                width: 40px;
                height: 40px;
            }

            .skill-icon img {
                width: 24px;
                height: 24px;
            }

            .skill-card h3 {
                font-size: 0.9rem;
            }

            .about-image {
                max-width: 200px;
                height: 200px;
            }

            .university-image {
                height: 200px;
            }

            .education-item {
                padding: 1rem;
            }

            .cta-button,
            .resume-button {
                width: 180px;
                padding: 0.7rem 1.2rem;
            }

            .contact-form {
                gap: 0.8rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.6rem;
                font-size: 0.9rem;
            }

            .submit-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            section {
                padding: 2.5rem 0;
            }
        }

        @media (max-width: 360px) {
            .skills-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                width: 100%;
            }

            .cta-button,
            .resume-button {
                width: 100%;
                max-width: 250px;
            }
        }