﻿:root {
    --primary: #2c3e50;
    --primary1: #1a5276;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --light1: #f8f9fa;
    --dark: #2c3e50;
    --success: #27ae60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--light);
}
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
}
.h2Light {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--light1);
}
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
}
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
}
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

    .logo i {
        margin-right: 10px;
        color: var(--accent);
    }

.nav-links {
    display: flex;
    list-style: none;
}

    .nav-links li {
        margin-left: 1.5rem;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: var(--accent);
        }

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/Images/photo-1517245386807-bb43f82c33c4.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent);
}

    .btn:hover {
        background-color: transparent;
        color: var(--accent);
    }

.section-title {
    text-align: center;
    margin: -1rem 0 2rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--accent);
    }
    .section-title h2 {
        font-size: 2.4rem;
        color: var(--primary);
        position: relative;
        padding-bottom: 1rem;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }

    .section-title p {
        max-width: 700px;
        margin: 1rem auto 0;
        color: var(--text);
    }
.address-card {
    background: white;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    border-left: 4px solid var(--success);
}

    .address-card h3 {
        color: var(--primary);
        margin-bottom: 1.8rem;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
    }

        .address-card h3 i {
            margin-right: 12px;
            color: var(--secondary);
        }

    .address-card p {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        color: var(--text);
    }

    .address-card i {
        margin-right: 1rem;
        color: var(--primary);
        width: 20px;
    }
/* About Section */
.about {
    padding: 6rem 0;
    background: #f2f6f7;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

    .about-text h2 {
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 1.8rem;
    }

    .about-text p {
        margin-bottom: 1.5rem;
        color: var(--text);
    }
/* Contact Form */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

    .contact-info h3 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
    }

    .contact-info p {
        margin-bottom: 2rem;
        color: var(--text);
    }

.contact-details {
    margin-top: 2rem;
}

    .contact-details p {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .contact-details i {
        margin-right: 1rem;
        color: var(--primary);
        width: 20px;
    }

.contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--light1);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

    .contact-form h3 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        text-align: center;
    }
.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--dark);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem;
    }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

    .submit-btn:hover {
        background: #27ae60;
    }
.services {
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--light);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 4px solid var(--success);
    }

.service-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    font-size: 2.5rem;
    padding: 1.5rem 0;
    text-align: center;
}

.service-content {
    padding: 1.5rem;
}

    .service-content h3 {
        color: var(--primary1);
        margin-bottom: 0.8rem;
    }

    .service-content p {
        color: #666;
        margin-bottom: 1.2rem;
    }

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

    .service-link i {
        margin-left: 5px;
        transition: margin-left 0.3s;
    }

    .service-link:hover i {
        margin-left: 10px;
    }

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 1rem 1rem;
    margin: -3rem 0 2rem;
}

    .cta h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.footer-section p, .footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-section a:hover {
        color: var(--accent);
    }

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            margin: 1.5rem 0;
        }

    .hero h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

