﻿.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color:#333;
}

    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
    }

.about-section {
    padding: 80px 40px;
    background-color: #f7f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 30px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

    .about-text p {
        margin-bottom: 20px;
        color: #666;
        line-height: 1.6;
        font-size:18px;
    }

.services-section {
    margin-top:50px;
}

    .services-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
        color: #333;
        text-transform: uppercase;
    }

.services-description {
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    font-size: 14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .service-card h3 {
        font-size: 16px;
        margin: 20px;
        color: #333;
    }

    .service-card p {
        font-size: 14px;
        margin: 0 20px 20px;
        color: #666;
        line-height: 1.6;
    }

.values-section {
    padding: 80px 40px;
    background-color: white;
}

    .values-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
        text-align: center;
        color: #333;
    }

.values-description {
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    font-size: 14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: rgb(226, 226, 226) 0px 0px 16px 0px;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #3498db;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}
