/* ============================================
   1. GLOBAL & LAYOUT SETUP
   ============================================ */
.wrap {
    background: #f0f3f8;
    min-height: 100vh;
    padding: 0 0 2rem;
}

/* ============================================
   2. HERO SECTIONS
   ============================================ */
.hero {
    background: linear-gradient(140deg, #0b1a30 0%, #112240 55%, #0d2d52 100%);
    padding: 2rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 85px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 35%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(13, 45, 82, 0.6);
}

.cd-hero-content {
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left !important;
}

.cd-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.cd-hero-content .hero-badge span {
    font-size: 11px;
    font-weight: 600;
    color: #7eb8e8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cd-hero-content h1 {
    font-size: 26px;
    font-weight: 700;
    color: #e8f0fb;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.cd-hero-content h1 em {
    font-style: normal;
    color: #f5c842;
}

.cd-hero-content .hero-sub {
    font-size: 13px;
    color: rgba(220, 232, 248, 0.65);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.course-detail-banner {
    background: linear-gradient(135deg, #1a237e 0%, #283593 60%, #1565c0 100%);
    padding: 2rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 85px;
}

/* ============================================
   3. MAIN CONTENT & CONTAINERS
   ============================================ */
.learning-mode {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 50px 0;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0.5rem 0 1.2rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #14273e;
}

.section-title span {
    font-size: 21px;
    font-weight: 600;
    color: #37474f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title span:before {
    height: 0;
}

.title-accent {
    width: 5px;
    height: 21px;
    background: #1565c0;
    border-radius: 2px;
}

/* ============================================
   4. CARD STYLES
   ============================================ */
/* Colorful Cards Grid */
.cards-colorful {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-vibrant {
    background: white;
    border-radius: 1.8rem;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
}

.card-vibrant:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 32px -16px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    margin-bottom: 1rem;
    font-size: 1.7rem;
}

.card-1 .icon-circle {
    background: #eff6ff;
    color: #1e5f9e;
}

.card-2 .icon-circle {
    background: #f3e8ff;
    color: #7a3b9f;
}

.card-3 .icon-circle {
    background: #fff3e0;
    color: #d45500;
}

.card-4 .icon-circle {
    background: #e8f5e9;
    color: #2b7a3e;
}

.card-vibrant h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.card-vibrant p {
    font-size: 0.75rem;
    color: #5c6f91;
}

/* Material Cards Grid */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.material-card {
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(0px);
    border-radius: 2rem;
    padding: 1.8rem 1.5rem 2rem;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 36px -12px rgba(0, 0, 0, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

.material-card:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
}

.material-card:focus-visible {
    outline: 3px solid #1e88e5;
    outline-offset: 4px;
    border-radius: 28px;
}

/* Card Variants */
.card-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
    border-bottom: 6px solid #6c5ce7;
}

.card-1 .card-icon i {
    background: linear-gradient(135deg, #6c5ce7, #a363d9);
    box-shadow: 0 8px 18px -6px rgba(108, 92, 231, 0.4);
}

.card-1 h3 {
    color: #4a3b9e;
}

.card-2 {
    background: linear-gradient(135deg, #ffffff 0%, #eefafc 100%);
    border-bottom: 6px solid #00b894;
}

.card-2 .card-icon i {
    background: linear-gradient(145deg, #00b894, #00cec9);
    box-shadow: 0 8px 18px -6px rgba(0, 184, 148, 0.4);
}

.card-2 h3 {
    color: #00796b;
}

.card-3 {
    background: linear-gradient(135deg, #ffffff 0%, #fff3e0 100%);
    border-bottom: 6px solid #f39c12;
}

.card-3 .card-icon i {
    background: linear-gradient(145deg, #f39c12, #e67e22);
    box-shadow: 0 8px 18px -6px rgba(243, 156, 18, 0.4);
}

.card-3 h3 {
    color: #c45c0a;
}

.card-4 {
    background: linear-gradient(135deg, #ffffff 0%, #ffe8f0 100%);
    border-bottom: 6px solid #e84393;
}

.card-4 .card-icon i {
    background: linear-gradient(145deg, #e84393, #fd79a8);
    box-shadow: 0 8px 18px -6px rgba(232, 67, 147, 0.4);
}

.card-4 h3 {
    color: #b23c6e;
}

.card-icon {
    margin-bottom: 1.6rem;
}

.card-icon i {
    font-size: 2.3rem;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    color: white;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.material-card:hover .card-icon i {
    transform: scale(1.02) rotate(2deg);
    box-shadow: 0 18px 28px -10px rgba(0, 0, 0, 0.3);
}

.material-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.material-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #2d3e50;
    font-weight: 450;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.card-arrow {
    margin-top: auto;
    text-align: right;
    transition: transform 0.2s ease;
}

.card-arrow i {
    font-size: 1.8rem;
    color: #1e2a3e;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    padding: 8px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.material-card:hover .card-arrow i {
    transform: translateX(6px);
}

.card-1:hover .card-arrow i {
    color: #6c5ce7;
    background: #edeaff;
}

.card-2:hover .card-arrow i {
    color: #00b894;
    background: #e0f7f2;
}

.card-3:hover .card-arrow i {
    color: #f39c12;
    background: #fff0e0;
}

.card-4:hover .card-arrow i {
    color: #e84393;
    background: #ffe4f0;
}

/* ============================================
   5. SEARCH & FORM ELEMENTS
   ============================================ */
.search-elevated {
    background: #ffffff;
    border-radius: 1.8rem;
    padding: 1.8rem;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
    margin: 1rem 0;
    border: 1px solid #eaecf0;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-material {
    position: relative;
    width: 100%;
}

.input-material select,
.input-material input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.7rem;
    font-size: 0.85rem;
    border-radius: 1.2rem;
    border: 1.5px solid #e2e8f0;
    background: #fdfeff;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: 0.2s;
}

.input-material select:focus {
    border-color: #256f9e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 99, 146, 0.15);
}

.input-material i.left-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a9bb8;
    font-size: 0.9rem;
    pointer-events: none;
}

.input-material i.right-caret {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #99aec9;
    pointer-events: none;
}

.btn-modern {
    background: rgba(11, 26, 48, 0.92);
    border: none;
    border-radius: 1.4rem;
    padding: 0.9rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-modern:hover {
    background: rgba(11, 26, 48, 1);
    transform: scale(0.98);
}

.info-notice {
    background: #f0f4fa;
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: #2c5070;
    border-left: 4px solid #ffb347;
}

/* Horizontal Flat Bar Search Section */
.search-section {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.search-title {
    font-size: 13px;
    font-weight: 600;
    color: #283593;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-title i {
    font-size: 16px;
    color: #283593;
}

.field-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.field-wrap {
    position: relative;
}

.field-wrap select {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-size: 14px;
    color: #37474f;
    padding: 0 40px 0 16px;
    font-family: inherit;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s;
}

.field-wrap select:focus {
    border-color: #1565c0;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.field-wrap i.suffix {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #90a4ae;
    pointer-events: none;
}

.search-btn {
    height: 48px;
    padding: 0 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1565c0, #283593);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.2);
}

.search-btn:hover {
    opacity: 0.95;
    box-shadow: 0 6px 16px rgba(21, 101, 192, 0.3);
    transform: translateY(-1px);
}

/* ============================================
   6. SECTION BACKGROUNDS & LAYERS
   ============================================ */
.glow-section {
    background: #090d16;
    background-image: radial-gradient(circle at bottom, rgba(99, 102, 241, 0.25) 0%, transparent 65%);
    color: #f8fafc;
}

.layer-canvas {
    background-color: var(--bg-light);
}

.course-higlights {
    padding: 100px 0;
    position: relative;
}

.course-overview {
    background-color: #c4e5ff;
    padding: 100px 0;
    position: relative;
}

/* ============================================
   7. TYPOGRAPHY & LISTS
   ============================================ */
.text-content ul,
#section2 ul,
#section3 ul,
#section4 ul,
#section5 ul,
#section6 ul,
#section7 ul,
#section8 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-content ul li,
#section2 ul li,
#section3 ul li,
#section4 ul li,
#section5 ul li,
#section6 ul li,
#section7 ul li,
#section8 ul li {
    flex: 0 0 calc(50% - 10px);
    position: relative;
    padding-left: 30px;
    box-sizing: border-box;
}

.text-content ul li::before,
#section2 ul li::before,
#section3 ul li::before,
#section4 ul li::before,
#section5 ul li::before,
#section6 ul li::before,
#section7 ul li::before,
#section8 ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 18px;
    color: #fdc800;
}

p {
    color: #212529;
}

.text-content ul li,
.text-content p {
    color: #94a3b8 !important;
}

/* Material Chip / Badge */
.chip {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background-color: var(--primary-tint);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-elevation-1);
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 50px;
    color: inherit;
}

#section3 h2,
#section5 h2 {
    color: #1e293b !important;
}

p.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 50px;
}

/* Material Check List */
.mat-check-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 40px auto 0;
}

.mat-check-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.mat-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: var(--primary-tint);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Material Step List */
.mat-step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.mat-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-elevation-1);
}

.mat-step-number {
    background: var(--primary);
    color: white;
    font-weight: 700;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.mat-step-content h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.mat-step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Material Row List */
.mat-row-list {
    list-style: none;
    width: 100%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-elevation-1);
}

.mat-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.mat-row-item:last-child {
    border-bottom: none;
}

.mat-row-item:hover {
    background-color: var(--bg-alt);
}

.mat-row-label {
    font-weight: 600;
    font-size: 1rem;
}

.mat-row-value {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--primary-tint);
    padding: 4px 12px;
    border-radius: 12px;
}

/* ============================================
   8. LAYERED BACKGROUND SYSTEM
   ============================================ */
.layer-canvas {
    background-color: var(--bg-light);
}

.layer-surface {
    background-color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03), inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.layer-alt {
    background-color: var(--bg-alt);
}

.layer-pattern {
    background-color: #f5fcff;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}

.layer-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.layer-dark p.subtitle {
    color: #94a3b8;
}

.layer-dark p {
    color: #94a3b8;
}

.layer-dark .mat-card {
    background: #1e293b;
    border: none;
    box-shadow: none;
}

.layer-dark .mat-card h3 {
    color: white;
}

.layer-dark h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.layer-dark.learning-paths ul li {
    color: #94a3b8;
}

.layer-dark.learning-paths ul {
    margin-top: 15px !important;
    margin-bottom: 20px !important;
}

.layer-glow {
    background: #090d16;
    background-image: radial-gradient(circle at bottom, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    color: var(--text-light);
}

.layer-glow p.subtitle {
    color: #94a3b8;
}

.target-audience ul {
    counter-reset: index;
    padding: 0;
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    column-gap: 2rem;
}

/* List element */
.target-audience ul li {
    counter-increment: index;
    display: flex;
    align-items: center;
    padding: 12px 0;
    box-sizing: border-box;
    text-align: left;
    break-inside: avoid;
    margin-bottom: 0.5rem;
}


/* Element counter */
.target-audience ul li::before {
    content: counters(index, ".", decimal-leading-zero);
    font-size: 1.5rem;
    text-align: right;
    font-weight: bold;
    min-width: 50px;
    padding-right: 12px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    align-self: flex-start;
    background-image: linear-gradient(to bottom, rgb(44, 132, 233), #fdc800);
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Element separation */
.target-audience ul li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   9. ENQUIRY FORM (SECTION 8)
   ============================================ */
#section8 {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

#section8::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(7, 41, 77, 0.88) 0%, rgba(4, 21, 41, 0.96) 100%);
    z-index: -1;
}

.custom-glass-form {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.4);
}

.btn-whatsapp {
    background: #00b200 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border: none;
    transition: all 0.25s ease;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35) !important;
}

.form-floating {
    height: 58px;
}

.form-floating>.form-control {
    height: 58px;
    min-height: 58px;
    border-radius: 6px;
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

.custom-select-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.select-block-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
    font-weight: 500;
}

.custom-select-block .select2-container--default .select2-selection--single {
    height: 58px !important;
    border-radius: 6px !important;
    border: 1px solid #ced4da !important;
    background-color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
}

.custom-select-block .select2-results ul li {
    color: #051b33 !important;
}

.custom-select-block .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212529 !important;
    padding-left: 12px !important;
    padding-right: 30px !important;
    line-height: 58px !important;
    width: 100%;
}

.custom-select-block .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 58px !important;
    top: 0 !important;
    right: 8px !important;
}

.btn-submit-custom {
    background-color: #ffca28 !important;
    color: #051b33 !important;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease-in-out;
}

.btn-submit-custom:hover {
    background-color: #ffd54f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 202, 40, 0.4) !important;
}

.fs-7 {
    font-size: 0.78rem;
}

/* ============================================
   10. RESPONSIVE MEDIA QUERIES
   ============================================ */
@media (max-width: 768px) {
    .hero-full h1 {
        font-size: 1.8rem;
    }

    .hero-full {
        padding: 1.8rem 1rem 2rem;
    }

    .stats-full {
        padding: 1rem 1rem 0;
    }

    .stats-row-vibrant {
        flex-direction: column;
        gap: 0.8rem;
    }

    .content-full {
        padding: 1rem;
    }

    .cards-colorful {
        gap: 1rem;
    }
}

@media (max-width: 700px) {
    .cards-grid {
        gap: 1.5rem;
    }

    .material-card {
        min-width: 260px;
        padding: 1.5rem 1.2rem 1.8rem;
    }

    .material-card h3 {
        font-size: 1.35rem;
    }
}

/* ============================================
   11. UTILITIES & MISC
   ============================================ */
section {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mat-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: left;
    box-shadow: var(--shadow-elevation-2);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.mat-card-interactive:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevation-hover);
    cursor: pointer;
}

.mat-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.mat-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-elevation-2);
}

.mat-btn-primary {
    background-color: var(--primary);
    color: white;
}

.mat-btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-elevation-3);
    transform: translateY(-1px);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.events-schedules-area p {
    font-size: 15px;
    color: #5c6a75;
    margin-bottom: 20px;
}

.events-schedules-area ul li {
    color: #94a3b8;
}

.prerequisites ul li {
    color: var(--bg-dark);
}

#section5 .bg-light-warning {
    background-color: rgba(255, 136, 25, 0.1) !important;
    color: #fff;
}

#section5 .card {
    margin-bottom: 30px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 15px;
    box-shadow: 0px 4px 30px rgba(95, 94, 231, 0.07);
}

#section5 .card .card-body {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0);
}

.course-details-inner .course-details-tab-area {
    margin: 30px 0 0;
    overflow: hidden;
}

#section8::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(310deg, rgba(7, 41, 77, 0.6392156863) 0%, #07294d 100%);
    z-index: -1;
}