/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background: #003366;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
}

.nav-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: background 0.3s;
}

.nav-links li a:hover {
    background: #FF6600;
    color: #fff;
    border-radius: 5px;
}

.banner {
    background: url('images/banner.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.banner-content {
    max-width: 60%;
    text-align: center;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.5rem;
}

.cta-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-primary {
    background: #FF6600;
}

.btn-secondary {
    background: #003366;
}

.cta-buttons a:hover {
    opacity: 0.8;
}

.section-padding {
    padding: 60px 20px;
}

h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.intro-text, .project-details, .contact-intro {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.2rem;
    text-align: center;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 30px;
    justify-items: center;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #003366;
}

.feature {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    text-align: center;
    flex: 1 1 300px;
    padding: 10px;
}

footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
