.editable-block {
    border: 1px dashed orange;
    padding: 10px;
    border-radius: 5px; /* optional: slight rounding */
}
.editable-block .action-icons i {
    color: brown;
}
.hover-box {
    transition: all 0.3s ease;
    border-radius: 12px;
    background-color: #ffffff; 
}

.hover-box:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    z-index: 2;
} 

.normal-hover-box {
    transition: all 0.3s ease;
    border-radius: 12px;
    background-color: #ffffff; 
}

.normal-hover-box:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    z-index: 2;
} 

.contact-banner {
    transition: all 0.4s ease-in-out;
    transform: scale(1);
}

.contact-banner:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
} 

.contact-banner i,
.contact-banner img {
    transition: transform 0.3s ease;
}

.contact-banner:hover i,
.contact-banner:hover img {
    transform: scale(1.1);
}

.border-radius-25 {
    border-radius: 25px;
}

.social-icon-round i {
    transition: transform 0.3s ease;
}

.social-icon-round li:hover i {
    transform: scale(1.1);
}

.media-img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.review-card:hover .media-img {
    transform: scale(1.1);
}

.swiper-pagination {
    position: relative;
    bottom: 0;
    text-align: center;
}

.review-card-box {
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: scale(1.05);
    z-index: 2;
}

.carousel-control-next, .carousel-control-prev {
    width: 0%!important;
}

.text-align-justify {
    text-align: justify;
}

@media (max-width: 767.98px) {
    .carousel-item .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .carousel-item .review-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    .review-card-box {
        width: 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .review-card-box img.media-img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
    }

    .contact-banner {
        flex-direction: column;
        height: auto !important;
        text-align: center;
        padding: 1.5rem 1rem;
        border-radius: 0.75rem;
        overflow: hidden;
    }

    .contact-banner > div {
        width: 100% !important;
        justify-content: center !important;
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }

    .contact-banner > div:last-child {
        margin-bottom: 0;
    }

    .contact-image {
        height: 120px !important;
        margin-top: -20px !important;
    }

    .contact-banner i,
    .contact-banner a {
        font-size: 1rem !important;
        word-break: break-word;
    }

    .exam-card-header {
        background-color: #0d6efd;
        padding: 1rem 1.5rem;
    }

    .exam-card-title {
        color: #fff;
        margin: 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .exam-board-box {
        padding: 10px;
        border: 1px solid #dee2e6;
        border-radius: 0.5rem;
        transition: transform 0.3s ease;
        background-color: #f8f9fa;
    }

    .exam-board-box:hover {
        transform: scale(1.03);
        background-color: #ffffff;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    }

    .board-img {
        max-height: 80px;
        object-fit: contain;
    }

    .whyChooseHeader h6 {
        text-align: center;
        font-size: 1rem;
    }

    .whyChooseBody p {
        font-size: 0.95rem;
    }
}
