/* ============================================================
   LLB.css — LL.B Programme Page Stylesheet
   Extends: style.css (Site Master Theme)
   Theme: Red + Deep Blue + White | Luxury Academic
   ============================================================ */

@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/cinzel-700.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-400.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-700.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/CormorantGaramond-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: 400;
}


/* ==============================
   MINI HERO SECTION
   ============================== */
.ballb-mini-hero {
    position: relative;
    height: clamp(260px, 30vh, 380px);
    min-height: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../Assets/Images/LLB/hero-bg.jpg') center center / cover no-repeat;
}
.ballb-mini-hero {
    background: url('../Assets/Images/mini-hero.png') center center / cover no-repeat;
    background-attachment:fixed;
}
/* Layered gradient overlay — deep blue to crimson red */
.ballb-hero-overlay {
    position: absolute;
    inset: 0;
/*    background: linear-gradient( 110deg, rgba(4, 22, 54, 0.93) 0%, rgba(13, 54, 110, 0.88) 45%, rgba(198, 40, 40, 0.70) 100% );
*/    z-index: 1;
}

/* Left decorative arc element */
.hero-deco-left {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.07);
    z-index: 2;
    pointer-events: none;
}

    .hero-deco-left::before {
        content: '';
        position: absolute;
        inset: 25px;
        border-radius: 50%;
        border: 1px solid rgba(198, 40, 40, 0.25);
    }



/* Content sits above overlay */
.ballb-mini-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
}

/* Breadcrumb */
.ballb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

    .ballb-breadcrumb a {
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .ballb-breadcrumb a:hover {
            color: #ffffff;
        }

.bc-sep {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
}

.ballb-breadcrumb > span:last-child {
    color: var(--primary-red);
    font-weight: 600;
}

/* Hero Badge pill */
.ballb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 40, 40, 0.18);
    border: 1px solid rgba(198, 40, 40, 0.45);
    color: #ffb3b3;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(6px);
    animation: heroBadgePulse 3s ease-in-out infinite;
}

@keyframes heroBadgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(198, 40, 40, 0);
    }
}

/* Hero Title */
.ballb-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: heroFadeUp 0.9s ease both;
}

    .ballb-hero-title span {
        color: var(--primary-red);
        font-style: italic;
    }



@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Right-side stat stack */
.ballb-hero-stat-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 20px 28px;
    backdrop-filter: blur(10px);
    animation: heroFadeUp 1s ease 0.2s both;
}

.hstat-item {
    text-align: center;
    padding: 10px 0;
}

.hstat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.hstat-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hstat-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 4px auto;
}


/* ==============================
   PROGRAM SNAPSHOT STRIP
   ============================== */
.llb-snapshot-strip {
    background: var(--primary-blue);
    padding: 0;
    position: relative;
    z-index: 3;
}

.snapshot-grid {
    border-radius: 0;
}

.snapshot-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 32px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    transition: background 0.3s ease;
}

.snapshot-item:last-child {
    border-right: none;
}

.snapshot-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.snapshot-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.snapshot-icon.red {
    background: rgba(198, 40, 40, 0.25);
    border-color: rgba(198, 40, 40, 0.40);
    color: #ef9a9a;
}

.snapshot-info h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.snapshot-info p {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* ==============================
   ABOUT SECTION — Collage
   ============================== */
.llb-about-section {
    background: var(--bg-soft, #F8FAFC);
}

.llb-about-collage {
    position: relative;
    height: 480px;
}

.llb-ac-img {
    position: absolute;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.llb-ac-main {
    width: 72%;
    height: 85%;
    top: 0;
    left: 0;
    border: 4px solid #fff;
}

.llb-ac-secondary {
    width: 52%;
    height: 55%;
    bottom: 0;
    right: 0;
    border: 4px solid #fff;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.llb-experience-tag {
    position: absolute;
    bottom: 50%;
    right: 26%;
    transform: translateY(50%);
    background: var(--primary-red);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(198, 40, 40, 0.35);
    z-index: 4;
}

.exp-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.exp-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.88;
}

/* Feature rows */
.llb-about-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 10px;
}

.llb-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.llb-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(198, 40, 40, 0.10);
    color: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}

.llb-feature-row h6 {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.llb-feature-row p {
    font-size: 13.5px;
    color: var(--text-muted, #64748b);
    margin: 0;
    line-height: 1.6;
}

/* ==============================
   CURRICULUM — SEMESTER GRID
   ============================== */
.llb-curriculum-section {
    background: #fff;
}

.llb-semester-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sem-card {
    background: var(--bg-soft, #F8FAFC);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #e8eef5;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.sem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 18px 0 0 18px;
    transition: width 0.3s ease;
}

.sem-card:hover {
    box-shadow: 0 20px 50px rgba(13, 54, 110, 0.12);
    transform: translateY(-5px);
    border-color: transparent;
}

.sem-card:hover::before {
    width: 6px;
    background: var(--primary-red);
}

/* Highlight last sem card */
.sem-card-highlight {
    background: linear-gradient(135deg, #0d366e 0%, #163A70 100%);
    border-color: transparent;
    color: #fff;
}

.sem-card-highlight::before {
    background: var(--primary-red);
}

.sem-card-highlight .sem-header .sem-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.sem-card-highlight .sem-header .sem-year {
    color: rgba(255, 255, 255, 0.55);
}

.sem-card-highlight .sem-subjects li {
    color: rgba(255, 255, 255, 0.88);
}

.sem-card-highlight .sem-subjects li i {
    color: #ef9a9a;
}

.sem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.sem-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
}

.sem-year {
    font-size: 12px;
    color: var(--text-muted, #64748b);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sem-subjects {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.sem-subjects li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-body, #475569);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.sem-subjects li i {
    color: var(--primary-red);
    font-size: 9px;
    margin-top: 5px;
    min-width: 12px;
}

/* ==============================
   GALLERY STRIP
   ============================== */
.llb-gallery-strip {
    background: var(--bg-soft, #F8FAFC);
}

.llb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
}

.llb-gal-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.llb-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.llb-gal-item:hover img {
    transform: scale(1.07);
}

.llb-gal-large {
    grid-column: span 2;
    grid-row: span 2;
}

.llb-gal-wide {
    grid-column: span 2;
}

.llb-gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 22, 54, 0.75) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.llb-gal-item:hover .llb-gal-overlay {
    opacity: 1;
}

.llb-gal-overlay i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.llb-gal-overlay span {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==============================
   ELIGIBILITY & ADMISSION SECTION
   ============================== */
.llb-elig-card {
    background: linear-gradient(145deg, var(--primary-blue) 0%, #163A70 100%);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(13, 54, 110, 0.25);
    height: 100%;
}

.llb-elig-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 24px;
}

.llb-elig-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ef9a9a;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.llb-elig-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #fff;
    margin: 0;
}

.llb-elig-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.llb-elig-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.llb-elig-list li i {
    color: #81c784;
    font-size: 15px;
    margin-top: 3px;
    min-width: 18px;
}

/* Admission Steps */
.llb-admission-steps {
    position: relative;
    padding-left: 20px;
}

.llb-admission-steps::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 30px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), rgba(13, 54, 110, 0.1));
}

.adm-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 30px;
    position: relative;
}

.adm-step-last {
    margin-bottom: 0;
}

.adm-step-num {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(13, 54, 110, 0.22);
    z-index: 2;
    position: relative;
    transition: 0.3s ease;
}

.adm-step:hover .adm-step-num {
    background: var(--primary-red);
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.30);
}

.adm-step-content h5 {
    font-family: 'Cinzel', serif;
    font-size: 16.5px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.adm-step-content p {
    font-size: 13.5px;
    color: var(--text-muted, #64748b);
    margin: 0;
    line-height: 1.65;
}

/* ==============================
   CAREER SECTION
   ============================== */
.llb-career-section {
    background: var(--bg-soft, #F8FAFC);
}

.career-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11, 31, 58, 0.07);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(11, 31, 58, 0.14);
}

.career-img-wrap {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.career-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.career-card:hover .career-img-wrap img {
    transform: scale(1.06);
}

.career-body {
    padding: 28px;
    flex: 1;
    position: relative;
}

.career-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), #b30000);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.25);
}

.career-body h4 {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.career-body p {
    font-size: 13.5px;
    color: var(--text-muted, #64748b);
    line-height: 1.65;
    margin: 0;
}



/* ==============================
   SCROLL ANIMATIONS
   ============================== */
[data-animate].pre-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].pre-animate[data-delay="100"] { transition-delay: 0.10s; }
[data-animate].pre-animate[data-delay="150"] { transition-delay: 0.15s; }
[data-animate].pre-animate[data-delay="200"] { transition-delay: 0.20s; }
[data-animate].pre-animate[data-delay="300"] { transition-delay: 0.30s; }
[data-animate].pre-animate[data-delay="400"] { transition-delay: 0.40s; }
[data-animate].pre-animate[data-delay="500"] { transition-delay: 0.50s; }

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   RESPONSIVE — TABLET
   ============================== */
@media (max-width: 991px) {
    .llb-mini-hero {
        min-height: auto;
        padding: 70px 0 60px;
        text-align: center;
    }

    .llb-hero-content {
        padding-right: 0;
    }

    .llb-breadcrumb ol {
        justify-content: center;
    }

    .llb-hero-badge {
        margin: 0 auto 22px;
    }

    .llb-info-pills {
        justify-content: center;
    }

    .llb-hero-actions {
        justify-content: center;
    }

    .llb-hero-sub {
        margin: 0 auto 28px;
        text-align: center;
    }

    .llb-semester-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .snapshot-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .snapshot-item:last-child {
        border-bottom: none;
    }

    .llb-about-collage {
        height: 340px;
        margin-bottom: 30px;
    }

    .llb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .llb-gal-large {
        grid-column: span 2;
        grid-row: span 1;
        height: 220px;
    }

    .llb-gal-wide {
        grid-column: span 2;
        height: 200px;
    }

    .llb-gal-item {
        height: 190px;
    }

    .llb-admission-steps::before {
        display: none;
    }
}

/* ==============================
   RESPONSIVE — MOBILE
   ============================== */
@media (max-width: 767px) {
    .llb-hero-title {
        font-size: 36px;
    }

    .llb-semester-grid {
        grid-template-columns: 1fr;
    }

    .llb-gallery-grid {
        grid-template-columns: 1fr;
    }

    .llb-gal-large,
    .llb-gal-wide {
        grid-column: span 1;
        height: 200px;
    }

    .llb-gal-item {
        height: 180px;
    }

    .llb-cta-strip h2 {
        font-size: 28px;
    }

    .llb-elig-card {
        padding: 28px 22px;
    }

    .adm-step {
        gap: 16px;
    }

    .llb-about-collage {
        height: 280px;
    }

    .snapshot-grid .snapshot-item {
        padding: 20px 16px;
    }
}
