        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background: #0d0d0d;
            color: #f0f0f0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            background: #111;
            padding: 20px 40px;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 0 15px rgba(150, 90, 255, 0.1);
        }

        header h1 {
            color: #a970ff;
            font-size: 1.5rem;
        }

        nav a {
            margin-left: 25px;
            text-decoration: none;
            color: #ccc;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #a970ff;
        }

        .container {
            max-width: 1100px;
            margin: 120px auto 60px;
            padding: 0 20px;
        }

        .section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #a970ff;
        }

        .about {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .eumesma{
            width: 300px!important;
        }

        .about p {
            font-size: 1rem;
            color: #ccc;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }

        .skills span {
            padding: 8px 16px;
            border: 1px solid #a970ff;
            border-radius: 25px;
            color: #a970ff;
            font-weight: 600;
            background-color: #1a1a1a;
            transition: background 0.3s, transform 0.3s;
        }

        .skills span:hover {
            background: #2a2a2a;
            transform: scale(1.05);
        }

        .projects {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .project {
            background: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(169, 112, 255, 0.15);
            transition: transform 0.3s;
        }

        .project:hover {
            transform: translateY(-5px);
        }

        .project img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .project-info {
            padding: 15px;
        }

        .project-info h3 {
            margin-bottom: 10px;
            color: #fff;
        }

        .project-info p {
            color: #aaa;
            font-size: 0.95rem;
        }

        .btn-sm {
            display: inline-block;
            margin-top: 10px;
            color: #a970ff;
            border: 1px solid #a970ff;
            padding: 6px 12px;
            border-radius: 5px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background 0.3s;
        }

        .btn-sm:hover {
            background: #a970ff22;
        }

        .form input,
        .form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: none;
            border-radius: 5px;
            background: #2a2a2a;
            color: #fff;
        }

        .form .btn {
            padding: 10px 20px;
            background: #a970ff;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .form .btn:hover {
            background: #8c5de4;
        }

        .social {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .social a {
            color: #a970ff;
            text-decoration: none;
        }

        .alert {
            background-color: #333;
            color: #fff;
            padding: 8px;
            border-radius: 5px;
            margin-bottom: 10px;
            text-align: center;
        }
        /* HERO SECTION */
    .hero {
    margin: 5px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 600px;
    height: auto;
    
    
    }

    .hero .container{
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero h1 {
    font-size: 3rem;
    color: #b68ffb;
    margin-bottom: 20px;
    font-weight: 700;
    }

    .hero p {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    }

    @media (max-width: 420px) {
        header nav{
            display: flex;
            flex-direction: column;
        }
        .hero .container{
            width: 100%;
        }
        .hero h1{
            font-size: 2rem;
        }
    }