body {
    padding-top: 70px;
}

#main {
    padding-top: 10px;
}

.services {
    padding: 0 0 30px;
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    color: #222222;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #eab203;
    bottom: -10px;
    left: calc(50% - 25px);
}

.section-title h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    color: #333;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: #eab203;
    bottom: 0;
    left: 0;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #fcfcfc;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0%;
    background: linear-gradient(to bottom, #eab203, #f7e7a2);
    transition: height 0.5s ease-out;
}

.service-card:hover::before {
    height: 100%;
}

.service-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 28px;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item::before {
    content: "\f00c";
    font-family: "bootstrap-icons";
    color: #eab203;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

.service-item b {
    font-weight: 600;
    color: #222;
    display: block;
    margin-bottom: 5px;
}

.service-item p {
    margin: 0;
    color: #444;
    line-height: 1.5;
}

.category-icon {
    font-size: 40px;
    color: #eab203;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.3s;
}

.service-card:hover .category-icon {
    opacity: 0.3;
    transform: scale(1.1) rotate(10deg);
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s, opacity 0.6s;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 26px;
    }

    .section-title h4 {
        font-size: 20px;
    }

    .service-card {
        padding: 20px;
    }
}