/* 
    PREMIUM DESIGN SYSTEM - EKLAVYA ACADEMY
    Inspired by: Aurous Academy (Premium Academic Aesthetic)
    Author: Antigravity AI
*/

:root {
    --primary-yellow: #FFCB05;
    --primary-orange: #FF8F00;
    --primary-gold: #FFC107;
    --accent-blue: #1A73E8;
    --dark-navy: #141B3E;
    --darker-navy: #0D122B;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FF8F00 50%, #FFB300 100%);
    --navy-gradient: linear-gradient(145deg, #141B3E 0%, #080C1E 100%);
    --surface-gradient: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --soft-shadow: 0 10px 40px rgba(20, 27, 62, 0.05);
    --medium-shadow: 0 20px 50px rgba(20, 27, 62, 0.08);
    --heavy-shadow: 0 40px 80px rgba(20, 27, 62, 0.12);
    --glow-yellow: 0 0 20px rgba(255, 203, 5, 0.4);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Body font deferred to main style.css for consistency */

/* --- UTILS --- */
.text-primary {
    color: var(--primary-orange) !important;
}

.backdrop-blur-sm {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.shadow-glow {
    box-shadow: var(--glow-yellow) !important;
}

/* --- HOME BANNER SLIDER --- */
.home-banner-slider {
    position: relative;
    max-width: 1440px;
    margin: 40px auto;
    border-radius: 30px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: var(--heavy-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mainHomeSwiper {
    width: 100%;
    height: auto;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-banner-slider .swiper-slide {
    overflow: hidden;
    background: #fff;
}

.home-banner-slider .swiper-button-next,
.home-banner-slider .swiper-button-prev {
    color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.home-banner-slider .swiper-button-next::after,
.home-banner-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 900;
}

.home-banner-slider .swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

@media (max-width: 991px) {
    .home-banner-slider {
        margin: 40px 15px;
        border-radius: 20px;
    }

    .banner-img {
        height: auto !important;
        max-height: 550px;
    }
}

@media (max-width: 576px) {
    .home-banner-slider {
        margin: 40px 10px;
        border-radius: 12px;
    }
    
    .home-banner-slider .swiper-button-next,
    .home-banner-slider .swiper-button-prev {
        display: none;
    }

    .banner-img {
        height: auto !important;
    }
}


/* --- STUDENT RESULT HIGHLIGHTS (Inspired by Mockup) --- */
.hero-results-area {
    display: flex;
    gap: 12px;
    margin-top: 35px;
    z-index: 5;
    position: relative;
}

.student-result-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 12px;
    min-width: 130px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.student-result-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
}

.result-avatar {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 12px;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.result-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.result-rank {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--primary-yellow);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .hero-results-area {
        display: none;
    }

    /* Hide on small mobile to keep focus on text */
}

/* --- TESTIMONIAL CARD REDESIGN --- */
.modern-testimonial-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 420px;
    max-width: 310px;
    margin: 0 auto;
    /* Perfect for 4-column/narrower cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.modern-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #FF8F00;
    margin-bottom: 20px;
    font-size: 22px;
}

/* Larger stars */

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.avatar-circle {
    width: 55px !important;
    height: 55px !important;
    border: 2px solid var(--primary-orange) !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease;
}

.modern-testimonial-card:hover .avatar-circle {
    transform: scale(1.1);
}

.testimonial-author-name {
    font-size: 1.1rem;
    color: var(--darker-navy);
}

.testimonial-author-rank {
    font-size: 0.85rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blob Decorator - Fixes large layout gaps by making it absolute */
.blob-decorator {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 203, 5, 0.15) 0%, transparent 70%);
}

/* --- Course Card V3 (Premium Grid - Exact Mockup Match) --- */
.course-card-v3 {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 18, 43, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
    position: relative;
}

.course-card-v3:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(13, 18, 43, 0.15);
    border-color: rgba(255, 203, 5, 0.5);
}

.course-card-v3 .card-image {
    position: relative;
    width: 100%;
    padding-top: 55%;
    /* Refined aspect ratio */
    overflow: hidden;
    background: #000;
    /* Black background for transparent images */
}

.course-card-v3 .card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: all 0.4s ease;
    z-index: 2;
}

.course-card-v3:hover .card-image::after {
    background: rgba(0, 0, 0, 0.6);
    /* Stronger black tint on hover */
}

.course-card-v3 .card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    z-index: 1;
}

/* Category Badge Styling */
.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    padding: 6px 15px;
    background: var(--darker-navy);
    color: #fff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.course-jee .course-badge {
    background: #FFC107;
    color: #000;
}

.course-neet .course-badge {
    background: #FF5722;
    color: #fff;
}

.course-card-v3:hover .card-image img {
    transform: scale(1.1);
}

.course-card-v3 .card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-card-v3 .card-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.course-card-v3 .title-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    /* Circle like mockup */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.course-card-v3 .card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--darker-navy);
    margin: 0;
    line-height: 1.25;
}

.course-card-v3 .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.course-card-v3 .info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card-v3 .info-box i {
    width: 32px;
    height: 32px;
    background: #f0f4f8;
    color: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.course-card-v3 .info-text {
    display: flex;
    flex-direction: column;
}

.course-card-v3 .info-text small {
    font-size: 0.65rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 1px;
}

.course-card-v3 .info-text span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.course-card-v3 .status-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2D3436;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.course-card-v3 .status-bar i {
    color: #00b894;
}

.course-card-v3 .btn-view-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Space for icon on right */
    width: 100%;
    padding: 16px 25px;
    background: #0C1128;
    /* Mockup Navy */
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.course-card-v3 .btn-view-details:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: scale(1.02);
}

/* --- COURSE EXPERIENCE ITEMS (WHICH WE CHOOSE) --- */
.experience-stack {
    border: 1px solid #eee;
    border-radius: 30px;
    overflow: hidden;
}

.exp-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.exp-item:last-child {
    border-bottom: none;
}

.exp-item:hover {
    background: #fff !important;
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 25px !important;
    border-color: transparent !important;
}

.exp-icon {
    transition: all 0.5s ease;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-orange-soft {
    background: #FFF4E5;
}

.bg-blue-soft {
    background: #E5F0FF;
}

.exp-item:hover .exp-icon {
    transform: rotate(-10deg) scale(1.1);
}

.exp-item:hover .exp-icon.bg-orange-soft {
    background: var(--primary-yellow) !important;
}

.exp-item:hover .exp-icon.bg-blue-soft {
    background: var(--accent-blue) !important;
}

.exp-item:hover .exp-icon i {
    color: #fff !important;
}

.exp-item:hover h4 {
    color: var(--primary-orange);
}

.exp-content ul {
    list-style: none;
    padding-left: 0;
}

.exp-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px !important;
    line-height: 1.5;
}

.exp-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}

.exp-content ul li b {
    color: var(--dark-navy) !important;
}

/* --- COMPACT ENQUIRY FORM & BANNER --- */
.banner-glass-wrapper {
    min-height: 460px !important;
    /* Matches new hero height */
}

.booking-form-wrap {
    padding: 10px 0;
}

.booking-form-wrap h4 {
    font-size: 1.25rem !important;
    line-height: 1.2;
}

.form-control-minimal,
.form-select-minimal {
    font-size: 0.85rem !important;
    padding: 10px 15px !important;
    border-radius: 10px !important;
}

.booking-form-wrap textarea {
    height: 60px !important;
}

.booking-form-wrap .btn {
    padding: 12px 20px !important;
    font-size: 0.8rem !important;
}

/* --- REFUND GRID PREMIUM --- */
.refund-box-premium {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top-width: 4px !important;
}

.refund-box-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.refund-box-premium h3 {
    font-size: 2rem;
    letter-spacing: -1px;
}

/* --- SCHOLARSHIP BANNER --- */
.scholarship-hero-banner {
    border-radius: 35px !important;
    border: 1px solid rgba(26, 115, 232, 0.1) !important;
}

.text-orange {
    color: #ff8f00 !important;
}

.banner-graphic img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* --- COURSE INFO HUB --- */
.course-info-hub {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%) !important;
}

.hub-orb {
    width: 60px;
    height: 60px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hub-item:hover .hub-orb {
    transform: scale(1.1) rotate(5deg);
}

.eligibility-ribbon {
    transition: all 0.3s ease;
}

.eligibility-ribbon:hover {
    transform: translateX(10px);
    background: #f8f9fa !important;
}

.pulse-icon {
    animation: hub-pulse 2s infinite;
}

@keyframes hub-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
    }
}

/* --- LEARNING PATH --- */
.learning-path-timeline::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, transparent, transparent 10px, #e0e0e0 10px, #e0e0e0 20px);
    z-index: 1;
}

.module-number-pill {
    left: -70px;
    top: 30px;
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ddd;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.learning-module-card:hover .module-number-pill {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
    transform: scale(1.1);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@media (max-width: 1200px) {
    .learning-path-timeline::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .banner-glass-wrapper {
        min-height: auto !important;
    }
    .enquirySlider {
        height: auto !important;
        min-height: 300px;
    }
    .enquirySlider .swiper-slide img {
        height: auto !important;
        object-fit: contain !important;
    }
}

/* --- MOBILE NAVIGATION REDESIGN --- */
.offcanvas {
    border-radius: 0 30px 30px 0;
    max-width: 85% !important;
    border: none !important;
}

.offcanvas-header {
    padding: 20px 25px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

.offcanvas-body {
    padding: 0 !important;
}

.mobile-nav-wrapper {
    overflow-y: auto;
}

.mobile-main-nav {
    padding: 10px 0;
}

.mobile-main-nav .nav-item {
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.mobile-main-nav .nav-link {
    padding: 18px 25px !important;
    color: var(--dark-navy) !important;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.mobile-main-nav .nav-link .menu-icon {
    width: 32px;
    font-size: 1.4rem;
    margin-right: 15px;
    color: var(--primary-orange);
    text-align: center;
}

.mobile-main-nav .nav-link .arrow-icon {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.mobile-main-nav .nav-link:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
}

.mobile-sub-nav {
    background: #fcfcfc;
    padding: 5px 0 15px 72px;
}

.mobile-sub-nav li a {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.mobile-sub-nav li a:hover {
    color: var(--primary-orange);
}

/* --- STUDENT RESULTS MARQUEE --- */
.results-marquee-section {
    background: linear-gradient(135deg, #0D122B 0%, #1A237E 50%, #0D122B 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 40px 60px rgba(0,0,0,0.3), inset 0 -40px 60px rgba(0,0,0,0.3);
}

.results-marquee-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
    mask-image: linear-gradient(
        to right,
        hsl(0 0% 0% / 0),
        hsl(0 0% 0% / 1) 10%,
        hsl(0 0% 0% / 1) 90%,
        hsl(0 0% 0% / 0)
    );
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 350px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.marquee-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-yellow);
    z-index: 10;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-item {
        width: 280px;
    }
    .results-marquee-section {
        padding: 40px 0;
    }
}

.mobile-inner-nav {
    background: #ffffff;
    padding: 0 0 10px 20px;
    border-left: 2px solid var(--primary-yellow);
    margin-left: 5px;
    margin-bottom: 10px;
}

.mobile-inner-nav li a {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    padding: 6px 0 !important;
    color: var(--dark-navy) !important;
}

.mobile-inner-nav li a:hover {
    color: var(--primary-orange) !important;
}

.btn-portal-mobile {
    background: var(--primary-orange);
    color: #ffffff !important;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 12px rgba(255, 143, 0, 0.2);
}

.btn-portal-mobile i {
    color: #ffffff !important;
}

.btn-portal-mobile:hover {
    background: #e68000;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-scholarship-mobile {
    background: var(--navy-gradient);
    color: #fff !important;
    font-weight: 700;
}

/* --- Scholarship Promotional Section --- */
.scholarship-promo-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-primary-glow {
    color: var(--primary-yellow);
    text-shadow: 0 0 15px rgba(255, 203, 5, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 15px;
    border-radius: 12px;
}

.badge-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-glass i {
    font-size: 1.1rem;
}

.badge-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--primary-yellow);
}

.scholarship-hero-card {
    max-width: 1000px;
    background: #fff;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.scholarship-hero-card:hover {
    transform: scale(1.01);
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.promo-ribbon-red {
    background: #dc2626;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
}

.bg-orange {
    background: #f97316 !important;
}

.btn-register-scholarship {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    font-size: 1.2rem;
    box-shadow: 0 15px 30px rgba(255, 143, 0, 0.3);
    transition: var(--transition);
}

.btn-register-scholarship:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 143, 0, 0.5);
    color: #000;
}

.scale-hover:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .scholarship-hero-card .border-end {
        border-end: none !important;
        border-bottom: 1px solid #eee !important;
    }
}

/* --- PREMIUM BULLET LIST DESIGN SYSTEM --- */
.bullet-list-premium,
.accordion-body ul,
.emrs-feature ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.bullet-list-premium li,
.accordion-body ul li,
.emrs-feature ul li,
.accordion-body p,
.emrs-feature .small p {
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 12px !important;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    display: block !important;
}

.bullet-list-premium li:last-child,
.accordion-body ul li:last-child,
.emrs-feature ul li:last-child,
.accordion-body p:last-child,
.emrs-feature .small p:last-child {
    margin-bottom: 0 !important;
}

.bullet-list-premium li::before,
.accordion-body ul li::before,
.emrs-feature ul li::before,
.accordion-body p::before,
.emrs-feature .small p::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff8f00; /* primary orange */
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* AUTO-HIDE GHOST ICONS FOR EMPTY LINES */
.accordion-body li:empty::before,
.accordion-body p:empty::before,
.emrs-feature li:empty::before,
.emrs-feature p:empty::before,
.bullet-list-premium li:empty::before {
    display: none !important;
}

/* Hide icons for lines that only contain a break tag (common in editors) */
.accordion-body li:has(> br:only-child)::before,
.accordion-body p:has(> br:only-child)::before,
.emrs-feature li:has(> br:only-child)::before,
.emrs-feature p:has(> br:only-child)::before {
    display: none !important;
}