/* General Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f6fa;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #F8F8F8;
    color: #333333;
}

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

/* Header Styles */
header {
    background: #2A5A8F;
    background-image: url('images/background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #2A5A8F 3px solid;
    text-align: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

header .container {
    position: relative;
    z-index: 1;
}

header h1 {
    margin: 0;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

header .tagline {
    font-size: 1.1em;
    margin-top: 0;
    font-family: 'Open Sans', sans-serif;
}

header nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

header nav ul li {
    display: inline;
    padding: 0 15px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

header nav a:hover {
    color: #FF8C00;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background: #2A5A8F;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.hero-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    display: inline-block;
    color: #fff;
    background: #FF8C00;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-primary:hover {
    background: #E67B00;
}

/* About Section Styles */
.about-section {
    background: #fff;
    padding: 60px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 300px;
}

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

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin: 0;
}

/* Section Styling */
section {
    padding: 40px 0;
    margin-bottom: 20px;
}

section:nth-of-type(even) {
    background: #E2E2E2;
}

section h2 {
    text-align: center;
    color: #2A5A8F;
    margin-bottom: 30px;
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Services Section */
.service-category {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-category h3 {
    color: #2A5A8F;
    margin-top: 0;
    border-bottom: 2px solid #E2E2E2;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.service-list p {
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Service Area Section */
.service-area-section {
    background: #2A5A8F;
    color: #fff;
    text-align: center;
}

.service-area-section h2 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.service-area-section p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

.service-area-section p strong {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #FF8C00;
}

/* Contact Section */
.contact-section {
    text-align: center;
    background: #fff;
    color: #2A5A8F;
    padding: 60px 0;
}

.contact-section h2 {
    color: #2A5A8F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-section p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #2A5A8F;
}

.contact-section .contact-info a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}

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

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333333;
    color: #fff;
    font-size: 0.9em;
    font-family: 'Open Sans', sans-serif;
}

/* Projects Page Specific Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.project-card h3 {
    color: #2A5A8F;
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.project-details {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.category {
    color: #FF8C00;
    font-weight: 600;
}

.location {
    color: #666;
}

.project-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0.5rem 0;
    justify-content: flex-start;
}

.project-gallery img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.project-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(44,62,80,0.18);
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav ul li {
        display: block;
        padding: 5px 0;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-section h2 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    section {
        padding: 30px 0;
    }

    section h2 {
        font-size: 1.8em;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .about-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

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

    .project-gallery {
        justify-content: center;
    }
    .project-gallery img {
        width: 80px;
        height: 56px;
    }
}
