/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Section */
header {
    background-color: #002f36;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 36px;
    font-family: 'Roboto', sans-serif;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #d1f767; /* Hover color */
}

/* Hero Section */
#home {
    background-color: #002f36;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

#home h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

#home p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    background-color: #d1f767;
    color: #002f36;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #b0e455;
}

/* About Section */
#about {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

#about h2 {
    font-size: 30px;
    color: #002f36;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

/* Portfolio Section */
#portfolio {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

#portfolio h2 {
    font-size: 30px;
    color: #002f36;
    margin-bottom: 40px;
}

.portfolio-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.portfolio-item {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item h3 {
    font-size: 24px;
    color: #002f36;
    margin-bottom: 10px;
}

.portfolio-item p {
    font-size: 16px;
    color: #333;
}

/* Contact Section */
#contact {
    background-color: #002f36;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact input,
#contact textarea {
    width: 80%;
    max-width: 500px;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

#contact button {
    padding: 12px 25px;
    background-color: #d1f767;
    color: #002f36;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #b0e455;
}

/* Footer Section */
footer {
    background-color: #002f36;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
}

footer a {
    color: #d1f767;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
