﻿/* General Container Styles */
.erp-services-container {
    font-family: "Poppins", sans-serif;
    padding: 0rem 0rem 0rem 0rem;
    /* background: linear-gradient(135deg, #1a1a1a96, #4f94d4bf, #d6cfcfa1); */
    color: #333;
}

.header-section {
    position: relative;
    background: url('/Images/pexels-act25.jpg') center/cover no-repeat;
    height: 60vh;
}

.p-desc {
    font-size: 1.4rem;
    color: #111;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.p-descrip {
    font-size: 1.6rem;
    color: white;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.about-description h2, .philosophy h2, .what-sets-us-apart h2, .promise h2 {
    color: white;
    font-size: 2.3rem;
    font-weight: 500;
    text-decoration: underline;
    padding: 3px;
}

.about-description .p-desc {
    font-size: 1.6rem;
    color: white;
    text-align: justify;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: system-ui;
}

.what-sets-us-apart ul li {
    color: white;
    font-size: 1.6rem;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    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;
    animation: slideInDown 1.5s ease-out;
}

.small-description {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    padding: 0 2rem;
    width: 35%;
    animation: fadeInUp 2s ease-out;
}

.small-p {
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Service Card Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding-bottom: 7rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    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 {
    background: linear-gradient(135deg, #1a1a1a96, #4f94d4bf, #d6cfcfa1);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    font-size: 22px;
    margin: -15px -2rem 15px -2rem;
}

.service-description {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-details,
.service-importance {
    margin-top: 1rem;
}

    .service-details h3,
    .service-importance h3 {
        font-size: 1.6rem;
        color: #1e4e5f;
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .service-details ul {
        list-style-type: disc;
        padding-left: 1.5rem;
        color: #555;
    }

        .service-details ul li {
            margin-bottom: 0.5rem;
            font-size: 1.6rem;
        }

    .service-importance p {
        color: #555;
        font-size: 1.6rem;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


@media (min-width:768px) and (max-width:991px) {
}

@media (max-width:767px) {
    .header-title {
        font-size: 1.5rem;
    }

    .small-description {
        font-size: 1.2rem;
        width: 85%;
    }

    .small-p {
        font-size: 1.3rem;
    }

    .service-title {
        font-size: 13px;
    }

    .service-description {
        font-size: 1.4rem;
    }

    .service-details h3, .service-importance h3 {
        font-size: 1.4rem;
    }

    .service-details ul li {
        font-size: 1.4rem;
    }

    .service-importance p {
        font-size: 1.4rem;
    }
}

@media (max-width:320px) {
}
