/*==========================================
Course Fee Section
==========================================*/

:root{

    --primary:#c2185b;
    --primary-light:#fdebf2;
    --text:#222;
    --grey:#666;
    --border:#ececec;
    --shadow:0 8px 30px rgba(0,0,0,.08);
    --radius:20px;

}

.course-fee-section{

    position:relative;
    overflow:hidden;

}

.course-fee-section+.course-fee-section{

    border-top:1px solid #f3f3f3;

}

/*==========================================
Heading
==========================================*/

.section-heading{

    margin-bottom:45px;

}

.section-heading .sub-heading{

    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:var(--primary-light);
    color:var(--primary);
    font-weight:600;
    margin-bottom:15px;

}

.section-heading .main-heading{

    font-size:40px;
    font-weight:700;
    color:var(--text);
    margin:0;
    line-height:1.3;

}

/*==========================================
Pricing Wrapper
==========================================*/

.pricing-wrapper{

    margin-bottom:25px;

}

.price-card{

    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
    border:2px solid transparent;
    height:100%;

}

.price-card:hover{

    transform:translateY(-8px);
    border-color:var(--primary);

}

.room-image{

    overflow:hidden;

}

.room-image img{

    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    transition:.5s;

}

.price-card:hover img{

    transform:scale(1.08);

}

.price-card-body{

    padding:25px;

}
.price-card-body h3{

    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    color:var(--text);

}
.price-card-body .h3{

    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    color:var(--text);

}

.price-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px dashed #ddd;

}

.price-row:last-child{

    margin-bottom:15px;

}

.price-row span{

    color:var(--grey);
    font-size:17px;

}

.price-row strong{

    color:var(--primary);
    font-size:22px;
    font-weight:700;

}

/*==========================================
Primary Button
==========================================*/

.primary-btn{

    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    height:54px;
    background:var(--primary);
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.primary-btn:hover{

    color:#fff;
    transform:translateY(-3px);

}

/*==========================================
Reusable Box
==========================================*/

.course-box{

    margin-top:45px;
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:35px;
    border:1px solid #f2f2f2;

}

.box-header{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
    padding-bottom:18px;
    border-bottom:1px dashed #ddd;

}

.box-header i{

    width:52px;
    height:52px;
    background:var(--primary-light);
    color:var(--primary);
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;

}

.box-header h3{

    margin:0;
    font-size:28px;
    font-weight:700;

}
/*==========================================
Upcoming Batch Cards
==========================================*/

.batch-card{

    height:100%;
    padding:30px;
    background:#fff;
    border:2px solid #f3f3f3;
    border-radius:18px;
    transition:.35s;

}

.batch-card:hover{

    border-color:var(--primary);
    transform:translateY(-5px);

}
.batch-card .h4{

    color:var(--primary);
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;

}
.batch-card h4{

    color:var(--primary);
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;

}

.batch-card p{

    color:var(--grey);
    margin-bottom:18px;
    line-height:1.7;

}

.batch-card .slots{

    display:inline-block;
    background:var(--primary-light);
    color:var(--primary);
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;

}


/*==========================================
Course Detail Cards
==========================================*/

.detail-card{

    display:flex;
    align-items:flex-start;
    gap:18px;
    height:100%;
    padding:25px;
    border-radius:18px;
    border:2px solid #f5f5f5;
    transition:.35s;
    background:#fff;

}

.detail-card:hover{

    border-color:var(--primary);
    transform:translateY(-5px);

}

.detail-icon{

    width:58px;
    height:58px;
    flex-shrink:0;
    background:var(--primary-light);
    color:var(--primary);
    border-radius:14px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;

}

.detail-content{

    flex:1;

}
.detail-content .h5{

    margin-bottom:8px;
    font-size:18px;
    font-weight:700;
    color:var(--text);

}
.detail-content h5{

    margin-bottom:8px;
    font-size:18px;
    font-weight:700;
    color:var(--text);

}

.detail-content p{

    margin:0;
    color:var(--grey);
    line-height:1.7;

}


/*==========================================
Notice Cards
==========================================*/

.notice-card{

    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:20px 22px;
    border-left:5px solid var(--primary);
    background:#fff7fa;
    border-radius:14px;
    margin-bottom:18px;

}

.notice-card:last-child{

    margin-bottom:0;

}

.notice-card i{

    color:var(--primary);
    margin-top:5px;
    font-size:18px;

}

.notice-card div{

    color:#444;
    line-height:1.8;

}

.notice-card strong{

    color:var(--primary);

}


/*==========================================
Spacing
==========================================*/

.course-box+.course-box{

    margin-top:40px;

}


/*==========================================
Responsive
==========================================*/

@media (max-width:1199px){

    .section-heading .main-heading{

        font-size:34px;

    }

}


@media (max-width:991px){

    .course-box{

        padding:25px;

    }

    .price-card-body{

        padding:20px;

    }

    .price-card-body h3{

        font-size:24px;

    }

    .box-header{

        margin-bottom:25px;

    }

    .box-header h3{

        font-size:24px;

    }

}


@media (max-width:767px){

    .section-heading{

        margin-bottom:35px;

    }

    .section-heading .main-heading{

        font-size:28px;

    }

    .price-row{

        font-size:15px;

    }

    .price-row strong{

        font-size:20px;

    }

    .detail-card{

        padding:18px;

    }

    .detail-icon{

        width:50px;
        height:50px;
        font-size:18px;

    }

    .batch-card{

        padding:22px;

    }

    .course-box{

        padding:20px;

    }

    .box-header{

        gap:12px;

    }

    .box-header i{

        width:46px;
        height:46px;
        font-size:18px;

    }

    .box-header h3{

        font-size:22px;

    }

}


@media (max-width:575px){

    .course-fee-section{

        padding-top:45px;
        padding-bottom:45px;

    }

    .price-card-body{

        padding:18px;

    }

    .price-card-body h3{

        font-size:22px;

    }

    .primary-btn{

        height:50px;

    }

    .notice-card{

        padding:18px;

    }

}



		.booking-card{

    background:#fff;
    border:2px solid #c2185b;
    border-radius:22px;
    padding:30px;
    overflow:hidden;
    position:relative;

}

.booking-card::before{

    content:'';
    position:absolute;
    right:5%;
    top:50%;
    transform:translateY(-50%);
    width:300px;
    height:300px;
    background:url(images/mandala.png) center/contain no-repeat;
    opacity:.05;
    pointer-events:none;

}

.booking-image img{

    width:100%;
    border-radius:18px;
  
    object-fit:cover;

}

.section-title{

    font-size:2rem;
    font-weight:700;
    margin-bottom:10px;
    color:#222;
    font-family:Georgia, serif;

}

.subtitle{

    color:#666;
    margin-bottom:25px;

}

.booking-list{

    display:flex;
    flex-direction:column;
    gap:8px;

}

.booking-item{

    display:flex;
    align-items:center;
    gap:15px;
    padding-bottom:8px;
    border-bottom:1px dashed #d9d9d9;

}

.booking-item:last-child{

    border:none;

}

.booking-item i{

    width:30px;
    height:30px;
    background:#f9dce7;
    color:#c2185b;
    border-radius:6px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
    flex-shrink:0;

}

.booking-item span{

    font-size:18px;
    color:#333;

}

.highlight-text{

    margin-top:25px;
    font-weight:600;
    color:#444;
    font-size:18px;

}

.booking-quote{

    background:#c2185b;
    color:#fff;
    padding:22px;
    border-radius:18px;
    text-align:center;
    font-size:24px;
    font-family:Georgia, serif;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

@media(max-width:991px){

.booking-card{

padding:20px;

}

.section-title{

font-size:30px;

}

.booking-item span{

font-size:16px;

}

.booking-quote{

font-size:18px;

}

}