/* Basic Reset and Typography */
/* ... */

.container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.main-header h1 {
    color: #000000; /* Change to your preferred color */
    font-size: 36px; /* Adjust the size as needed */
}

.main-header h2 {
    color: #080808; /* Change to your preferred color */
    font-size: 20px; /* Adjust the size as needed */
}


#skills {
    margin-bottom: 20px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adjusts the space between skills */
}

.skills-container span {
    background-color: #f2f2f2; /* Light gray background */
    padding: 5px 10px;
    border-radius: 5px; /* Rounded corners for each skill */
    font-size: 14px; /* Adjust based on your design */
}

h2 {
    margin-bottom: 10px; /* Adds space below the heading */
}




/* Awards Styling */
#awards .award-item {
    background-color: #f8f8f8;
    padding: 10px;
    border-left: 5px solid #007bff;
    margin-bottom: 15px;
}

.award-item h3 {
    color: #007bff;
}

.award-item p {
    font-size: 14px;
}






.main-header {
    position: relative;
    color: #fff;
    padding: 0.3rem;
    text-align: center;
    overflow: hidden; /* Ensure the pseudo-element doesn't spill outside */
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url();
    background-size: cover;
    background-position: center;
    filter: blur(2px); /* Adjust the px value to increase/decrease the blur effect */
    z-index: -1; /* Ensure the pseudo-element is behind the content */
}



.profile-image {
    width: 180px;
    height: 180px;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #fff;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Interactive Navigation */
.main-nav {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: #333;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #007bff;
}

/* Summary with Background */
#summary {
    position: relative;
    background: #f8f8f8;
    padding: 1rem;
    margin-bottom: 2rem;
}

.summary-content {
    position: relative;
    z-index: 2;
}

.summary-bg {
    content: "";
    background: url('C:\Users\Hp\Documents\EWU_PAPERS\1. Foreign_documents\1.CV\CV_WEBSITE\01.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.1;
}

/* Footer Styling */
.main-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Add Responsive Breakpoints */
@media (max-width: 768px) {
    /* ... */
}





.main-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

.main-nav li {
    float: left;
}

.main-nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.main-nav li a:hover {
    background-color: #111;
}
