
body {
    font-family: "Segoe UI", sans-serif;
    background: #fff7fb;
    color: #241333;
}

.main-navbar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(80,30,90,0.08);
}

.navbar-brand {
    font-weight: 900;
    color: #241333;
}

.brand-icon {
    background: linear-gradient(135deg, #ff4fa3, #7b2cff);
    color: #fff;
    padding: 8px 13px;
    border-radius: 14px;
    margin-right: 8px;
}

.nav-link {
    font-weight: 700;
    color: #241333;
}

.nav-btn,
.main-btn {
    background: linear-gradient(135deg, #ff4fa3, #7b2cff);
    color: #fff;
    border-radius: 30px;
    padding: 11px 24px;
    font-weight: 800;
    text-decoration: none;
    border: none;
}

.hero-section {
    padding: 150px 0 80px;
    background:
        radial-gradient(circle at 10% 20%, #ffd7ec, transparent 25%),
        radial-gradient(circle at 90% 10%, #ded2ff, transparent 25%),
        linear-gradient(135deg, #fff7fb, #ffffff);
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: #ffe6f4;
    color: #d63384;
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 58px;
    font-weight: 950;
    line-height: 1.08;
}

.gradient-text {
    background: linear-gradient(135deg, #ff4fa3, #7b2cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 18px;
    color: #65556f;
    margin: 20px 0 30px;
}

.hero-card {
    background: #fff;
    border-radius: 36px;
    padding: 25px;
    box-shadow: 0 30px 80px rgba(255,79,163,0.18);
    position: relative;
}

.hero-card img {
    width: 100%;
    border-radius: 28px;
}

.float-card {
    background: #fff;
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(60,30,90,0.15);
    position: absolute;
    left: -25px;
    bottom: 40px;
    font-weight: 800;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 950;
}

.feature-card,
.category-card,
.course-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 18px 45px rgba(70,30,90,0.08);
    border: 1px solid #f3d7e8;
    transition: .3s;
}

.feature-card:hover,
.category-card:hover,
.course-card:hover {
    transform: translateY(-8px);
}

.icon-box {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff4fa3, #7b2cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.course-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 18px;
}

.course-price {
    font-size: 22px;
    font-weight: 950;
    color: #d63384;
}

.stats-section {
    background: linear-gradient(135deg, #ff4fa3, #7b2cff);
    color: #fff;
    padding: 70px 0;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 42px;
    font-weight: 950;
}

.cta-section {
    background: #fff;
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #fff1f8, #f4eeff);
    border-radius: 36px;
    padding: 50px;
    text-align: center;
}

.footer-section {
    background: #241333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-section a {
    display: block;
    color: #ead7f5;
    text-decoration: none;
    margin-bottom: 8px;
}

.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #fff1f8, #f4eeff);
    text-align: center;
}

.page-hero h1 {
    font-size: 46px;
    font-weight: 950;
}

@media(max-width:768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .float-card {
        position: static;
        margin-top: 15px;
    }

    .section-title h2 {
        font-size: 30px;
    }
}
.auth-page-card {
    max-width: 900px;
    background: #fff;
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(255, 79, 163, 0.14);
    border: 1px solid #f3d7e8;
}

.auth-page-card label {
    font-weight: 700;
}

.auth-page-card .form-control,
.auth-page-card .form-select {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid #eadff0;
}

.auth-page-card .form-control:focus,
.auth-page-card .form-select:focus {
    border-color: #ff4fa3;
    box-shadow: 0 0 0 0.2rem rgba(255,79,163,0.12);
}

.contact-info-card {
    background: linear-gradient(135deg, #ff4fa3, #7b2cff);
    color: #fff;
    border-radius: 34px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 25px 70px rgba(255, 79, 163, 0.20);
}

.contact-info-card h3 {
    font-weight: 900;
}

.contact-line {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
    font-weight: 700;
}

.contact-line i {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.20);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


