body {
        font-family: Arial, sans-serif;
        background-color: #F0F0F0;
        margin: 0;
        padding: 20px;
    }
/* Header and Menu */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Adjust this */
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    max-width: 740px;
    width: 100%; /* Ensures it takes full width on smaller screens */
    margin: 0 auto; /* Center the header */
    border-radius: 12px;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.title a {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Makes the link inherit the color of the parent element */
}

.menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 10px;
}

.menu a {
    text-decoration: none;
    color: #333;
}

.contact-btn {
    background-color: #222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact-btn::before {
    content: "⚡";
    margin-right: 5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.close-menu {
    display: none; /* Hide close button by default */
}


.contact-link {
        display: none;}



@media (max-width: 768px) {
    .header {
        padding: 10px 10px; /* Reduce padding on smaller screens */
    }

    .menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.9);
        justify-content: center;
        align-items: center;
        z-index: 999;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 20px 0;
    }
    
    .menu a {
        color: #fff;
        font-size: 24px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .menu-toggle.active {
        color: #fff;
    }
    
    .contact-btn {
        display: none; /* Hide contact button on mobile */
    }

    .contact-link {
        display: block; /* Ensure it is displayed as a block */
        padding: 8px 16px; /* Add padding for better clickability */
        color: #fff; /* Set color to match the menu theme */
        text-align: center; /* Center the text */
    }

    .close-menu {
        display: block; /* Show close button in overlay menu */
        background: none; /* No background */
        border: none; /* No border */
        color: #fff; /* Color for the close button */
        font-size: 24px; /* Font size */
        cursor: pointer; /* Change cursor on hover */
        margin-top: 20px; /* Space it from the other menu items */
    }
}






    /* General container styling */
    .container {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 20px;
        max-width: 700px;
        margin: 0 auto;
        margin-top: 20px; /* Adds space between containers */
        margin-bottom: 20px; /* Adds space between containers */
    }

    /* Section heading */
    h1 {
        font-size: 22px;
        margin: 0 0 20px 0;
    }

    /* Job, Test, Education, Certification, Award, About, and Website entries */
    .job-entry, .test-entry, .education-entry, .cert-entry, .award-entry, .about-entry, .website-entry {
        border-bottom: 1px solid #e0e0e0;
        padding: 20px 0;
    }

    /* Remove the border for the last entry in each section */
    .job-entry:last-child, .test-entry:last-child, 
    .education-entry:last-child, .cert-entry:last-child, 
    .award-entry:last-child, .about-entry:last-child, .website-entry:last-child {
        border-bottom: none;
    }

    /* Titles for Job, Test, Education, Certification, Awards, About, and Websites */
    .job-title, .test-name, .education-title, .cert-title, .award-title, .about-title, .website-title {
        font-weight: bold;
        margin-bottom: 6px;
        color: #333;
        font-size: 17px;
    }

    /* Details for each section */
    .job-details, .job-location, .job-duration,
    .test-details, .test-location,
    .education-details, .education-duration,
    .cert-details, .cert-issued,
    .award-details, .award-associated,
    .about-details,
    .website-details, .website-about, .website-content {
        color: #666;
        font-size: 15px;
    }

    /* Issued date for Certifications and Awards */
    .cert-issued, .award-details {
        margin-bottom: 5px;
        color: #999;
    }

    /* About section specific styling */
    .about-content p {
        font-size: 16px;
        margin-bottom: 10px;
        color: #333;
    }

    .about-content ul {
        list-style-type: disc;
        padding-left: 20px;
    }

    .about-content li {
        color: #666;
        font-size: 14px;
        margin-bottom: 5px;
    }

    /* Section gap to maintain separation */
    .section-gap {
        height: 40px;
        background-color: #f0f0f0;
    }

    .skills-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .skill {
        background-color: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }
    .skill::before {
        content: "✓";
        margin-right: 5px;
        color: #007bff;
        font-weight: bold;
    }


    .profile-header {
        text-align: center;
        padding: 10px;
    }
    .buttons {
        margin-top: 20px;
    }
    .btn {
        display: inline-block;
        padding: 10px 20px;
        margin: 0 5px;
        border-radius: 5px;
        text-decoration: none;
    }
    .btn-primary {
        background-color: #333;
        color: white;
    }
    .btn-secondary {
        background-color: #f4f4f4;
        color: #333;
    }
   .content {
    display: flex;
    padding: 20px;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}
    .profile-image {
        flex: 1;
        margin-right: 20px;
    }
    
    .profile-image img {
        width: 100%; /* This will make the image responsive */
        height: auto; /* Maintain the aspect ratio */
        border-radius: 50%; /* Make the image round */
        max-width: 150px; /* Optional: set a max-width for the image */
        max-height: 150px; /* Optional: set a max-height for the image */
        margin:15px;
    }
    
</style>