:root {
    --brand-blue: #0073ba;
    --dark-obsidian: #050a12;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.masterclass-section {
    background-color: var(--dark-obsidian);
    padding: 100px 0;
    font-family: "din-2014", sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    /* letter-spacing: 3px; */
    margin-bottom: 40px;
}

/* Grid Layout */
.masterclass-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.4s ease;
    /* place-content: end; */
}

/* Feature Items */
.left .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.4s ease;
    justify-content: end !important;
}


.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--brand-blue);
    background: rgba(0, 115, 186, 0.05);
}

.check-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-blue);
    box-shadow: 0 0 10px var(--brand-blue);
}

.feature-item p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Central Master Card Styling */
.course-master-card {
    background: linear-gradient(135deg, #0073ba 0%, #004a7a 100%);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-year {
    font-size: 80px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.course-master-card h3 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.course-master-card h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.course-outline {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.course-outline h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #00f2fe;
}

.course-outline ul {
    list-style: none;
    padding: 0;
}

.course-outline li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1100px) {
    .masterclass-grid {
        grid-template-columns: 1fr;
    }

    .feature-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .feature-column {
        grid-template-columns: 1fr;
    }
}

/* SECTION */

.course-section {
    max-width: 1400px;
    margin: auto;
}

/* TITLE */

.section-top {
    text-align: center;
    margin-bottom: 50px;
}

.section-top span {
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
}

.section-top h2 {
    margin-top: 14px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-top p {
    max-width: 750px;
    margin: 20px auto 0;
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.8;
}

/* GRID */

.topic-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(700px, 1fr));
    gap: 30px;
}

/* CARD */

.topic-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
}

.topic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(56, 189, 248, 0.15),
            transparent 40%,
            rgba(85, 166, 247, 0.12));
    opacity: 0;
    transition: 0.4s;
}

.topic-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.topic-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #0073ba, #05619b);
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

.topic-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.topic-card .sub {
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 15px;
}

/* LIST */

.topic-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.topic-list li {
    position: relative;
    padding-left: 34px;
    line-height: 1.7;
    color: #e2e8f0;
    transition: 0.3s;
}

.topic-list li:hover {
    color: #38bdf8;
    transform: translateX(5px);
}

.topic-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0073ba, #05619b);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
}

/* BOTTOM STRIP */

.bottom-note {
    margin-top: 50px;
    padding: 25px 35px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(14, 165, 233, 0.12),
            rgba(139, 92, 246, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bottom-note h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

.bottom-note p {
    color: #cbd5e1;
    line-height: 1.7;
}

.note-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, #0073ba, #05619b);
    color: #fff;
    font-weight: 600;
    transition: 0.4s;
}

.note-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .section-top h2 {
        font-size: 34px;
    }

    .topic-card {
        padding: 28px;
    }

    .bottom-note {
        text-align: center;
        justify-content: center;
    }

}

/* ADD THIS EXTRA CSS */

.highlight-title {
    /* margin-top: 25px;
    margin-bottom: 10px; */
    /* padding: 14px 18px !important; */
    /* border-radius: 14px; */
    /* background: linear-gradient(135deg, #0ea5e9, #8b5cf6); */
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    /* letter-spacing: 1px; */
    text-transform: uppercase;
    /* box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25); */
}

.highlight-title::before {
    display: none;
}



@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #07111f;
    padding: 70px 20px;
    color: #fff;
}

/* SECTION */

.pricing-section {
    max-width: 1450px;
    margin: auto;
}

/* TABS */

.year-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    border: none;
    padding: 20px 35px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
}

.tab-btn:hover {
    transform: translateY(-3px);
}

/* TAB CONTENT */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GRID */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    align-items: start;
}

/* CARD */

.price-card {
    border-radius: 32px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* TAG */

.tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* TITLE */

.price-card h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* SEAT */

.seat-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seat-box span {
    color: #94a3b8;
    font-size: 18px;
}

.seat-box strong {
    font-size: 30px;
}

/* PRICE BLOCK */

.price-block {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-block:last-child {
    border-bottom: none;
}

.price-block h4 {
    color: #38bdf8;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1;
    text-align: center;
}

.price span {
    color: #38bdf8;
}

.price-block p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 28px;
    text-align: center;
}

/* BUTTONS */

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-group a {
    flex: 1;
    text-align: center;
    padding: 16px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.4s ease;
}

/* REGISTER BUTTON */

.btn-group a:first-child {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

/* PAY BUTTON */

.btn-group a:last-child {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-group a:hover {
    transform: translateY(-4px);
}

/* BANK CARD */

.bank-card {
    border-radius: 32px;
    padding: 40px;
    background: linear-gradient(135deg, #0f172a, #0b4fc2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bank-card h2 {
    font-size: 42px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

/* BANK DETAILS */

.bank-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-row span {
    color: #cbd5e1;
    font-size: 16px;
}

.bank-row strong {
    text-align: right;
    font-size: 17px;
}

/* MOBILE */

@media(max-width:768px) {

    body {
        padding: 40px 15px;
    }

    .tab-btn {
        width: 100%;
        font-size: 15px;
        text-align: center;
    }

    .price-card h2 {
        font-size: 40px;
    }

    .price {
        font-size: 46px;
    }

    .bank-card h2 {
        font-size: 34px;
    }

    .bank-row {
        flex-direction: column;
    }

    .bank-row strong {
        text-align: left;
    }

}



/* SECTION */

.fee-includes-section {
    max-width: 1400px;
    margin: auto;
}

/* CONTAINER */

.fee-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* CARD */

.fee-card {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
}

.fee-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* GLOW */

.fee-card::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #0ea5e9;
    top: -120px;
    right: -100px;
    opacity: 0.08;
    filter: blur(50px);
}

/* ICON */

.fee-icon {
    min-width: 90px;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
}

.fee-icon.observer {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
}

/* CONTENT */

.fee-content {
    flex: 1;
}

.fee-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    line-height: 1.3;
    color: #fff;
}

/* LIST */

.fee-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.fee-list span {
    position: relative;
    padding: 14px 18px 14px 45px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dbeafe;
    line-height: 1.6;
    transition: 0.3s ease;
}

.fee-list span:hover {
    transform: translateY(-4px);
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
}

/* CHECK ICON */

.fee-list span::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0ea5e9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* RESPONSIVE */

@media(max-width:768px) {

    body {
        padding: 40px 15px;
    }

    .fee-card {
        flex-direction: column;
        padding: 30px;
    }

    .fee-icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
        font-size: 32px;
    }

    .fee-content h2 {
        font-size: 28px;
    }

    .fee-list {
        flex-direction: column;
    }

}

.highlight-title{
    border-left: 5px solid #004a7a;
    padding-left: 28px !important;
}