/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin-top: 100px; /* Adjust this based on your header's height */
}

/* Header Section */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

header h1 {
    font-size: 1.5rem;
    margin: 0;
}

nav ul {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #fff;
    color: #2c3e50;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Section above the Portfolio */
.hero-section {
    background-color: #1abc9c;
    padding: 60px 0;
    text-align: center;
}

.hero-section img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.hero-section p {
    font-size: 1.2rem;
    color: white;
}

/* Portfolio section */
#portfolio {
    padding: 60px 0;
}

#portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-item img {
    width: 100%;
    cursor: pointer;
}

/* Modal styling */
.modal-content {
    padding: 20px;
}

.modal-content img {
    margin-bottom: 20px;
}

/* About Section */
#about {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

#about p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
}

/* Contact Section */
#contact {
    padding: 60px 0;
}

#contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: auto;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.button { 
display: inline-block; 
padding: 10px 20px; 
background-color: #007bff; /* Button background color */ 
color: #fff; /* Text color */ 
text-decoration: none; /* Remove underline from the link */ 
border: none; 
border-radius: 5px; /* Rounded corners */ 
cursor: pointer; 
font-weight: bold; 
transition: background-color 0.3s ease; /* Smooth hover effect */ 
} 

.button:hover { 
background-color: #0056b3; /* Change color on hover */ 
} 

.modal-xl {
    max-width: 80%; /* % of screen width */
  }