:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #333;
    --background-color: #f4f4f4;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 200px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

main {
    padding-top: 80px;
}

.hero {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.features, .recent-projects, .partners-section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.feature-grid, .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item, .project-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-item h3, .project-item h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.more-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.testimonial {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

cite {
    font-style: normal;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.page-header {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.services {
    padding: 80px 0;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-item h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: left;
}

.cta {
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}

.cta .cta-button {
    background-color: #fff;
    color: var(--secondary-color);
}

.cta .cta-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.projects {
    padding: 80px 0;
}

.project-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.project-item h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: left;
}

.project-item p {
    margin-bottom: 10px;
}

.about-content {
    padding: 80px 0;
}

.about-content .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content .container.reverse {
    flex-direction: row-reverse;
}

.about-text, .about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.team {
    background-color: #f9f9f9;
    padding: 80px 0;
}

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

.team-member {
    text-align: center;
}

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

.values {
    padding: 80px 0;
}

.values ul {
    list-style-type: none;
    padding: 0;
}

.values li {
    margin-bottom: 20px;
}

.contact-content {
    padding: 80px 0;
}

.contact-content .container {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 20px;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.social-links a {
    color: var(--secondary-color);
    text-decoration: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.map {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.partners {
    padding: 80px 0;
}

.partners ul {
    list-style: none;
    padding: 0;
}

.partners li {
    margin-bottom: 10px;
}

.partners a {
    color: var(--secondary-color);
    text-decoration: none;
}

.partners-section {
    display: none;
    padding: 40px 0; /* Adjust padding as needed */
    background-color: var(--background-color);
}

.partners-section p {
    text-align: center;
    line-height: 1.8;
}

.partners-section a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 5px; /* Spacing between links */
    white-space: nowrap; /* Prevent links from breaking */
}

.partners-section a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .project-item img {
        height: 200px;
    }

    .about-content .container {
        flex-direction: column;
    }

    .about-content .container.reverse {
        flex-direction: column;
    }

    .contact-content .container {
        flex-direction: column;
    }
}