/* Resources Grid Styling */
.single_step_box {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.single_step_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.step_thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.step_thumb img {
    transition: all 0.5s ease;
}

.single_step_box:hover .step_thumb img {
    transform: scale(1.1);
}

.step_content {
    padding: 25px;
    position: relative;
}

.step_number {
    position: absolute;
    top: -15px;
    right: 25px;
    background: #a50011;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.step_number span {
    color: #fff;
}

.step_title h3 {
    font-size: 20px;
    margin: 15px 0;
    color: #002c2a;
    font-weight: 600;
}

.step_title h3 a {
    color: inherit;
    text-decoration: none;
}

.step_title h3 a:hover {
    color: #a50011;
}

.step_btn {
    margin-top: 20px;
}

.step_btn a {
    color: #a50011;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.step_btn a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.step_btn a:hover i {
    transform: translateX(5px);
}

/* Pagination Styling */
.pagination {
    margin-top: 40px;
}

.pagination .page-link {
    color: #a50011;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pagination .page-item.active .page-link {
    background-color: #a50011;
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    color: #a50011;
}

/* Section Styling */
.steps_area {
    background: #E9EBEC;
    padding: 80px 0;
    border-radius: 20px 20px 0 0;
}

.special_step_padding {
    margin-top: 10px;
    margin-bottom: 70px;
}

.section_title {
    margin-bottom: 50px;
}

.section_title h1 {
    color: #002c2a;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section_title p {
    color: #6b7a7a;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}
