    /* RESET */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        /* font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; */
        font-family: "Montserrat", sans-serif;

    }

    body {
        background: linear-gradient(120deg, #ede8dc, #eef2f7);
        color: #1f2937;
        /* padding: 60px 20px; */
        margin-bottom: 50px;
    }

    /* SECTION */
    .library {
        /* max-width: 1100px; */
        /* margin: auto; */
        margin-left: 30px;
        margin-right: 30px;

    }

    /*-- Banner --*/
    .banner-area {

        position: relative;
        min-height: 300px;
        color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
    }

    @media (max-width: 767px) {
        .banner-area {
            background-size: cover;
            max-width: fit-content;
        }
    }

    @media (max-width: 575px) {
        .banner-area {
            background-size: cover;
            max-width: fit-content;
        }
    }


    .banner-title {
        color: #fff;
        text-transform: uppercase;
        font-size: 58px;
        font-weight: 900;
    }

    @media (max-width: 767px) {
        .banner-title {
            font-size: 48px;
        }
    }

    @media (max-width: 575px) {
        .banner-title {
            font-size: 32px;
        }
    }

    .banner-text {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        max-width: 1170px;
        margin: 0 auto;
        width: 100%;
        z-index: 1;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .banner-heading {
        text-align: center;
    }

    /* GRID */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(300px, 1fr));
        gap: 32px;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    @media (max-width: 768px) {
        .card-grid {
            grid-template-columns: 1fr;
        }
    }

    /* CATEGORY */
    .category {
        margin-top: 30px;
    }

    /* BUTTON */
    .category button {
        /* align-self: flex-start; */
        background: #f5f5f5;
        color: #0f172a;
        border: 0.5px solid rgb(177, 177, 177);
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        transition: transform 0.4s ease, background 0.4s ease;
    }

    .category button:hover {
        background: #D95929;
        transform: translateY(3px);
        color: #fff
    }

    .category button.active {
        background: #D95929;
        color: #fff;
    }

    /* CARD */
    .service-card {
        position: relative;
        align-items: center;
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        min-height: 360px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        transition: transform 0.30s ease, box-shadow 0.30s ease;
        display: flex;
        animation: fadeUp 0.7s ease forwards;
        flex-direction: row;
    }

    .service-card h2 {
        color: #D95929;
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 45px 90px rgba(0, 0, 0, 0.2);
    }

    .service-card:hover .info a.button {
        opacity: 1;
    }

    /* LEFT SIDE */
    .left-side {
        flex: 1;
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: flex-start;
        border-right: #D95929 2px solid;

    }

    .service-card:hover .info {
        transform: translateY(0);
    }

    /* IMAGE */
    .service-image {
        height: 200px;
        position: relative;
        flex: 1;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        transition: transform 0.30s ease;
    }

    .cycling-img {
        display: block;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 100%;
        object-fit: contain;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .cycling-img:hover {
        transform: translateX(-50%) scale(1.5);
    }

    /* CONTENT */
    .service-content {
        padding: 26px 28px 1px;
        background-color: #f8f7f6;
    }

    .service-content h2 {
        font-size: 1.6rem;
    }

    .service-content p {
        color: #6b7280;
    }

    .overline-2 {
        width: 100%;
        height: 4px;
        /* background-color: #fccd99; */
        background-image: linear-gradient(90deg, #fccd99, #D95929);
        padding: 4px;

    }


    /* info */
    .info {
        background: linear-gradient(135deg, #D95929);
        color: #ffffff;
        padding: 26px 28px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
    }

    .info a.button {
        align-self: flex-start;
        background: #ffffff;
        color: #0f172a;
        border: none;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
    }

    .info a.button:hover {
        background: #f5f5f5;
        transform: translateY(3px);

    }

    .info p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* ENTRY ANIMATION */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }