/* Home/Index Page Styles */

.hero {
    background: linear-gradient(135deg, #1a7a7a 0%, #2ca8a8 100%);
    color: white;
    padding: 150px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Stats Section */
.stats {
    background: var(--light-bg);
}

.stats .card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.stats .card:hover {
    transform: translateY(-5px);
    background: white;
}

.stats h3 {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 15px 0;
}

.stats p {
    color: var(--text-light);
    font-size: 16px;
}

.stat p {
    color: var(--text-light);
    font-weight: 600;
}

/* Services Preview */
.services-preview {
    background: var(--light-bg);
}

.service-card i {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    background: white;
}

.why-us-list {
    list-style: none;
}

.why-us-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.why-us-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    flex-shrink: 0;
}

.why-us-list h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.why-us-list p {
    color: var(--text-light);
    font-size: 15px;
}

.why-us-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    opacity: 0.8;
}

/* Featured Projects */
.featured-projects {
    background: var(--light-bg);
}

.project-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-image {
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .why-us-image {
        margin-top: 40px;
    }

    .image-placeholder {
        height: 300px;
        font-size: 70px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .stat h3 {
        font-size: 28px;
    }

    .why-us-list li {
        gap: 15px;
        margin-bottom: 20px;
    }

    .why-us-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .image-placeholder {
        height: 200px;
        font-size: 50px;
    }
}
