  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
        }

      
        nav {
            background-color: #1a1a1a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
        }

        nav ul {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 16px;
            padding: 0 32px;
        }

        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            padding: 8px 24px;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            font-weight: 500;
        }

        nav ul li a:hover {
            color: #dc143c;
            border-bottom: 2px solid #dc143c;
        }
.hero-img {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #dc143c;
    margin-bottom: 20px;
    image-rendering: auto;
}
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

 

        .hero-content {
            z-index: 1;
            padding: 0 32px;
        }

        .hero h1 {
            font-size: 64px;
            margin-bottom: 16px;
            background: linear-gradient(to right, #ffffff, #dc143c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .title {
            font-size: 24px;
            color: #b0b0b0;
            margin-bottom: 32px;
        }

        .hero .subtitle {
            font-size: 19.2px;
            color: #dc143c;
            font-weight: 600;
        }

       
        section {
            padding: 80px 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 40px;
            margin-bottom: 48px;
            text-align: center;
            color: #dc143c;
            position: relative;
            padding-bottom: 16px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, transparent, #dc143c, transparent);
        }

       
        .about-content {
            display: flex;
            gap: 48px;
            align-items: center;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text p {
            font-size: 17.6px;
            line-height: 1.8;
            color: #b0b0b0;
            margin-bottom: 16px;
        }

      
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
        }

        .skill-card {
            background-color: #1a1a1a;
            padding: 32px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            border-color: #dc143c;
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
        }

        .skill-icon {
            font-size: 48px;
            margin-bottom: 16px;
            color: #dc143c;
        }

        .skill-card h3 {
            font-size: 24px;
            margin-bottom: 8px;
            color: #ffffff;
        }

       
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .project-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .project-card:hover {
            transform: translateY(-10px);
            border-color: #dc143c;
            box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
        }

        .project-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            color: #dc143c;
        }

        .project-content {
            padding: 24px;
        }

        .project-content h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .project-content p {
            color: #b0b0b0;
            line-height: 1.6;
        }

        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background-color: #1a1a1a;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .contact-item:hover {
            border-color: #dc143c;
            transform: translateX(10px);
        }

        .contact-icon {
            font-size: 32px;
            color: #dc143c;
        }

        .contact-item a {
            color: #ffffff;
            text-decoration: none;
        }

        .contact-item a:hover {
            color: #dc143c;
        }

        .contact-form {
            background-color: #1a1a1a;
            padding: 32px;
            border-radius: 10px;
            border: 2px solid #dc143c;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ffffff;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12.8px;
            background-color: #0a0a0a;
            border: 1px solid #dc143c;
            border-radius: 5px;
            color: #ffffff;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff4757;
            box-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background-color: #dc143c;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 17.6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #ff4757;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
        }

        
        footer {
            background-color: #1a1a1a;
            text-align: center;
            padding: 32px;
            border-top: 3px solid #dc143c;
        }

        footer p {
            color: #b0b0b0;
        }

        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 40px;
            }

            .hero .title {
                font-size: 19.2px;
            }

            .section-title {
                font-size: 32px;
            }

            nav ul {
                gap: 8px;
            }

            nav ul li a {
                padding: 8px 16px;
                font-size: 14.4px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }
        }
