
.category-style1.v2 {
    background-color: #018790;   /* card bg */
    border-radius: 0px 50px 0px 50px;
    padding: 25px 15px;
    box-shadow: 6px 6px 0px #005461;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.category-label{
    color: #ffffff;
}

.category-style1.v2:hover { 
   background-color:#00B7B5;   /* hover bg */
    transform: translateY(-5px);
}

.category-grade {
    background: #f9036e;
    color: #ffffff;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.grade-label {
    font-size: 12px;
    display: block;
}

.grade-name {
    font-size: 18px;
    font-weight: bold;
} 

.category-name a {
    font-size: 20px;        /* text size */
    font-weight: 600;
    color: #ffffff;         /* custom color */
}

/* Keep same color on hover */
.category-name a:hover,
.category-name a:focus,
.category-name a:active {
    color: #ffffff;
    text-decoration: none;
}



/* new */

/* Service Box Container */
.service-style2 {
    background-color: #FCF6D9;      /* white background */
    border-radius: 12px;            /* rounded corners */
    padding: 25px 20px;
    margin-bottom: 30px;
    
    /* Box shadow for soft 3D effect */
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect */
.service-style2:hover {
    -webkit-box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Icon Container */
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    position: relative;
}

/* Icon Shapes */
.service-shape1, .service-shape2, .service-shape3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #110083;
}

.service-shape2 {
    transform: scale(0.8);
    background-color: #6055f3;
}

.service-shape3 {
    transform: scale(0.6);
    background-color: #0089bb;
}

/* Icon Image */
.service-icon img {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Service Title */
.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #000f9a;           /* main theme color */
    margin-bottom: 10px;
    text-transform: capitalize;
}

/* Remove link hover underline & keep color */
.service-title a,
.service-title a:hover,
.service-title a:focus,
.service-title a:active {
    color: inherit;
    text-decoration: none;
}

/* Service Text */
.service-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

/* Responsive spacing */
@media (max-width: 767px) {
    .service-style2 {
        padding: 20px 15px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-text {
        font-size: 13px;
    }
}

/* icon style */

.list-style1 ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.list-tick {
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background-color: #0234a7;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
}



