/* General Styles */
    body { 
        font-family: Arial, sans-serif;
        margin: 0; padding: 0;
        line-height: 1.6;
        background: #f9f9f9;
        color: #333;
        scroll-behavior: smooth;
    }
    header {
        background: #004aad;
        color: white;
        text-align: center;
        padding: 3rem 1rem;
        position: relative;
    }
    header h1 {
        margin: 0;
        font-size: 3rem;
        animation: fadeInDown 1s ease-in-out;
    }
    header p {
        margin-top: 0.5rem;
        animation: fadeInUp 1s ease-in-out;
    }
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0, 74, 173, 0.9);
        color: white;
        display: flex;
        justify-content: center;
        gap: 2rem;
        padding: 0.75rem;
        z-index: 1000;
    }
    nav a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s;
    }
    nav a:hover {
        color: #ffd700;
    }
    section {
        max-width: 900px;
        margin: 5rem auto 2rem;
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    h2 {
        color: #004aad;
        border-bottom: 2px solid #004aad;
        padding-bottom: 0.5rem;
    }
    .contact a {
        color: #ffd700;
        text-decoration: none;
    }
    .job {
        margin-bottom: 1rem;
    }
    .job h3 {
        margin: 0;
        cursor: pointer;
        background: #f1f1f1;
        padding: 0.5rem;
        border-radius: 5px;
    }
    .job h3:hover {
        background: #e2e2e2;
    }
    .job-content {
        display: none;
        margin-top: 0.5rem;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .job-content.show {
        display: block;
        opacity: 1;
    }
    footer {
        text-align: center;
        padding: 2rem;
        background: #004aad;
        color: white;
        margin-top: 2rem;
        animation: fadeIn 2s;
    }
    ul li {
        margin-bottom: 0.5rem;
        transition: transform 0.2s, background 0.2s;
        padding: 0.25rem 0.5rem;
        border-radius: 5px;
    }
    ul li:hover {
        background: #f0f4ff;
        transform: translateX(5px);
    }
    .skills-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .skill-box {
        background: #f4f4f4;
        padding: 1rem;
        border-radius: 8px;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        transition: 0.3s;
    }
    .skill-box i {
        font-size: 1.5rem;
        color: #004aad;
        margin-top: 0.2rem;
    }
    .skill-box:hover {
        background: #e8f0ff;
        transform: translateY(-3px);
    }
    #back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #004aad;
        color: white;
        padding: 0.75rem 1rem;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        transition: background 0.3s;
    }
    #back-to-top:hover {
        background: #003080;
    }
    @keyframes fadeInDown {
        from { 
            opacity: 0; transform: translateY(-20px);
        } to { 
            opacity: 1; transform: translateY(0);
        }
    }
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        } to {
            opacity: 1; 
            transform: translateY(0);
        }
    }