﻿.vat-container {
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* HEADER */
.header-section {
    position: relative;
    height: 60vh;
    background: url('/Images/taxagent.jpeg') center/cover no-repeat;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-title {
    color: #fff;
    font-size: 3rem;
}

.small-description {
    width: 40%;
    text-align: center;
}

.small-p {
    color: #fff;
    font-size: 1.4rem;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 1.5rem;
    padding: 4rem 2rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-title {
    background: linear-gradient(135deg,#000,#333);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.service-description,
.service-details ul li,
.service-importance p {
    font-size: 1.4rem;
}

/* FADE-IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all .6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .header-title {
        font-size: 1.8rem;
    }

    .small-description {
        width: 85%;
    }
}
