/* ── SECTION TITLE ── */
.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: .8rem;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.title-underline {
    width: 52px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ── HERO ── */
.hero-section {
    padding: 115px 0 50px;
    background: #fff;
    background-image: radial-gradient(ellipse at 5% 10%, rgba(139, 18, 53, .07) 0, transparent 55%), radial-gradient(ellipse at 95% 5%, rgba(139, 18, 53, .05) 0, transparent 50%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--primary-mid) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 22px;
    border: 1.5px solid var(--primary-mid);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 22px;
    color: var(--secondary);
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1.5px solid var(--primary-mid);
    border-radius: 10px;
    padding: 8px 14px;
}

.trust-badge i {
    color: var(--primary);
    font-size: 1rem;
}

.trust-badge span {
    font-weight: 700;
    font-size: .84rem;
    color: var(--secondary);
}

/* ── LEAD FORM ── */

.lead-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 38px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139, 18, 53, .08);
    position: relative;
    z-index: 1;
    text-align: left;
}

.lead-form-card .form-label {
    display: block;
    text-align: left;
    width: 100%;
}


@media (min-width: 992px) {
    .hero-section .row {
        align-items: stretch;
    }
    #apply {
        display: flex;
        flex-direction: column;
    }
    #apply .lead-form-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        transform: none;
    }
    #apply .lead-form-card form {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    #apply .lead-form-card form button[type="submit"] {
        margin-top: auto;
    }
}

.lead-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.lead-form-card h4 {
    font-size: 1.35rem;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--secondary);
}

.lead-form-card .sub {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 22px;
}

.form-control,
.form-select {
    padding: 12px 14px;
    border-radius: 9px;
    border: 1.5px solid #dde0f5;
    background: #fff;
    font-size: .92rem;
    font-family: 'Inter', sans-serif;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(139, 18, 53, .12);
    border-color: var(--primary);
}

.multi-select-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-btn {
    width: 100%;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.dropdown-btn span {
    text-align: left;
}

.dropdown-btn:hover {
    border-color: #999;
}

.dropdown-menu-custom {
    position: absolute;
    bottom: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.08);
    padding: 12px;
    z-index: 999;
    display: none;
}

.dropdown-menu-custom.show {
    display: block;
}

.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.close-btn {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.dropdown-items-list {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(139, 18, 53, 0.05);
    padding-right: 4px;
}

.dropdown-item-custom {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.dropdown-item-custom:hover {
    background: #f5f5f5;
}

.dropdown-item-custom input {
    margin-top: 4px;
}

/* Scrollbar */
.dropdown-items-list::-webkit-scrollbar {
    width: 6px;
}

.dropdown-items-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.dropdown-items-list::-webkit-scrollbar-track {
    background: rgba(139, 18, 53, 0.05);
    border-radius: 10px;
}

/* ── MARQUEE ── */
.partners-section {
    padding: 32px 0;
    background: var(--secondary);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 36px;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    white-space: nowrap;
}

.marquee-item i {
    color: rgba(255, 255, 255, .4);
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── STATS ── */
.stats-section {
    padding: 80px 0;
    background: var(--secondary);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--accent-yellow);
}

.stat-text {
    color: rgba(255, 255, 255, .7);
    font-size: .88rem;
    font-weight: 500;
}

/* ── FEATURES / CORE VALUES ── */
.features-section {
    padding: 96px 0;
    background: #fff;
}

.feature-card {
    background: #fff;
    border: 1.5px solid #eaecf8;
    padding: 38px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-mid);
}

.feature-icon {
    width: 68px;
    height: 68px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 22px;
    transition: all .3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
}

.feature-card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .92rem;
    margin: 0;
    line-height: 1.65;
}

/* ── ABOUT SECTION ── */
.about-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: .98rem;
    margin-bottom: 16px;
}

.about-visual {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    text-align: center;
}

.about-visual i {
    font-size: 5rem;
    color: rgba(255, 255, 255, .15);
    margin-bottom: 24px;
}

.about-visual h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.about-visual p {
    color: rgba(255, 255, 255, .7);
    font-size: .92rem;
    line-height: 1.7;
}

/* ── PROGRAMS / COURSES ── */
.courses-section {
    padding: 96px 0;
    background: #fff;
}

/* Active FDP Card */
.fdp-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary);
}

.fdp-card-header {
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.fdp-card-body {
    padding: 32px 28px;
}

.fdp-card-body h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--secondary);
    line-height: 1.4;
}

.fdp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.fdp-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    border: 1px solid #dde0f5;
    border-radius: 8px;
    padding: 6px 13px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--text-dark);
}

.fdp-meta-tag i {
    color: var(--primary);
}

.fdp-card-footer {
    padding: 18px 28px;
    background: var(--bg-light);
    border-top: 1.5px solid #eaecf8;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.fdp-card-desc {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: blink 1.4s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* Coming-soon cards */
.cs-card {
    background: #fff;
    border: 1.5px solid #eaecf8;
    border-radius: var(--radius);
    padding: 26px 22px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all .3s ease;
    cursor: pointer;
}

.cs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-mid);
}

.cs-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.cs-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid #dde0f5;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 10px;
}

.cs-card h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .97rem;
    color: var(--text-dark);
    line-height: 1.45;
    margin: 0;
}

/* ── DIRECTOR ── */
.director-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.director-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid #eaecf8;
    position: relative;
}

.director-card::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    left: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    line-height: 1;
    color: var(--primary-light);
    pointer-events: none;
}

.director-quote {
    font-size: 1.08rem;
    line-height: 1.88;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.director-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.director-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.director-info h6 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.director-info p {
    margin: 0;
    font-size: .84rem;
    color: var(--text-muted);
}

/* ── NEWS & EVENTS ── */
.news-section {
    padding: 96px 0;
    background: #fff;
}

.event-item {
    background: #fff;
    border: 1.5px solid #eaecf8;
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    margin-bottom: 14px;
}

.event-item:hover {
    border-color: var(--primary-mid);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.event-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.event-item span {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ── FAQ ── */
.faq-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.accordion-item {
    border: 1.5px solid #eaecf8 !important;
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .98rem;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(139, 18, 53, .12);
}

.accordion-body {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 96px 0;
    background: #fff;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1.5px solid #eaecf8;
    position: relative;
}

.testimonial-icon {
    position: absolute;
    top: 28px;
    right: 38px;
    font-size: 2.8rem;
    color: var(--primary-mid);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.82;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h6 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .95rem;
}

.author-info p {
    margin: 0;
    font-size: .82rem;
    color: var(--text-muted);
}

.carousel-indicators {
    bottom: -44px;
}

.carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-mid);
    opacity: 1;
    border: none;
}

.carousel-indicators .active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ── FINAL CTA ── */
.final-cta {
    padding: 96px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.final-cta h2 {
    color: #fff;
}

.final-cta p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 13px 30px;
    border-radius: 9px;
    font-weight: 700;
    font-size: .95rem;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff;
    padding: 11px 28px;
    border-radius: 9px;
    font-weight: 700;
    background: transparent;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-color: #fff;
}


@media(max-width:991px) {
    .hero-section {
        padding: 83px 0 0;
        text-align: center;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-trust {
        justify-content: center;
    }

    .lead-form-card {
        margin-top: 36px;
        margin-bottom: 0;
    }

    .lead-form-card h4,
    .lead-form-card .sub {
        text-align: center;
    }

    .features-section,
    .courses-section,
    .testimonials-section,
    .about-section,
    .director-section,
    .news-section,
    .faq-section {
        padding: 70px 0;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 2.6rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media(max-width:767px) {
    .hero-section {
        margin-top: 58px;
        padding: 83px 0 0;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.28;
    }

    .hero-text {
        font-size: .97rem;
    }

    .hero-badge {
        font-size: .72rem;
        padding: 5px 12px;
        border-radius: 30px;
        line-height: 1.4;
        text-align: center;
        display: inline-flex;
        justify-content: center;
    }

    .lead-form-card {
        padding: 26px 18px;
        margin-top: 28px;
        margin-bottom: 0;
    }

    .lead-form-card h4 {
        font-size: 1.15rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: .88rem;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .features-section,
    .courses-section,
    .testimonials-section,
    .about-section,
    .director-section,
    .news-section,
    .faq-section {
        padding: 52px 0;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .section-title p {
        font-size: .92rem;
    }

    .feature-card {
        padding: 28px 18px;
    }

    .testimonial-card {
        padding: 26px 18px;
    }

    .testimonial-text {
        font-size: .95rem;
    }

    .director-card {
        padding: 28px 20px;
    }

    .director-card::before {
        font-size: 5rem;
    }

    .fdp-card-body {
        padding: 22px 18px;
    }

    .fdp-card-footer {
        padding: 14px 18px;
    }

    .footer {
        padding: 50px 0 18px;
    }

    .footer-brand img {
        height: 42px;
    }

    .footer-bottom {
        margin-top: 38px;
    }

    .final-cta {
        padding: 60px 0;
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 1.58rem;
    }

    .hero-badge {
        font-size: .68rem;
        padding: 4px 10px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .lead-form-card {
        padding: 20px 14px;
        margin-bottom: 0;
    }

    .marquee-item {
        font-size: .88rem;
        margin: 0 20px;
    }

    .fdp-meta-tag {
        font-size: .78rem;
        padding: 5px 10px;
    }
}