:root {
    --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    --maroon: #B80000;
    --primary: #39347b;
    --primary-transparent: #39347b95;
    --light-primary: #6d62c4;
    --light: #F1F4FC;
    --prime-subtle: #a69fda;
    --purple-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.bg-primary-subtle {
    background-color: var(--prime-subtle) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.rounded-circle {
    width: 3.5rem;
    text-align: center;
    height: 3.5rem;
}

.bg-light {
    background-color: var(--light);
}

.text-light-primary {
    color: var(--light-primary);
}

.bg-primary {
    background-color: var(--primary) !important;
}

h2.steps-heading>span {
    background: #f3f3f3;
    padding: 0 10px;
    z-index: 2;
    position: relative;
    font-size: 23px;
    margin-left: 20px;
}

.side-step-box {
    background-color: #fff;
}

span.displaynone {
    display: none;
}

span.displaynone.block {
    display: inline-block;
}

.selectize-input {
    padding: 15px 10px;
}

.message,
message {
    position: absolute;
    bottom: 4px;
    right: 15px;
    color: red;
}

.nav-link:hover {
    color: #fce400;
}

.nav-header {
    position: relative;
    z-index: 999;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.nav-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ================= HERO ================= */
.hero-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    position: relative;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    opacity: .1;
    animation: float 20s infinite
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #7c3aed;
    border-radius: 50%;
    top: -100px;
    right: -50px
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #ec4899;
    border-radius: 50%;
    bottom: 100px;
    left: -50px
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #06b6d4;
    border-radius: 50%;
    top: 50%;
    right: 10%
}

@keyframes float {

    0%,
    100% {
        transform: translate(0)
    }

    50% {
        transform: translate(30px, -30px)
    }
}

.content-container {
    max-width: 1400px;
    margin: auto;
    padding: 20px 40px;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.main-title {
    font-size: 64px;
    font-weight: 900;
    color: #fff
}

.subtitle {
    font-size: 1.38rem;
    color: #a78bfa
}

.tagline {
    color: #ddd;
    margin-bottom: 20px
}

.description {
    color: #eee;
}

/* ================= NAV ================= */
.nav-header {
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 16px 0;
    z-index: 999;
}

.nav-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.nav-title {
    color: #fff;
    font-size: 17px;
    font-weight: 700
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center
}

.nav-item {
    position: relative
}

.nav-link {
    color: #fff;
    font-size: 13px;
    cursor: pointer
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #fff;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15)
}

.nav-item:hover .dropdown-menu {
    display: block
}

.dropdown-item {
    padding: 10px 20px;
    display: block;
    color: #333;
    text-decoration: none
}

.dropdown-item:hover {
    background: #f1f1f1
}

/* ================= CONTENT ================= */
.content-section {
    max-width: 100%;
    margin: auto;
    padding: 0px 0px
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #667eea
}

.section-divider {
    height: 60px;
    background: #f8f9fa
}

@media(max-width:768px) {
    .hero-content {
        grid-template-columns: 1fr
    }

    .main-title {
        font-size: 42px
    }

    .subtitle {
        font-size: 28px
    }
}

.hero-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #7c3aed;
    border-radius: 50%;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #ec4899;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 100px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #06b6d4;
    border-radius: 50%;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}



.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.left-section {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;

    a {
        color: #fff;
        text-decoration: none;
    }
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-active {
    color: #a78bfa !important;
}

.course-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.main-title {
    font-size: 39px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 26px !important;
}

.subtitle {
    font-size: 1.38rem;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-weight: 300;
    font-style: italic;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.features-grid a {
    text-decoration: none;
    display: block;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #7c3aed;
}

.feature-icon {
    font-size: 32px;
    align-self: flex-start;
    width: 100%;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #ffffff;
    box-shadow: var(--purple-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #a78bfa;
}

.btn-secondary:hover {
    background: #a78bfa;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.4);
}

.right-section {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geometric-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.geometric-icon {
    font-size: 120px;
    text-align: center;
    margin-bottom: 24px;
    filter: drop-shadow(0 10px 20px rgba(124, 58, 237, 0.5));
}

.geometric-text {
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accent-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.circle-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .main-title {
        font-size: 56px;
    }

    .subtitle {
        font-size: 36px;
    }

    .illustration-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 40px 24px;
    }

    .main-title {
        font-size: 42px;
    }

    .subtitle {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .illustration-container {
        height: 300px;
    }

    .geometric-card {
        padding: 40px 24px;
    }

    .geometric-icon {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 24px;
    }

    .description {
        font-size: 16px;
    }
}

.schedule-wrapper {
    width: 100%;
    background: #f5f8ff;
    /* light clean background */
    position: relative;
    overflow-y: auto;
    padding: 60px 24px;

    max-width: 100%;
    overflow: hidden;
    /* IMPORTANT */
    padding: 60px 24px;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(37, 99, 235, 0.08);
    /* soft blue */
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-40px) translateX(40px);
        opacity: 0.6;
    }
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.schedule-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-title {
    font-size: 49px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none;
}

.schedule-cards {
    width: 100%;
}

.schedule-card {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    /* KEY */
    align-items: flex-start;
    gap: 28px;
    transition: all 0.3s ease;
    width: 100%;
}

.schedule-card:nth-child(1) {
    animation-delay: 0.2s;
}

.schedule-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.schedule-card:hover::before {
    right: -200%;
}

.schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
    border-color: #2563eb;
}

.card-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #ffffff;
    flex-shrink: 0;
    /* prevents shrinking */
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.schedule-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.card-label {
    font-size: 21px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.card-hours {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
}

.card-details {
    font-size: 16px;
    color: #475569;
}

.timeline-section {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 48px;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.timeline-bullet {
    min-width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;

    position: relative;
    z-index: 2;
}

.timeline-item:not(:last-child) .timeline-bullet::after {
    content: '';
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 135px;
    background: linear-gradient(180deg, #10b981 0%, rgba(16, 185, 129, 0.2) 100%);
}

.timeline-content {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 20px 28px;
    font-size: 16px;
    color: #1e293b;
}

.timeline-content:hover {
    background: #eff6ff;
    border-color: #2563eb;
    transform: translateX(6px);
}

.note-banner {
    margin-top: 40px;
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 14px;
    padding: 20px 32px;
    display: flex;
    gap: 16px;
}

.note-text {
    font-size: 15px;
    color: #1e40af;
    font-weight: 600;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
    }
}

.note-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.note-text {
    font-size: 15px;
    color: #2150ca;
    font-weight: 600;
    font-style: italic;
}

@media (max-width: 768px) {
    .schedule-wrapper {
        padding: 40px 20px;
    }

    .schedule-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .schedule-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .schedule-card {
        padding: 32px 24px;
    }

    .card-hours {
        font-size: 28px;
    }

    .timeline-section {
        padding: 32px 24px;
    }

    .timeline-bullet {
        min-width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .timeline-item:not(:last-child) .timeline-bullet::after {
        top: 48px;
        height: 50px;
    }

    .timeline-content {
        font-size: 15px;
        padding: 16px 20px;
    }

    .note-banner {
        padding: 16px 20px;
        flex-direction: column;
        text-align: center;
    }
}

.main-wrapper1 {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow-y: auto;
    padding: 60px 24px;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    bottom: -50px;
    left: -50px;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #8b5cf6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-block {
    margin-bottom: 0px;
    animation: fadeInUp 0.8s ease-out;
    display: grid;
    grid-template-rows: auto 1fr;
    /* heading row + content row */
    row-gap: 40px;
}

.section-block:nth-child(2) {
    animation-delay: 0.2s;
}

.section-block:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {

    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #f16d2a;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 55px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.material-card {
    background: #dbeafe;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.15), transparent);
    transition: left 0.5s;
}

.material-card:hover::before {
    left: 100%;
}

.material-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    background: #bfdbfe;
}

.card-number {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: var(--purple-shadow);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--light-primary);
    margin-bottom: 0.3rem !important;
    line-height: 1.3;
}

.card-description {
    font-size: 16px;
    color: #1e3a8a;
    line-height: 1.6;
}

.lms-features {
    /* background: #dbeafe; */
    /* border: 2px solid rgba(147, 197, 253, 0.5); */
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
    padding-top: 0px;
}

.lms-list {
    display: block;

}

.lms-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    /* padding: 24px; */
    /* background: rgba(255, 255, 255, 0.5); */
    /* border: 1px solid rgba(147, 197, 253, 0.4); */
    /* border-radius: 16px; */
    transition: all 0.3s ease;
    margin-bottom: 18px;
}

.lms-item:hover {

    transform: translateX(8px);
}

.lms-bullet {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    color: #fff;
}

.lms-text {
    flex: 1;
    font-size: 17px;
    color: #1e3a8a;
    line-height: 1.6;
    padding-top: 4px;
}

@media (max-width: 1024px) {
    .page-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px;
    }

    .materials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 40px 20px;
    }

    .page-header {
        margin-bottom: 60px;
    }

    .page-title {
        font-size: 36px;
    }

    .section-block {
        margin-bottom: 60px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }

    .lms-features {
        padding: 32px 24px;
    }

    .lms-list {
        grid-template-columns: 1fr;
    }

    .lms-item {
        padding: 20px;
    }
}

#app-wrapper {
    width: 100%;
    min-height: 100%;
    background: #ffffff;
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 1rem;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.icon-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.icon-gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.icon-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-gradient-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.icon-gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.icon-gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.break-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid #f59e0b;
}

.highlight-card {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    border: 2px solid #8b5cf6;
}

.badge-custom {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-list li:last-child {
    border-bottom: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}



.card-hours {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
}

.card-details {
    font-size: 16px;
    color: #475569;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
    border-color: #2563eb;
}

footer .item li a {
    padding: 5px 0px;
    display: block;
    font-size: 0.8rem;
    text-transform: capitalize;
    color: #424243;
    line-height: 16px;
    text-decoration: none;
}

footer a {
    font-size: 0.8rem;
    text-transform: capitalize;
    color: #424243;
    line-height: 16px;
    text-decoration: none;
}

.side-step-box h4 i {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 22px;
    color: #5c5c5c;
    left: 10px;
}

.comprehensive {
    .material-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        background: #f8faff;
        min-height: 260px;
        align-items: center;
        justify-content: center;
    }
}

.emoji-icon {
    font-size: 64px;
    width: 30%;
    transition: transform 0.4s ease;
}

.material-overlay {
    position: absolute;
    inset: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    transition: opacity 0.35s ease;
}

.material-card:hover .emoji-icon {
    transform: scale(1.15);
}

.material-card:hover .material-overlay {
    opacity: 1;
}

.material-overlay p {
    margin: 0;
    font-size: 1.2rem;
    width: 70%;
    line-height: 1.6;
    text-align: left;
}