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

body
 {
    font-family: 'Arial', sans-serif;
    background-color: #2c3e50;
    color: #ffffff;
    line-height: 1.6;
}

.container 
{
    max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(44, 62, 80, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .logo-initial {
            width: 40px;
            height: 40px;
            background: #00ff41;
            color: #2c3e50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #00ff41;
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #00ff41;
        }

        /* About Section */
        .about-hero {
            padding-top: 120px;
            min-height: 100vh;
            position: relative;
        }

        .about-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        .about-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
            margin-bottom: 100px;
        }

        .about-image {
            position: sticky;
            top: 140px;
        }

        .profile-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .section-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }

        .accent {
            color: #00ff41;
        }

        .about-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #bdc3c7;
        }

        .about-description p {
            margin-bottom: 25px;
        }

        .highlight {
            color: #00ff41;
            font-weight: 600;
        }

        /* Education Section */
        .education-section {
            position: relative;
            z-index: 1;
            padding-bottom: 80px;
        }

        .education-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            letter-spacing: 2px;
            color: #00ff41;
        }

        .education-card {
            background: rgba(52, 73, 94, 0.8);
            border-radius: 15px;
            padding: 40px;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .education-content h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .university {
            font-size: 1.2rem;
            color: #00ff41;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .education-details {
            margin-bottom: 30px;
        }

        .detail-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .label {
            font-weight: 600;
            min-width: 180px;
            color: #ffffff;
        }

        .value {
            color: #bdc3c7;
            flex: 1;
        }

        .btn-download {
            display: inline-block;
            background: #00ff41;
            color: #2c3e50;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-download:hover {
            background: #00cc33;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 255, 65, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .about-image {
                position: static;
                justify-self: center;
            }

            .profile-image {
                max-width: 300px;
            }

            .section-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .nav-container {
                padding: 0 20px;
            }

            .nav-menu {
                gap: 20px;
            }

            .nav-menu a {
                font-size: 12px;
            }

            .about-hero {
                padding-top: 100px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .education-title {
                font-size: 2rem;
            }

            .education-card {
                padding: 30px 20px;
            }

            .detail-item {
                flex-direction: column;
                gap: 5px;
            }

            .label {
                min-width: auto;
            }
        }

        /* Footer */
        footer {
            background: #1f1f1f;
            color: #f1f1f1;
            text-align: center;
            padding: 2.5rem 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            width: 100%;
        }

        .footer-content {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .social-links a {
            color: #f1f1f1;
            text-decoration: none;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s ease, color 0.3s ease;
        }

        .social-links a:hover {
            color: #61dafb;
            transform: scale(1.05);
        }

        footer p {
            margin: 0.3rem 0;
            font-size: 0.95rem;
            opacity: 0.85;
        }

        footer em {
            font-style: italic;
            color: #aaa;
        }