/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* BODY */
body {
    background: linear-gradient(120deg, #f3f4ff, #ffffff);
}

/* SECTION */
.section {
    /* text-align: center;
    padding: 60px 20px; */

     text-align: center;
    padding: 40px 20px 20px;
}

/* TOP BADGE */
.top-badge {
    display: inline-block;
    background: #e9d5ff;
    color: #6b21a8;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* HEADING */
h1 {
    font-size: 42px;
    color: #1e3a8a;
}

.section p {
    color: #6b7280;
    margin: 10px 0 40px;
}

/* CARDS CONTAINER */
.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.card {
    width: 300px;
    padding: 25px;
    border-radius: 25px;
    color: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    overflow: hidden;

    /* IMPORTANT FIX */
    display: flex;
    flex-direction: column;
    min-height: 520px;
}


/* TEXT */
.card h2 {
    font-size: 25px;
    text-align: center;
}

.card h3 {
    font-size: 35px;
    margin: 5px 0;
    text-align: center;
}

.card span {
    font-size: 20px;
    text-align: center;
}

/* ICON */
.icon {
    font-size: 50px;
    margin-bottom: 5px;
    text-align: center;
}

/* TAG */
.tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    margin: 10px 0;
}

/* LIST */
.card ul {
    margin: 20px 0;
    text-align: left;
    flex-grow: 1; /* pushes button to bottom */
}

.card ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* IMAGE */
.illustration {
    width: 100%;
    margin-top: auto;
}

/* BUTTON */
.card button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: white;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    margin-top: 12px;
    transition: 0.3s;
}

.card button:hover {
    background: #f1f1f1;
    transform: scale(1.03);
}

/* COLORS */
.red {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.green {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.purple {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.orange{
color:#daba08;
}


.brown{
color:#0f8593;
}

/* FEATURES */
.features {
    /* margin-top: 50px; */
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #4f46e5;
}

.feature h4 {
    font-size: 16px;
}

.feature p {
    font-size: 13px;
    color: #6b7280;
}


.features-container{
    display: flex;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card{
    width: 320px;
    height: 140px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: centervertically;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-card:hover{
    transform: translateY(-5px);
}

.feature-card img{
    width: 70px;
    height: 70px;
}

.feature-content h3{
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.feature-content p{
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}


.enroll-btn{
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    background: white;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 12px;
    transition: 0.3s;
}

.enroll-btn:hover{
    background: #f1f1f1;
    transform: scale(1.03);
}
/* RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    .card {
        width: 90%;
    }
}