.hero-section {
    background: #003b6b;
    padding: 30px 0;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    /* max-width: 550px; */
    margin-bottom: 15px;
}

.action-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-brochure {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 6px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.podcast-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.podcast-icon {
    width: 40px;
    height: 40px;
    background: #f08a2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(240, 138, 43, .3);
}

.podcast-text {
    font-size: 14px;
    font-weight: 500;
}

.btn-counselling {
    background: #f4c300;
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.video-box iframe {
    width: 100%;
    height: 300px;
    border: none;
}

@media(max-width:991px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .video-box {
        margin-top: 40px;
    }

    .video-box iframe {
        height: 350px;
    }
}

@media(max-width:767px) {
    .hero-title {
        font-size: 38px;
        text-align: center;
    }

    .hero-subtitle,
    .hero-description {
        text-align: center;
    }

    .action-wrapper {
        justify-content: center;
    }

    .btn-counselling {
        width: auto;
        display: block;
        text-align: center;
    }

    .video-box iframe {
        height: 250px;
    }
}

.course-content {
    background: #f4f4f4;
    padding: 60px 0;
}

.course-content .container {
    max-width: 1200px;
}

.toc-section {
    /* margin-bottom: 70px; */
    scroll-margin-top: 140px;
}

.toc-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.toc-section p {
    font-size: 16px;
    line-height: 1.4;
    color: #222;
    margin-bottom: 5px;
}

.accreditation-card {
    background: #ededed;
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.accreditation-card:hover {
    transform: translateY(-3px);
}

.accreditation-card img {
    width: 80px;
    height: 80px;
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    object-fit: contain;
}

.accreditation-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.accreditation-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

@media(max-width:991px) {
    .toc-nav {
        justify-content: flex-start;
    }

    .toc-nav a {
        flex: none;
        min-width: 180px;
        font-size: 15px;
    }

    .toc-section h2 {
        font-size: 24px;
    }

    .toc-section p {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .toc-wrapper {
        top: 60px;
    }

    .toc-nav a {
        min-width: 170px;
        padding: 12px 10px;
    }

    .accreditation-card {
        flex-direction: column;
        text-align: center;
    }
}

/* TOC NAVIGATION */
.toc-wrapper {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.toc-nav {
    background: #0d87c5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.toc-nav::-webkit-scrollbar {
    display: none;
}

.toc-nav a {
    flex: 1;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: .3s;
}

.toc-nav a:hover,
.toc-nav a.active {
    background: #056ea3;
    color: #fff;
}

.curriculum-wrapper {
    display: flex;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.curriculum-section {
    margin-top: 60px;
}

.curriculum-box {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.curriculum-left {
    /* width: 30%; */
    height: 100%;
    background: #00345f;
    color: #fff;
    padding: 50px 35px;
}

.curriculum-left h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.btn-syllabus {
    background: #f3c400;
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
}

.curriculum-right {
    width: 70%;
    background: #fff;
}

.semester-tabs {
    background: #f3c400;
    display: flex;
    /* overflow-x: auto; */
    flex-wrap: wrap;
    padding: 15px;
    gap: 10px;
}

.semester-btn {
    border: none;
    background: none;
    padding: 18px 25px;
    font-weight: 600;
    white-space: nowrap;
}

.semester-btn.active {
    background: #003b6b;
    color: #fff;
    border-radius: 30px;
    margin: 10px;
}

.semester-tabs button {
    border: none;
    background: transparent;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 30px;
}

.semester-tabs button.active {
    background: #012f5b;
    color: #fff;
}

.curriculum-table {
    /* margin: 20px; */
    padding: 25px;
}

.curriculum-table table {
    width: 100%;
}

.curriculum-table th {
    font-size: 14px;
    font-weight: 700;
    padding: 15px 10px;
}

.curriculum-table td {
    padding: 12px 10px;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.learning-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
}

.learning-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #003b6b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: auto auto 20px;
}

.learning-icon.light {
    background: #1d9ad7;
}

.learning-item h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.btn-learning {
    background: #f3c400;
    color: #000;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
}

@media(max-width:991px) {
    .curriculum-wrapper {
        flex-direction: column;
    }

    .curriculum-left {
        text-align: center;
    }

    .curriculum-left,
    .curriculum-right {
        width: 100%;
    }

    .curriculum-left h2 {
        font-size: 32px;
    }

    .learning-title {
        font-size: 30px;
    }
}

@media(max-width:767px) {
    .curriculum-left {
        padding: 30px 20px;
        text-align: center;
    }

    .semester-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .semester-tabs button {
        white-space: nowrap;
    }

    .curriculum-table {
        padding: 10px;
    }

    .curriculum-table th,
    .curriculum-table td {
        font-size: 14px;
        padding: 10px 5px;
    }

    .semester-btn {
        padding: 12px 20px;
    }

    .learning-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .learning-item h6 {
        font-size: 16px;
    }
}

.specialization-section {
    padding: 70px 0;
    background: #f5f5f5;
}

.specialization-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.specialization-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 40px;
}

.specialization-table {
    background: #fff;
    border: 1px solid #d9d9d9;
    overflow: hidden;
}

.specialization-table table {
    width: 100%;
    margin: 0;
}

.specialization-table thead th {
    background: #dceaf7;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    padding: 18px 20px;
    border: none;
}

.specialization-table tbody td {
    padding: 8px 25px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #1f2aa6;
    font-weight: 500;
}

.specialization-table tbody td:hover {
    background: #f8fbff;
}

@media(max-width:991px) {
    .specialization-title {
        font-size: 34px;
    }

    .specialization-desc {
        font-size: 16px;
    }

    .specialization-table tbody td {
        font-size: 14px;
        padding: 12px 15px;
    }
}

@media(max-width:767px) {
    .specialization-section {
        padding: 50px 0;
    }

    .specialization-title {
        font-size: 28px;
    }

    .specialization-table {
        overflow-x: auto;
    }

    .specialization-table table {
        min-width: 600px;
    }
}

/* FEES SECTION */
.fees-section {
    padding: 0px 0;
    background: #f5f5f5;
}

.fees-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.fees-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 30px;
}

.fees-table-wrapper,
.university-table-wrapper {
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
}

.fees-table,
.university-table {
    width: 100%;
    margin: 0;
}

.fees-table td,
.university-table td,
.university-table th {
    border: 1px solid #ddd;
    padding: 14px 20px;
    vertical-align: middle;
}

.fees-table td:last-child {
    color: #ff3366;
    font-weight: 600;
}

.university-table thead th {
    background: #dceaf7;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.university-table tbody td {
    font-size: 14px;
}

.university-table tbody tr:hover {
    background: #fafafa;
}

@media (max-width: 991px) {
    .fees-title {
        font-size: 34px;
    }

    .fees-desc {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .fees-section {
        padding: 50px 0;
    }

    .fees-title {
        font-size: 28px;
    }

    .fees-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .fees-table-wrapper,
    .university-table-wrapper {
        overflow-x: auto;
    }

    .university-table {
        min-width: 850px;
    }

    .fees-table {
        min-width: 500px;
    }
}

/* FAQ SECTION */
.faq-section {
    padding: 30px 0;
    background: #f8f9fb;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.faq-subtitle {
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
    font-size: 16px;
}

.custom-faq .accordion-item {
    border: none;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.custom-faq .accordion-button {
    background: #fff;
    color: #003b6b;
    font-size: 16px;
    /* font-weight: 600; */
    padding: 5px 30px;
    box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #003b6b;
    color: #fff;
}

.custom-faq .accordion-body {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding: 10px 30px;
    background: #fff;
}

.custom-faq .accordion-button::after {
    content: '+';
    background-image: none;
    width: auto;
    height: auto;
    font-size: 32px;
    font-weight: 300;
    transform: none;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    content: '−';
    color: #fff;
}

.custom-faq .accordion-button:hover {
    background: #0d87c5;
    color: #fff;
}

/* Mobile */
@media(max-width:991px) {

    .faq-title {
        font-size: 34px;
    }

    .custom-faq .accordion-button {
        font-size: 16px;
        padding: 20px;
    }
}

@media(max-width:767px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .custom-faq .accordion-button {
        font-size: 15px;
        padding: 18px;
    }

    .custom-faq .accordion-body {
        padding: 18px;
        font-size: 14px;
    }
}

/* FINAL CTA SECTION */
.compare-cta-section {
    padding: 40px 0 90px;
    background: #f5f5f5;
}

.compare-cta-box {
    background: #1598d0;
    border-radius: 40px;
    /* min-height: 250px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 60px 30px;
}

.compare-cta-box h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.compare-cta-box p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.compare-arrow {
    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    z-index: 10;
}

.compare-arrow a {
    width: 76px;
    height: 76px;
    background: #fff;
    /* white outer ring */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    text-decoration: none;
}

.compare-arrow a::before {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    /* background: #f7c500; */
    /* yellow circle */
    border: 2px solid #0d3f78;
    /* dark blue border */
    border-radius: 50%;
}

/* .compare-arrow a:hover {
        transform: translateY(4px);
    } */

.compare-arrow img {
    position: relative;
    z-index: 2;
    width: 55px;
    height: 55px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .compare-cta-box {
        min-height: 220px;
        border-radius: 30px;
        padding: 50px 25px;
    }

    .compare-cta-box h2 {
        font-size: 42px;
    }

    .compare-cta-box p {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .compare-cta-section {
        padding: 20px 0 70px;
    }

    .compare-arrow {
        bottom: -40px;
    }

    .compare-cta-box {
        border-radius: 24px;
        min-height: auto;
        padding: 45px 20px;
    }

    .compare-cta-box h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .compare-cta-box p {
        font-size: 14px;
        line-height: 1.6;
    }

    .compare-arrow a {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .compare-arrow img {
        width: 55px;
        height: 55px;
    }
}