* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* @font-face {
    font-family: 'Helvetica Rounded LT Std';
    src: url('/assets/fonts/HelveticaRoundedLTStd-Black.eot');
    src: local('/assets/fonts/Helvetica Rounded LT Std Black'), local('HelveticaRoundedLTStd-Black'),
        url('/assets/fonts/HelveticaRoundedLTStd-Black.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/HelveticaRoundedLTStd-Black.woff2') format('woff2'),
        url('/assets/fonts/HelveticaRoundedLTStd-Black.woff') format('woff'),
        url('/assets/fonts/HelveticaRoundedLTStd-Black.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
} */

@font-face {
    font-family: 'Arial Rounded MT Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Arial Rounded MT Regular'),
        url('/assets/fonts/ARIALROUNDEDMT.woff') format('woff');
}

body {
    font-family: 'Arial Rounded MT Regular';
    font-weight: 400;
}

/* body {
    font-family: 'Helvetica Rounded LT Std';
    font-weight: 400;
} */

h1,
h2,
h3,
h4,
h5,
h6,
a,
ul,
ol,
select,
header,
input,
footer {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--black);
    scroll-behavior: smooth;
    box-shadow: none;
    outline: none;
    border: none;
    list-style: none;
}

input:focus,
input:active {
    border: none;
    box-shadow: none;
    background: none;
    outline: none;
}

section {
    padding: 50px 0;
}

/* Header Css Start */
#headerMain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.dropdown-toggle::after {
    border: 0;
}

.dropdown-menu {
    display: none;
    opacity: 0;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.navbar .nav-link.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4bdcff, #6a5af9);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar {
    position: relative;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #4DB7F5, #6E6FDB);
}

.navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #4DB7F5, #6E6FDB);
}

.nav-link {
    position: relative;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #333;
    transition: color 0.8s ease;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #6a5af9, #4bc0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.faq-page .whychose li:hover {
    background: linear-gradient(90deg, #6a5af9, #4bc0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link.active {
    background: linear-gradient(90deg, #6a5af9, #4bc0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6a5af9, #4bc0ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-brand {
    width: 100%;
    max-width: 20%;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Header Css End */



/* Footer Css start */
.footer-link {
    background: linear-gradient(90deg, #6a5af9, #4bc0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #6c757d;
    /* normal muted color */
    transition: -webkit-text-fill-color 0.4s ease;
    color: #333;
    font-size: 17px;
    line-height: 21px;
    font-weight: 500;
}

.footer-link:hover {
    -webkit-text-fill-color: transparent;
}

/* Footer Css End */

/* Home page banner Css Start */
.banner-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    height: 70vh;
}

/* Home page banner Css End */

/* Home page Css by Pankaj start */
.about-sankalya-section .about-sankalya-section {
    background: #ffffff;
}

.about-sankalya-section .about-card {
    background: #f1f8ff;
    border-radius: 20px;
}

.about-sankalya-section .about-title {
    color: #5b7cff;
}

.choose-class-section {
    background: #ebf0f14f;
}

.choose-class-section .choose-title {
    color: #6b7cff;
}

.choose-class-section .demo-link a {
    color: #3b5cff;
}

.choose-class-section .choose-divider {
    border-top: 2px solid #3b5cff;
}

.choose-class-section .class-card {
    background: #eef6ff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.choose-class-section .info-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 40px;
    background: #dbeafe;
    border-bottom-left-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.choose-class-section .info-i {
    font-style: italic;
    font-weight: 600;
    color: #3b5cff;
    font-size: 18px;
}

.choose-class-section .info-corner:hover .info-tooltip {
    display: block;
}

.choose-class-section .info-tooltip {
    position: absolute;
    top: 36px;
    right: 0;
    width: 200px;
    background: #ffffff;
    font-size: 13px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: none;
}

.demo-modal-sankalya {
    border-radius: 16px;
    overflow: hidden;
}

.demo-close-sankalya {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 10;
}

.who-we-are-section .who-we-title,
.who-we-are-section .card-title {
    color: #6b7cff;
}

.who-we-are-section .who-we-are-card {
    position: relative;
    height: 100%;
    background: #f6fbff;
    border-radius: 28px;
    padding: 28px;
    overflow: hidden;
}

.who-we-are-section .who-we-are-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 3px solid #9099dd;
    pointer-events: none;
}

.who-we-are-section .who-we-are-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border-right: 6px solid #8da5df;
    border-bottom: 6px solid #678fe9;
    pointer-events: none;
}

.who-we-are-section .card-divider {
    border-top: 1px solid #6b7cff;
    width: 92%;
}

.who-we-are-section .card-list li {
    position: relative;
    padding-left: 35px;
    color: #666;
}

.who-we-are-section .icon {
    position: absolute;
    left: 0;
    font-size: 12px;
    width: 23px;
}

/* Home page Css by Pankaj end */

/* Home page Css by Het start */
.testimonial .img {
    width: 45px;
    height: 45px;
    /* border: 2px solid #6a6fdc; */
}

.testimonial .card p {
    height: 4.8em;
    overflow: hidden;
}

/* .testimonial .testimonial-scroll-wrapper {
            overflow: hidden;
        } */

.testimonial .testimonial-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    padding-bottom: 10px;
}

.testimonial .testimonial-scroll:active {
    cursor: grabbing;
}

/* Hide scrollbar */
.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial .testimonial-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

/* Dots */
.testimonial .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.testimonial .testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cfd8e3;
    cursor: pointer;
    padding: 0;
}

.testimonial .testimonial-dots button.active {
    background: #4b49d1;
}

/* how sanklya works */
.testimonial .step-col {
    position: relative;
}

.testimonial .step-col:not(:last-child)::after {
    content: "➜";
    position: absolute;
    right: -14px;
    /* space between boxes */
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: #6a6fdc;
    /* match your badge color */
    font-weight: 400;
    pointer-events: none;
}

.testimonial .step-badge {
    width: 40px;
    height: 40px;
    line-height: 30px;
    background-color: #6a6fdc;
}

/* Home page Css by Het end */

/* Home page banner Css start */
.hero-btn {
    position: absolute;
    z-index: 5;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.7vw 2.3vw;
    font-size: clamp(12px, 1.5vw, 18px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.2;
    height: 41px;
}

/* Button positions (desktop reference) */
.btn-demo {
    left: 6%;
    top: 54%;
    background: #ffffff;
    color: #555;
}

.btn-app {
    left: 23%;
    top: 54%;
    background: linear-gradient(90deg, #4DB7F5, #6E6FDB);
    ;
    color: #fff;
    border: 1px solid #fff;
}

.btn-talk {
    left: 20%;
    top: 86%;
    background: linear-gradient(90deg, #4DB7F5, #6E6FDB);
    color: #fff;
}

/* Mobile adjustments */
@media(max-width:768px) {}

/* Home page banner Css end */

/* neet-pg-ug page banner Css start */
.course-detail-page .course-details-section.py-5 {
    background: aliceblue;
}

.course-detail-page .course-main-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
}

.course-detail-page .course-tabs-header {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #f1f5ff;
}

.course-detail-page .course-tab-btn {
    flex: 1;
    padding: 14px;
    border: none;
    background: transparent;
    font-weight: 500;
    cursor: pointer;
}

.course-detail-page .course-tab-btn.active {
    background: #ffffff;
    border-top: 3px solid #39a7ff;
}

.course-detail-page .course-tab-content {
    display: none;
}

.course-detail-page .course-tab-content.active {
    display: block;
}

.course-detail-page .content-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.course-detail-page .info-row,
.course-detail-page .side-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eef0f5;
}

.course-detail-page .small-text {
    font-size: 14px;
    color: #6b7280;
}

.course-detail-page .installment-list,
.course-detail-page .feature-list {
    padding-left: 0;
    list-style: none;
}

.course-detail-page .installment-list li,
.course-detail-page .feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.course-detail-page .installment-list li::before,
.course-detail-page .feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: green;
}

.course-detail-page .course-side-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
}

.course-detail-page .side-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.course-detail-page .enroll-btn {
    width: 100%;
    background: #39a7ff;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    cursor: pointer;
}


.course-detail-page .enquiry-modal-content {
    border-radius: 16px;
    overflow: hidden;
}

.course-detail-page .enquiry-header {
    background: #f3f4f6;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-detail-page .enquiry-body {
    padding: 30px;
}


.course-detail-page .enquiry-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
}

.course-detail-page .enquiry-input {
    width: 100%;
    height: 46px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    font-size: 14px;
}

.course-detail-page .enquiry-input:focus {
    outline: none;
    border-color: #39a7ff;
}

.course-detail-page .enquiry-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 20px;
}

.course-detail-page .enquiry-submit-btn {
    width: 100%;
    background: #39a7ff;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
}

.course-detail-page .enquiry-submit-btn:hover {
    background: #2c8fe0;
}

/* neet-pg-ug page banner Css end */
/* crash course page banner Css start */
/* crash-course-page styles */

.crash-course-page .info_section {
    position: relative;
    /* padding: 20px 0; */
    background: #ffffff;
}

/* Vertical Line */
#iLine {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100vh;
    border-left: 2px dashed #2c8fe0;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease, height 0.5s ease;
}

.crash-course-page .timeline-content {
    position: relative;
}

/* Reverse layout */
.crash-course-page .image-date-text-wrapp.reversed .image-wrapp {
    order: 2;
}

.crash-course-page .image-date-text-wrapp.reversed .text-wrapp {
    order: 1;
    /* text-align: right; */
}

/* crash course page banner Css end */

/* neet page banner Css start */
.course-page .course-tab {
    background: #eef2ff;
    border: none;
    padding: 12px 22px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.course-page .course-tab:hover {
    background: #dfe3ff;
}

.course-page .course-tab.active {
    background: #39a7ff;
    color: #ffffff;
}

.course-page .course-subtitle {
    color: #39a7ff;
    margin-bottom: 6px;
}

.course-page .course-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-page .course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.course-page .course-card img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.course-page .course-body {
    padding: 20px;
}

.course-page .course-body h5 {
    font-size: 18px;
}

.course-page .course-btn {
    background: #2c8fe0;
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.course-page .course-btn:hover {
    background: #2c8fe0;
}

/* neet page banner Css end */

/* about-us banner Css start */
/* changes start */

/* about-us banner Css end */


/* contact banner Css start */
.contact-page .hero-section , .faq-page .hero-section{
    height: 50vh;
    background: linear-gradient(rgba(54, 64, 71, 0.555), rgba(116, 136, 153, 0)),
        url("/assets/images/Contact.webp") center/cover no-repeat;
    position: relative;   
}

.contact-page .hero-section::before , .faq-page .hero-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}



.contact-page .hero-content , .faq-page .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    height: 0px;
    top: 15%;
}

.contact-page .section-divider , .faq-page .section-divider {
    width: 25px;
    height: 1px;
    background-color: #000000;
    margin: 10px auto;
}

.contact-page .contact-card {
    background: #39a7ff;
    color: white;
    border-radius: 10px;
    height: 100%;
}

.contact-page .visit-section {
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url("/assets/images/About\ Us.webp") center/cover no-repeat;

}

/* Card styling */
.contact-page .visit-card {
    width: 75%;
    height: 95%;
    background: aliceblue;
    border-radius: 20px;
}

.contact-page .input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #39a7ff;
}

.contact-page .submit-btn {
    background: #39a7ff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
}

.contact-page .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.0rem;
    color: #39a7ff;
    border-radius: 35px;
    padding: 25px;
}

/* contact banner Css end */
/* result banner Css start */
.result .page-header-section {
    height: 60vh;
    background: linear-gradient(rgba(54, 64, 71, 0.555), rgba(116, 136, 153, 0)),
        url("/assets/images/Result.webp") center/cover no-repeat;
    position: relative;

}

/*hero fix end*/
.result .page-header-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.result .page-header-section .page-header-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
    content: '→';
}

.result .page-header-section .container {
    position: relative;
    z-index: 2;
    /* changes */
    height: 0px;
    top: 15%;
    /* end */
}

.result .result-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.result .rank-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #3f3cc9;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 50%;
}

/* PAGINATION WRAPPER */
.result .pagination {
    gap: 10px;
}

/* PAGE LINKS (numbers + arrows) */
.result .pagination .page-link {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border: 1px solid #ddd;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* HOVER */
.result .pagination .page-link:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* ACTIVE PAGE */
.result .pagination .page-item.active .page-link {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* DISABLED */
.result .pagination .page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

/* ARROW BUTTONS */
.result .arrow-btn {
    font-size: 16px;
}

.result .testimonial-section .card {
    background-color: aliceblue;
    border-radius: 10px;
}

.result .testimonial-section .owl-dots .owl-dot.active span {
    background: #39a7ff;
    box-shadow: 0 0 0 3px rgba(240, 248, 255, 0.8);
}

.result .testimonial-section .avtar-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.result .testimonial-section .card p {
    height: 80px;
    /* overflow-y: auto; */
}

/* result banner Css end */

/* batches page Css start */
.batchesPage .carousel-item::before {
    background: none;
    position: relative;
}

.batchesPage .carousel-item {
    background-color: transparent;
    height: 60vh;
}

.qr-card {
    position: fixed;
    top: 300px;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: stretch;
    background: #39a7ff;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    transition: transform .25s ease;
}

.qr-card:hover {
    transform: translateX(-8px);
}

.qr-mini {
    width: 56px;
    min-width: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 0px;
}

.qr-phone {
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .2));
}

.qr-arrow {
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    opacity: .95;
}

.qr-panel {
    width: 190px;
    padding: 12px 14px 14px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: width .25s ease, opacity .2s ease, padding .25s ease;
}

.qr-img-wrap {
    background: #ffffff;
    padding: 10px;
    border-radius: 14px;
}

.qr-img {
    width: 120px;
    /* height: 120px; */
    object-fit: cover;
    display: block;
    border-radius: 10px;
    max-width: 100%;
}

.qr-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
}

.qr-card:not(.active) .qr-panel {
    width: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
}

/* HERO SECTION (SS like) */
.page-hero {
    position: relative;
    padding: 34px 0 42px;
    overflow: hidden;
    background-image:
        linear-gradient(0deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .92)),
        url("assets/frontend/images/bgimg.webp");
    /* <-- YOUR BG IMAGE */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* subtle diamond overlay like SS */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .45;
    background:
        linear-gradient(135deg, rgba(99, 102, 241, .10) 25%, transparent 25%) -40px 0/80px 80px,
        linear-gradient(225deg, rgba(99, 102, 241, .10) 25%, transparent 25%) -40px 0/80px 80px,
        linear-gradient(315deg, rgba(99, 102, 241, .10) 25%, transparent 25%) 0px 0/80px 80px,
        linear-gradient(45deg, rgba(99, 102, 241, .10) 25%, transparent 25%) 0px 0/80px 80px;
}

/* container */
.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

/* Breadcrumb (same) */
.page-hero .breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0 0 18px;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .35px;
    text-transform: uppercase;
    background-color: transparent;
}

.breadcrumb-home {
    width: 18px;
    height: 18px;
    color: #111827;
    opacity: .9;
    display: block;
}

.breadcrumb-link {
    color: #111827;
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #111827;
    opacity: .55;
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
}

.breadcrumb-current {
    color: #111827;
    opacity: .9;
}

/* Title + Description */
.page-hero__title {
    margin: 0 0 10px;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: .2px;
}

.page-hero__desc {
    margin: 0;
    max-width: 980px;
    font-size: 15px;
    line-height: 1.75;
    color: #374151;
}

.batch-tabs-section {
    width: 100%;
    background: #f3f0ff;
    /* light lavender */
    border-top: 1px solid rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.batch-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 34px;
    padding: 18px 12px;
}

.tab-btn {
    background: transparent;
    border: 0;
    padding: 10px 6px;
    font-size: 17px;
    font-weight: 500;
    color: rgba(17, 24, 39, .65);
    cursor: pointer;
    position: relative;
    transition: .2s ease;
    text-transform: none;
}

.tab-btn:hover {
    color: rgba(17, 24, 39, .9);
}

.tab-btn.active {
    color: #4f46e5;
    font-weight: 600;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: #4f46e5;
    border-radius: 50px;
}

.batch-content-wrap {
    margin: 0 auto;
    padding: 18px 0px 28px;
}

.batch-content {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    padding: 40px 20px;
    margin-top: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.batch-content.is-hidden {
    display: none;
}

.batch-content.is-hidden {
    display: none;
}

.science-tabs,
.class11-tabs,
.dropper-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding: 0 15px;
}

.science-btn,
.class11-btn,
.dropper-btn {
    border: 1px solid rgba(0, 0, 0, .10);
    background: #f8fafc;
    color: #111827;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.science-btn:hover,
.class11-btn:hover,
.dropper-btn:hover {
    transform: translateY(-1px);
}

.science-btn.active,
.class11-btn.active,
.dropper-btn.active {
    background: #4f46e5;
    border-color: #4f46e5;
    color: #fff;
}

.science-content,
.class11-content,
.dropper-content {
    background: #fff;
    /* border: 1px solid rgba(0, 0, 0, .06); */
    border-radius: 12px;
    padding: 15px 0;
    /* margin: 0 15px; */
    /* box-shadow: 0 10px 26px rgba(0, 0, 0, .06); */
}

.science-content.is-hidden,
.class11-content.is-hidden,
.dropper-content.is-hidden {
    display: none;
}

.course-page .course-body h5 {
    font-size: 16px;
    margin: 0 0 16px 0;
    font-weight: 600;
}

.course-item {
    display: block !important;
}

.is-collapsed-item {
    display: none !important;
}

.show-more-wrapper {
    width: 100%;
    text-align: left;
    /* or center if you want */
    margin-top: 20px;
    padding-left: 15px;
}

.show-more-btn {
    border: 1px solid rgba(0, 0, 0, .12);
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.show-more-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(90deg, #6a5af9, #4bc0ff);
    color: #fff;
}

.is-collapsed-item {
    display: none !important;
}

/* batches page Css end */

.card.result-card {
    display: flex;

    .position-relative {
        margin: 0 0 20px 0;
    }

    .fw-bold,
    small,
    .small {
        order: 2;
    }
}