body {
    font-family: 'Noto Serif Bengali', serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

.custom-courses {
    padding: 20px;
}

.custom-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

.custom-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.custom-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
    margin: auto;
    position: relative;
    text-align: center;
}

.custom-thumb img {
    width: 100%;
    border-radius: 10px 10px 0 0; /* Rounded corners at top */
}

.custom-tutor {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.custom-tutor img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.custom-info h3 {
    margin: 0;
}

.custom-price {
    margin: 10px 0;
}

.original-price {
    color: red;
    font-size: 18px;
    font-weight: bold;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 20px;
    color: #0d5ef4;
    font-weight: bold;
}

.savings {
    display: block;
    color: #0d5ef4;
    font-size: 14px;
    margin-top: 5px;
}

.custom-ratings {
    margin: 10px 0;
}

.stars {
    color: yellow;
}

.star-icon {
    font-size: 18px;
}

.rating-count {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.custom-title {
    font-size: 18px;
    margin: 10px 0;
}

.custom-inline-btn {
    display: inline-block;
    background-color: #0d5ef4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.custom-inline-btn:hover {
    background-color: #f20e10;
    color: white;
}

.custom-tutor h3 {
    font-size: 16px;
}
.custom-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.coming-soon {
    position: relative;
    overflow: hidden;
}
.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 24px;
    padding: 20px;
    border-radius: 5px;
    z-index: 10;
    text-align: center;
}
