        :root {
            --primary: #2e3e86;
            --accent: #db1710;
            --bg: #f6f7fb;
            --text: #22223b;
            --white: #fff;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }
        header {
            background: var(--primary);
            color: var(--white);
            padding: 2rem 0 1.5rem 0;
            text-align: center;
        }
        header h1 {
            font-size: 2.5rem;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }
        header p {
            font-size: 1.2rem;
            color: #01e660;
        }
        nav {
            margin-top: 1rem;
        }
        nav a {
            color: var(--accent);
            text-decoration: none;
            margin: 0 1rem;
            font-weight: 700;
            transition: color 0.2s;
        }
        nav a:hover {
            color: var(--white);
            text-decoration: underline;
        }
        .container {
            max-width: 1000px;
            margin: 2rem auto;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
            padding: 2rem;
        }
        section {
            margin-bottom: 2.5rem;
        }
        h2 {
            background-color: #333;
            color: #fff;
            margin-bottom: 1rem;
            width: fit-content;
            font-size: 2rem;
            border-radius: 5px;
            border-left: 4px solid var(--accent);
            padding-left: 0.5rem;
            padding-right: 0.5rem;
            box-shadow: #555 0px 7px 9px 0px;
            cursor: pointer;
        }
        .about {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        .about img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent);
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.12);
        }
        .about-text {
            flex: 1;
            min-width: 220px;
            text-align: justify;
        }
        .skills-list, .projects-list, .education-list, .experience-list {
            list-style: none;
            padding-left: 0;
        }
        .skills-list li {
            display: inline-block;
            background: var(--bg);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            margin: 0.3rem 0.5rem 0.3rem 0;
            font-size: 1rem;
            border: 1px solid var(--accent);
        }
        .projects-list li, .education-list li, .experience-list li {
            margin-bottom: 1.2rem;
            background: #f9fafc;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
        }
        .projects-list a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 600;
        }
        .contact-form {
            max-width: 500px;
            margin: 0 auto;
            background: #f9fafc;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 1px 6px rgba(44, 62, 80, 0.06);
        }
        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 0.7rem;
            margin-bottom: 1.2rem;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 1rem;
            background: var(--white);
            resize: vertical;
        }
        .contact-form button {
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .contact-form button:hover {
            background: #d76a2d;
        }
        .form-message {
            margin-top: 1rem;
            font-weight: 600;
        }
         .social-links {
            margin-top: 2rem;
            text-align: center;
        }
        .social-links a {
            display: inline-block;
            margin: 0 0.7rem;
            transition: transform 0.2s;
            vertical-align: middle;
        }
        .social-links a:hover {
            transform: scale(1.15);
        }
        .social-links img {
            width: 32px;
            height: 32px;
            filter: grayscale(1) brightness(0.7);
            transition: filter 0.2s;
        }
        .social-links a:hover img {
            filter: none;
        }
        footer {
            text-align: center;
            padding: 1.5rem 0;
            background: var(--primary);
            color: var(--white);
            margin-top: 2rem;
            border-radius: 0 0 12px 12px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            .about {
                flex-direction: column;
                align-items: flex-start;
            }
            .about img {
                margin-bottom: 1rem;
            }
            nav {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            nav a {
                margin: 0.3rem 0;
                display: block;
            }
        }
        @media (max-width: 480px) {
            header h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0.5rem;
            }
            .contact-form {
                padding: 1rem;
            }
        }
        /* Responsive Navigation Menu */
    header {
        position: relative;
    }
    #menuToggle {
        background: var(--accent);
        color: #fff;
        border: none;
        font-size: 1.3rem; /* smaller size */
        padding: 0.2rem 0.7rem;
        border-radius: 6px;
        cursor: pointer;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1002;
        transition: background 0.2s;
        box-shadow: 0 2px 8px rgba(44,62,80,0.12);
        display: none;
    }
    #menuToggle:active, #menuToggle:focus {
        background: #d76a2d;
        outline: none;
    }
    @media (max-width: 768px) {
        #menuToggle {
            display: block;
        }
        nav#mainNav {
            display: none;
            flex-direction: column;
            align-items: flex-start;
            background: var(--primary);
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 220px;
            box-shadow: -4px 0 16px rgba(44,62,80,0.12);
            border-radius: 0 0 0 12px;
            padding: 2.5rem 1.5rem 1.5rem 1.5rem;
            z-index: 1001;
            transition: transform 0.3s ease;
            transform: translateX(100%);
        }
        nav#mainNav.show {
            display: flex;
            transform: translateX(0);
        }
        nav#mainNav a {
            margin: 1rem 0;
            font-size: 1.1rem;
            width: 100%;
            color: var(--accent);
            text-align: left;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(239,131,84,0.1);
        }
    }