:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --light-bg: #f9f9f9;
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), 
                url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4em 1em;
    text-align: center;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5em;
    animation: fadeInDown 1s ease-out;
}

header p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    animation: fadeInUp 1s ease-out;
}

/* Navigation Styles */
.nav-wrapper {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2em;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Main Content Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2em 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.feature-box {
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: var(--accent-color);
    margin-bottom: 1em;
    font-family: 'Playfair Display', serif;
}

/* Partners List Section (Hidden) */
.partners-list {
    display: none; /* Hide this section as requested */
    margin: 2em 0;
    padding: 2em;
    background: var(--light-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.partners-list-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1.8em;
}

.partners-links {
    text-align: center;
    line-height: 2;
    color: var(--text-color);
}

.partners-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    white-space: nowrap; 
}

.partners-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.partners-section {
    background: white;
    padding: 2em;
    border-radius: 10px;
    margin: 2em 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.partner-logo {
    background: var(--light-bg);
    padding: 2em;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    color: white;
    padding: 2em;
    margin-top: 2em;
    text-align: center;
}

.social-icons {
    margin-top: 1em;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        flex-direction: column;
        padding: 1em;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

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

    .nav-links a {
        padding: 1em;
        text-align: center;
    }

    header {
        padding: 2em 1em;
    }

    .container {
        padding: 1em;
    }

    .feature-box {
        padding: 1.5em;
    }

    .partner-logos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 1em;
    }

    .partners-links {
        line-height: 1.8;
    }
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5em;
}

.project-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5em;
}

.project-content ul {
    list-style: none;
    margin: 1em 0;
}

.project-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.stat-box {
    text-align: center;
    padding: 2em;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-box i {
    font-size: 2em;
    color: var(--accent-color);
    margin-bottom: 0.5em;
}

.stat-box h3 {
    font-size: 2em;
    color: var(--primary-color);
}

.featured-project {
    margin: 2em 0;
}

.project-showcase {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-details {
    padding: 2em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2em;
    margin: 2em 0;
}

.contact-info {
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-block {
    display: flex;
    align-items: flex-start;
    margin: 1.5em 0;
    gap: 1em;
}

.info-block i {
    font-size: 1.5em;
    color: var(--accent-color);
}

.contact-form {
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
}

.submit-btn {
    background: var(--accent-color);
    color: white;
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #d35400;
}

.map-section {
    margin: 2em 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.faq-item {
    background: white;
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}