body{
    
    font-family: 'Inter', sans-serif;
}

/* .course-card{
    border-radius:20px;
    overflow:hidden;
    background:white;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.3s;
    position:relative;
    height:100%;
} */


.ast-custom-button{
	color: white !important;
}

.course-card{
    border-radius:20px;
    overflow:hidden;
    background:white;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.3s;
    position:relative;
}


.course-card:hover{
    transform:translateY(-8px);
}

.card-top{
    padding:45px 20px;
    text-align:center;
    color:white;
}

.blue-text{ color:#295394; }
.green-text{ color:#2a724e; }
.purple-text{ color:#7a2861; }
.orange-text{ color:linear-gradient(135deg,#8a4b1f,#c7772d); }

.blue-gradient{ background:linear-gradient(135deg,#1f3c73,#2e5fa4); }
.green-gradient{ background:linear-gradient(135deg,#1d4d36,#2d7a53); }
.purple-gradient{ background:linear-gradient(135deg,#5c1f4d,#8a2d6b); }
.orange-gradient{ background:linear-gradient(135deg,#8a4b1f,#c7772d); }

.icon-box{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:18px;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    border:1px solid rgba(255,255,255,0.3);
}

.card-body-custom{
    padding:30px;
    padding-bottom: 10px;
}

.card-title{
    font-family: 'Playfair Display', serif;
    font-size:20px;
}

.price{
    font-size:28px;
    font-weight:600;
}

.price small{
    font-size:13px;
    color:#777;
}

.course-list{
    list-style:none;
    padding:0;
    margin-top:18px;
}
.course-list li{
    margin-bottom:10px;
    font-size:14px;
}
.course-list li::before{
    content:"✓";
    color:#2d7a53;
    margin-right:8px;
}

.btn-custom{
/*     background:#c79a3b; */
	background: #0067ff;
    color:white;
    padding:10px;
    border-radius:12px;
    font-weight:600;
}
.btn-custom:hover{
/*     background:#b2852e; */
	background:#2157ce;
    color:white;
}

.popular-badge{
    position:absolute;
    top:15px;
    right:40px;
    background:#d4a43c;
    color:white;
    font-size:11px;
    padding:6px 12px;
    border-radius:50px;
    font-weight:600;
}

/* Smooth animation */
#fourthCardRow{
    overflow:hidden;
    transition:all 0.5s ease;
}