.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/slider/slider\ home/slider2.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    margin-top: 100px;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.company-focus {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.company-focus p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #202820;
    margin-bottom: 20px;
    text-align: justify;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.service-card:nth-child(1) { animation: fadeInUp 0.8s ease forwards 0.4s; }
.service-card:nth-child(2) { animation: fadeInUp 0.8s ease forwards 0.6s; }
.service-card:nth-child(3) { animation: fadeInUp 0.8s ease forwards 0.8s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}


  
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }

    .hero-section h1 {
        font-size: 2em;
    }

    .services {
        grid-template-columns: 1fr;
    }
.company-focus p {
        font-size: 14px; 
    }
    .service-card {
        margin-bottom: 20px;
        padding: 20px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 15px;
    }
}
