﻿.auditing-service-container {
    font-family: "Poppins", sans-serif;
    color: #333;
    padding: 0;
}

/* Header */
.header-section {
    position: relative;
    background: url('../images/index2-slider-7.jpg') center/cover no-repeat;
    height: 60vh;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.header-title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: bold;
    margin-top: 9.5rem;
}

.small-description {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #fff;
    width: 35%;
}

.small-p {
    font-size: 1.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding-bottom: 7rem;
}

.service-card {
    background: #fff;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    }

.service-title {
    font-size: 2rem;
    margin: 0 -1rem 1rem -1rem;
    background: linear-gradient(135deg, #1a1a1a96, #4f94d4bf, #d6cfcfa1);
    color: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 3px;
}

.service-description, .service-importance p, .service-details ul li {
    font-size: 1.5rem;
    color: #555;
}

.service-details h3, .service-importance h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .header-title {
        font-size: 1.8rem;
    }

    .small-description {
        width: 90%;
        font-size: 1.2rem;
    }

    .service-title {
        font-size: 1.7rem;
    }

    .service-description, .service-details h3, .service-importance h3, .service-details ul li, .service-importance p {
        font-size: 1.3rem;
    }
}
