.image-container img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05); /* Slight zoom */
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px; /* Enhanced shadow */
}

/* Hover effect for list items */
.steps li {
    position: relative;
    padding: 10px;
    font-size: 16px;
    transition: color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.steps li:hover {
    color: #24335E; /* Change text color */
    background-color: rgba(36, 51, 94, 0.1); /* Add background highlight */
    border-radius: 5px;
}

/* Hover effect for titles */
.left-title h5 {
    font-weight: bold;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.left-title h5:hover {
    color: #24335E; /* Change color */
    text-decoration: underline; /* Add underline */
}
.image-container img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px; /* Enhanced shadow */
}

/* Hover effect for the text container */
.text-container {
    transition: transform 0.3s ease, color 0.3s ease;
}

.text-container:hover {
    transform: translateX(10px); /* Move slightly to the right */
    color: #24335E; /* Text color change */
}

/* Button hover effect */
.apply-btn .btn {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.apply-btn .btn:hover {
    background-color: #24335E; /* Button background color */
    color: #fff; /* Button text color */
}
.category-card-link {
    text-decoration: none;
    color: inherit;
}

.category-card-link .card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
}

.category-card-link .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.hover-effect {
    width: 100%; /* Makes the image responsive */
    border-radius: 12px; /* Adds rounded corners */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

.hover-effect:hover {
    transform: scale(1.1); /* Slightly enlarges the image */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* Adds shadow on hover */
}
    .custom-card {
        width: 18rem;
        margin: 5px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .custom-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .card-title {
        font-size: 1.25rem;
        font-weight: bold;
    }

    .card-text {
        font-size: 0.95rem;
        color: #555;
    }
    
    
    
    
    
    
/*footer section*/

.footer-two{
    /*background: url(<?php echo base_url(); ?>/assets/public/static/images/shape-footer-bg.png) no-repeat left top;*/
    padding: 60px 0px;
    background: ;
    
}
.f-item .logo img{
    max-width: 30%;
}
.f-item .widget-title{
    font-size: 30px;
    color: #000;
    font-weight: 700;
}
















