/* =========================================================
   L.C.M.C. WEBSITE
   Main Stylesheet
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #174a75;
    --primary-dark: #0d3454;
    --secondary:#5B2A82;;
    --dark: #18232d;
    --text: #555;
    --light: #f5f7f9;
    --white: #ffffff;
    --border: #e5e8eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 80px 0;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 13px;
}

.top-bar-content {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar span {
    margin-right: 20px;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a:hover {
    color: var(--secondary);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    background: #fff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-container {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-area h1 {
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.logo-area p {
    font-size: 11px;
    color: #777;
    margin-top: 4px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar > a,
.nav-dropdown > a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 34px 0;
    position: relative;
}

.navbar > a:hover,
.nav-dropdown > a:hover,
.navbar .active {
    color: var(--primary);
}

.navbar .active::after {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}


/* Dropdown */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 80px;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: none;
    border-top: 3px solid var(--secondary);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    height: 600px;
    position: relative;
    overflow: hidden;
    background: #123;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-image: url("hero\ 1.png");
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide:nth-child(2) {
    background-image: url("hero\ 1.png");
}

.hero-slide:nth-child(3) {
    background-image: url("hero\ 1.png");
}

.hero-slide.active-slide {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.1)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    max-width: 1200px;
}

.hero-small-title {
    color: var(--secondary);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.05;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-content p {
    max-width: 600px;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--secondary);
    color: #fff;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.hero-arrow:hover {
    background: var(--primary);
}

.hero-prev {
    left: 25px;
}

.hero-next {
    right: 25px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background: var(--secondary);
}


/* =========================================================
   QUICK LINKS
========================================================= */

.quick-links {
    position: relative;
    margin-top: -45px;
    z-index: 10;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.quick-card {
    background: #fff;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid var(--border);
    transition: 0.3s;
}

.quick-card:last-child {
    border-right: none;
}

.quick-card:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
}

.quick-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    border-radius: 50%;
}

.quick-card:hover .quick-icon {
    background: rgba(255,255,255,0.15);
}

.quick-card h3 {
    font-size: 16px;
    margin-bottom: 2px;
}

.quick-card p {
    font-size: 12px;
    opacity: 0.75;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-label {
    display: block;
    color: var(--secondary);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.section-heading h2,
.academic-heading h2,
.about-content h2 {
    color: var(--dark);
    font-size: 38px;
    line-height: 1.2;
}

.view-more {
    color: var(--primary);
    font-weight: bold;
    font-size: 14px;
}

.view-more:hover {
    color: var(--secondary);
}


/* =========================================================
   EVENTS & NEWS
========================================================= */

.events-news {
    background: #fff;
}

.events-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.content-panel {
    border: 1px solid var(--border);
    padding: 25px;
}

.panel-title {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.panel-title h3 {
    color: var(--dark);
}

.event-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    min-width: 60px;
    height: 65px;
    background: var(--primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-date strong {
    font-size: 23px;
    line-height: 1;
}

.event-date span {
    font-size: 11px;
    color: var(--secondary);
    font-weight: bold;
}

.event-item h4,
.news-item h4 {
    color: var(--dark);
    margin-bottom: 4px;
}

.event-item p,
.news-item p {
    font-size: 13px;
    margin-bottom: 5px;
}

.event-item small {
    color: #888;
    font-size: 11px;
}

.news-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.news-image {
    min-width: 120px;
    width: 120px;
    height: 90px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    font-size: 11px;
    color: var(--secondary);
    font-weight: bold;
}


/* =========================================================
   ACADEMICS
========================================================= */

.academics {
    background: var(--light);
}

.academic-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.academic-heading h2 {
    margin-bottom: 12px;
}

.academic-heading p {
    font-size: 15px;
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.academic-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: 0.3s;
    overflow: hidden;
}

.academic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.academic-image {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.academic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.academic-card:hover .academic-image img {
    transform: scale(1.06);
}

.academic-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 7px 12px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.academic-content {
    padding: 25px;
}

.academic-level {
    font-size: 11px;
    color: var(--secondary);
    font-weight: bold;
    letter-spacing: 1.5px;
}

.academic-content h3 {
    color: var(--dark);
    font-size: 23px;
    margin: 5px 0 10px;
}

.academic-content p {
    font-size: 13px;
    margin-bottom: 20px;
}

.academic-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.academic-footer a {
    color: var(--primary);
    font-weight: bold;
}

.academic-footer a:hover {
    color: var(--secondary);
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 480px;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    bottom: 25px;
    right: -25px;
    background: var(--primary);
    color: #fff;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
}

.experience-box strong {
    font-size: 22px;
}

.experience-box span {
    color: #ddd;
    font-size: 12px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}


/* =========================================================
   MINISTRIES
========================================================= */

.ministries {
    background: var(--light);
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ministry-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.ministry-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.ministry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 40%,
        rgba(0,0,0,0.85)
    );
}

.ministry-card:hover img {
    transform: scale(1.05);
}

.ministry-card > div {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
}

.ministry-card h3 {
    font-size: 21px;
}

.ministry-card p {
    font-size: 12px;
}


/* =========================================================
   SERMON
========================================================= */

.sermon-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: #fff;
}

.sermon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.light-label {
    color: var(--secondary);
}

.sermon-grid h2 {
    font-size: 45px;
    margin-bottom: 15px;
}

.sermon-grid p {
    max-width: 550px;
    margin-bottom: 25px;
}

.sermon-card {
    min-height: 280px;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
        url("semons.jpg") center/cover;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 30px;
}

.play-button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.sermon-card span {
    font-size: 11px;
    color: var(--secondary);
    font-weight: bold;
    letter-spacing: 1px;
}

.sermon-card h3 {
    font-size: 25px;
    margin: 5px 0;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background: var(--secondary);
    padding: 55px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta .section-label {
    color: #fff;
}

.cta h2 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 5px;
}

.cta p {
    color: #fff;
    opacity: 0.9;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #101a22;
    color: #aaa;
}

.footer-grid {
    padding: 65px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo h3 {
    color: #fff;
}

.footer-logo span {
    font-size: 10px;
}

.footer-about p {
    max-width: 300px;
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    font-size: 13px;
}

.footer-column a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .navbar {
        gap: 15px;
    }

    .academic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .academic-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        width: 100%;
        margin: auto;
    }

    .ministries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 850px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 15px 5%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .navbar.show {
        display: flex;
    }

    .navbar > a,
    .nav-dropdown > a {
        padding: 12px 0;
    }

    .navbar .active::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        padding-left: 15px;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-news-grid,
    .about-grid,
    .sermon-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

}


@media (max-width: 600px) {

    .top-bar {
        display: none;
    }

    .nav-container {
        min-height: 75px;
    }

    .logo-area img {
        width: 45px;
        height: 45px;
    }

    .logo-area h1 {
        font-size: 19px;
    }

    .logo-area p {
        font-size: 8px;
    }

    .navbar {
        top: 75px;
    }

    .hero {
        height: 540px;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .quick-links {
        margin-top: 0;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 55px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .section-heading h2,
    .academic-heading h2,
    .about-content h2 {
        font-size: 30px;
    }

    .academic-grid,
    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .academic-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .about-image img {
        height: 330px;
    }

    .experience-box {
        right: 10px;
        bottom: 10px;
    }

    .sermon-grid h2 {
        font-size: 35px;
    }

    .sermon-card {
        min-height: 250px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta h2 {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
    }

}
/* =====================================================
   LCMC PROFESSIONAL LOGO & HEADER POLISH
===================================================== */

.header {
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
    min-height: 100px;
}

/* Logo area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LCMC logo image */
.logo-area img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

/* L.C.M.C. name */
.logo-area h1 {
    margin: 0;
    color: var(--primary);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
}

/* Organization name */
.logo-area p {
    margin: 6px 0 0;
    color: #777;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

/* Navigation */
.navbar {
    gap: 28px;
}

.navbar > a,
.nav-dropdown > a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Navigation hover */
.navbar > a:hover,
.nav-dropdown > a:hover {
    color: var(--primary);
}

/* Active navigation */
.navbar .active {
    color: var(--primary);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .logo-area img {
        width: 62px;
        height: 62px;
    }

    .logo-area h1 {
        font-size: 26px;
    }

    .navbar {
        gap: 16px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .nav-container {
        min-height: 85px;
    }

    .logo-area img {
        width: 58px;
        height: 58px;
    }

    .logo-area h1 {
        font-size: 24px;
    }

    .logo-area p {
        font-size: 9px;
    }
}


@media (max-width: 600px) {

    .nav-container {
        min-height: 75px;
    }

    .logo-area {
        gap: 9px;
    }

    .logo-area img {
        width: 50px;
        height: 50px;
    }

    .logo-area h1 {
        font-size: 21px;
        letter-spacing: 1px;
    }

    .logo-area p {
        font-size: 8px;
        margin-top: 4px;
    }
}
/* =========================================================
   EVENTS & NEWS - PROFESSIONAL LAYOUT
========================================================= */

.events-news {
    background: #f7f9fb;
    padding: 70px 0;
}

.events-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

/* Remove the big box appearance */
.content-panel {
    background: #ffffff;
    border: none;
    padding: 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

/* Section headings */
.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #e9eef2;
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.panel-title h3 {
    color: var(--primary);
    font-size: 21px;
    font-weight: 700;
    margin: 0;
    position: relative;
}

/* Small gold line under heading */
.panel-title h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: var(--secondary);
    margin-top: 8px;
}


/* =========================================================
   EVENTS
========================================================= */

.event-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e6ebef;
}

.event-item:last-child {
    border-bottom: none;
}

/* Date box */
.event-date {
    min-width: 60px;
    width: 60px;
    height: 65px;
    background: var(--primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-date strong {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.event-date span {
    font-size: 10px;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 4px;
}

/* Event information */
.event-item h4 {
    color: var(--dark);
    font-size: 15px;
    margin: 0 0 6px;
    font-weight: 700;
}

.event-item p {
    font-size: 12px;
    color: #666;
    margin: 0 0 7px;
    line-height: 1.5;
}

.event-item small {
    color: #888;
    font-size: 10px;
}


/* =========================================================
   NEWS
========================================================= */

.news-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e6ebef;
}

.news-item:last-child {
    border-bottom: none;
}

.news-image {
    min-width: 125px;
    width: 125px;
    height: 85px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    display: block;
    font-size: 10px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 5px;
}

.news-item h4 {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.35;
    margin: 0 0 6px;
}

.news-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .events-news {
        padding: 55px 0;
    }

    .events-news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-panel {
        padding: 25px;
    }
}

@media (max-width: 600px) {

    .events-news {
        padding: 45px 0;
    }

    .content-panel {
        padding: 20px;
    }

    .panel-title h3 {
        font-size: 19px;
    }

    .event-item {
        gap: 14px;
    }

    .event-date {
        min-width: 55px;
        width: 55px;
        height: 60px;
    }

    .event-date strong {
        font-size: 20px;
    }

    .news-image {
        min-width: 100px;
        width: 100px;
        height: 75px;
    }

    .news-item {
        gap: 13px;
    }
}
/* =====================================================
   LCMC STATISTICS / AT A GLANCE
===================================================== */

.lcmc-stats {
   background: #5B2A82;
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
}

.stat-item {
    padding: 10px 20px;
    position: relative;
}

.stat-item h2 {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #111;
    letter-spacing: 1px;
}

.stat-item p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.5px;
}

/* Vertical separators */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
}

/* Hover effect */
.stat-item h2 {
    transition: transform 0.3s ease;
}

.stat-item:hover h2 {
    transform: translateY(-4px);
}

/* Tablet */
@media (max-width: 850px) {

    .lcmc-stats {
        padding: 45px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .lcmc-stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .stat-item {
        padding: 5px 10px;
    }

    .stat-item h2 {
        font-size: 30px;
    }

    .stat-item p {
        font-size: 10px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}
/* =========================================================
   LCMC - KIM STYLE TOP BAR & MAIN HEADER
   Paste at the VERY BOTTOM of style.css
========================================================= */


/* =========================
   TOP GOLD BAR
========================= */

.top-bar {
    background: #5B2A82;;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.top-bar-content {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar span {
    margin-right: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-links a {
    color: #111;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.top-links a:hover {
    color: #ffffff;
}


/* =========================
   MAIN WHITE HEADER
========================= */

.header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e7e7e7;
}

.nav-container {
    min-height: 82px;
}


/* =========================
   LCMC LOGO
========================= */

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-area h1 {
    color: var(--primary);
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
}

.logo-area p {
    color: #777;
    font-size: 10px;
    margin-top: 5px;
    letter-spacing: 0.2px;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    gap: 22px;
}

.navbar > a,
.nav-dropdown > a {
    color: #222;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    padding: 31px 0;
    transition: color 0.25s ease;
}

.navbar > a:hover,
.nav-dropdown > a:hover {
    color: var(--primary);
}


/* Active page */

.navbar .active {
    color: var(--primary);
}

.navbar .active::after {
    background: var(--secondary);
    height: 3px;
    bottom: 20px;
}


/* =========================
   DROPDOWN
========================= */

.dropdown-menu {
    border-top: 3px solid var(--secondary);
}

.dropdown-menu a:hover {
    background: #f5f7f9;
    color: var(--primary);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .top-bar-content {
        min-height: 34px;
    }

    .top-bar span {
        font-size: 10px;
    }

    .top-links {
        gap: 10px;
    }

    .top-links a {
        font-size: 10px;
    }

    .nav-container {
        min-height: 80px;
    }

    .logo-area img {
        width: 58px;
        height: 58px;
    }

    .logo-area h1 {
        font-size: 23px;
    }

    .logo-area p {
        font-size: 9px;
    }

    .navbar {
        top: 80px;
    }
}


@media (max-width: 600px) {

    .top-bar {
        display: none;
    }

    .nav-container {
        min-height: 74px;
    }

    .logo-area {
        gap: 9px;
    }

    .logo-area img {
        width: 50px;
        height: 50px;
    }

    .logo-area h1 {
        font-size: 20px;
    }

    .logo-area p {
        font-size: 8px;
    }

    .navbar {
        top: 74px;
    }
}
/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page-hero {
    position: relative;
    min-height: 360px;
    background-image: url("community-pic.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 10, 35, 0.90),
        rgba(91, 42, 130, 0.70)
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 70px 20px;
}

.about-hero-content > span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 20px;
    max-width: 750px;
}

.about-hero-content p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.about-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.about-breadcrumb strong {
    color: #fff;
}


/* ================= INTRODUCTION ================= */

.about-introduction {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-main-image {
    position: relative;
}

.about-main-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

.about-image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #5B2A82;
    color: #fff;
    padding: 18px 25px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-image-badge strong {
    font-size: 20px;
}

.about-image-badge span {
    font-size: 13px;
}

.about-main-content h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 12px 0 25px;
}

.about-main-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 17px;
}


/* ================= SECTION HEADINGS ================= */

.about-section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.about-section-heading h2 {
    font-size: 38px;
    margin: 10px 0 15px;
}

.about-section-heading p {
    color: #666;
    line-height: 1.7;
}


/* ================= VISION & MISSION ================= */

.about-vision {
    background: #f7f5f9;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vision-card {
    background: #fff;
    padding: 40px;
    display: flex;
    gap: 25px;
    border-radius: 8px;
    border-top: 4px solid #5B2A82;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.vision-icon {
    min-width: 60px;
    height: 60px;
    background: #f0e9f5;
    color: #5B2A82;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}

.vision-card span {
    font-size: 13px;
    font-weight: 700;
    color: #5B2A82;
    letter-spacing: 1px;
}

.vision-card h3 {
    font-size: 24px;
    margin: 8px 0 12px;
}

.vision-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* ================= BELIEFS ================= */

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.belief-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.belief-number {
    color: #5B2A82;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
}

.belief-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.belief-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* ================= VALUES ================= */

.values-section {
    background: #5B2A82;
    color: #fff;
}

.values-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.values-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 12px 0 20px;
}

.values-content > div:first-child p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 500px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
}

.value-item > span {
    font-size: 22px;
    font-weight: bold;
}

.value-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.value-item p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.5;
}


/* ================= LEADERSHIP ================= */

.leadership-message {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    background: #f7f5f9;
    border-left: 5px solid #5B2A82;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.leadership-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #5B2A82;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}

.leadership-message h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.leadership-message p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}


/* ================= ABOUT CTA ================= */

.about-cta {
    background: #f4f0f7;
    padding: 70px 0;
}

.about-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta-content h2 {
    font-size: 38px;
    margin: 10px 0;
}

.about-cta-content p {
    color: #666;
    margin: 0;
}

.about-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 2px solid #5B2A82;
    color: #5B2A82;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: #5B2A82;
    color: #fff;
}


/* ================= ABOUT RESPONSIVE ================= */

@media (max-width: 900px) {

    .about-introduction,
    .vision-mission-grid,
    .values-content {
        grid-template-columns: 1fr;
    }

    .beliefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-content {
        gap: 40px;
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

    .about-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .about-page-hero {
        min-height: 400px;
    }

    .about-hero-content {
        padding: 55px 20px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-main-image img {
        height: 330px;
    }

    .about-main-content h2,
    .about-section-heading h2,
    .values-content h2,
    .about-cta-content h2 {
        font-size: 30px;
    }

    .vision-card {
        flex-direction: column;
        padding: 30px;
    }

    .beliefs-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .leadership-message {
        flex-direction: column;
        padding: 30px;
    }

}
/* =========================================================
   PROFESSIONAL LCMC ABOUT PAGE
========================================================= */

.professional-about-hero {
    position: relative;
    min-height: 440px;
    background: url("community-pic.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.professional-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(24, 10, 38, 0.94),
        rgba(91, 42, 130, 0.78)
    );
}

.professional-about-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 80px 20px;
}

.professional-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.professional-about-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 15px 0 20px;
}

.professional-about-content p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
}

.professional-breadcrumb {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    font-size: 14px;
}

.professional-breadcrumb a {
    color: #fff;
    text-decoration: none;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.professional-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.professional-intro-image {
    position: relative;
}

.professional-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.intro-image-caption {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #5B2A82;
    color: #fff;
    padding: 18px 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.intro-image-caption strong {
    font-size: 20px;
}

.intro-image-caption span {
    font-size: 13px;
}

.professional-intro-text h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 12px 0 25px;
}

.professional-intro-text p {
    color: #666;
    line-height: 1.8;
}

.intro-highlight {
    border-left: 4px solid #5B2A82;
    padding: 15px 20px;
    margin-top: 25px;
    background: #f7f3f9;
}

.intro-highlight span {
    display: block;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.professional-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.professional-heading h2 {
    font-size: 40px;
    margin: 10px 0 15px;
}

.professional-heading p {
    color: #666;
    line-height: 1.7;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.professional-purpose {
    background: #f7f5f9;
}

.professional-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.purpose-card {
    background: #fff;
    padding: 40px;
    border-top: 5px solid #5B2A82;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.purpose-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.purpose-top span {
    color: #5B2A82;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.purpose-icon {
    width: 55px;
    height: 55px;
    background: #5B2A82;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 50%;
}

.purpose-card h3 {
    font-size: 27px;
    line-height: 1.3;
    margin: 25px 0 15px;
}

.purpose-card p {
    color: #666;
    line-height: 1.8;
}


/* =========================================================
   BELIEFS
========================================================= */

.beliefs-professional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.professional-belief {
    padding: 30px;
    border: 1px solid #e9e9e9;
    background: #fff;
    transition: .3s ease;
}

.professional-belief:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.professional-belief > span {
    color: #5B2A82;
    font-weight: 800;
    font-size: 13px;
}

.professional-belief h3 {
    font-size: 21px;
    margin: 18px 0 10px;
}

.professional-belief p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   VALUES
========================================================= */

.professional-values {
    background: #5B2A82;
    color: #fff;
}

.professional-values-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.professional-values-intro h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 12px 0 20px;
}

.professional-values-intro p {
    color: rgba(255,255,255,.8);
    line-height: 1.7;
}

.professional-values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.professional-value {
    display: flex;
    gap: 15px;
    padding: 22px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
}

.professional-value > strong {
    font-size: 14px;
}

.professional-value h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.professional-value p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   LEADERSHIP
========================================================= */

.leadership-professional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.leader-placeholder {
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.leader-photo-placeholder {
    height: 280px;
    background: #eee9f1;
    color: #5B2A82;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.leader-info {
    padding: 25px;
}

.leader-info span {
    font-size: 11px;
    color: #5B2A82;
    font-weight: 800;
    letter-spacing: 1px;
}

.leader-info h3 {
    font-size: 21px;
    margin: 8px 0;
}

.leader-info p {
    color: #777;
    font-size: 14px;
}


/* =========================================================
   STATISTICS
========================================================= */

.professional-statistics {
    background: #5B2A82;
    color: #fff;
    padding: 80px 0;
}

.professional-stats-heading {
    text-align: center;
    margin-bottom: 45px;
}

.professional-stats-heading span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.professional-stats-heading h2 {
    font-size: 36px;
    margin-top: 10px;
}

.professional-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.professional-stat {
    text-align: center;
    padding: 25px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.professional-stat:last-child {
    border-right: none;
}

.professional-stat strong {
    display: block;
    font-size: 44px;
}

.professional-stat span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.8);
}


/* =========================================================
   MINISTRY
========================================================= */

.professional-ministry-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.professional-ministry-grid h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-top: 12px;
}

.professional-ministry-grid p {
    color: #666;
    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.professional-about-cta {
    background: #f4f0f7;
    padding: 70px 0;
}

.professional-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.professional-cta-content > div:first-child {
    max-width: 700px;
}

.professional-cta-content span {
    color: #5B2A82;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.professional-cta-content h2 {
    font-size: 38px;
    margin: 10px 0;
}

.professional-cta-content p {
    color: #666;
}

.professional-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.professional-cta-buttons .btn-outline-light {
    border-color: #5B2A82;
    color: #5B2A82;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .professional-intro-grid,
    .professional-purpose-grid,
    .professional-values-grid,
    .professional-ministry-grid {
        grid-template-columns: 1fr;
    }

    .beliefs-professional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-professional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .professional-statistics {
        padding: 60px 0;
    }

    .professional-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .professional-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .professional-stat:nth-child(3),
    .professional-stat:nth-child(4) {
        border-bottom: none;
    }

    .professional-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .professional-about-hero {
        min-height: 420px;
    }

    .professional-about-content h1 {
        font-size: 40px;
    }

    .professional-about-content p {
        font-size: 16px;
    }

    .professional-intro-image img {
        height: 350px;
    }

    .professional-intro-text h2,
    .professional-heading h2,
    .professional-values-intro h2,
    .professional-ministry-grid h2,
    .professional-cta-content h2 {
        font-size: 30px;
    }

    .beliefs-professional-grid,
    .leadership-professional-grid {
        grid-template-columns: 1fr;
    }

    .professional-purpose-grid {
        gap: 20px;
    }

    .purpose-card {
        padding: 30px;
    }

    .professional-values-list {
        grid-template-columns: 1fr;
    }

    .professional-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .professional-stat strong {
        font-size: 34px;
    }

}
/* =========================================
   LEADERSHIP SECTION
   ========================================= */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.leader-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.leader-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leader-info {
    padding: 12px 8px;
}

.leader-info h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #5B2A82;
}

.leader-info p {
    margin: 0;
    font-size: 13px;
    color: #666;
}


/* Tablet */
@media (max-width: 900px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Mobile */
@media (max-width: 600px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .leader-image {
        height: 150px;
    }

    .leader-info h3 {
        font-size: 14px;
    }
}
/* =========================================================
   PROFESSIONAL ABOUT PAGE
   HERO SECTION
   ========================================================= */

.professional-about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #3f2055;
}

/* Hero image */
.professional-about-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Purple dark overlay */
.professional-about-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(45, 20, 65, 0.92) 0%,
            rgba(91, 42, 130, 0.78) 50%,
            rgba(91, 42, 130, 0.35) 100%
        );
}

/* Hero content */
.professional-about-content {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    color: #ffffff;
}

/* Small heading */
.professional-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 18px;
}

/* Main heading */
.professional-about-content h1 {
    margin: 0 0 22px;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 800;
    color: #ffffff;
}

/* Description */
.professional-about-content > p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,0.90);
    font-size: 17px;
    line-height: 1.8;
}

/* Breadcrumb */
.professional-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 14px;
}

.professional-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.professional-breadcrumb span {
    color: rgba(255,255,255,0.55);
}

.professional-breadcrumb strong {
    color: #ffffff;
}


/* =========================================================
   ABOUT INTRODUCTION
   ========================================================= */

.professional-introduction {
    padding: 100px 20px;
    background: #ffffff;
}

.professional-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.professional-intro-image {
    position: relative;
}

.professional-intro-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}

.intro-image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #5B2A82;
    color: #ffffff;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
}

.intro-image-caption strong {
    font-size: 21px;
}

.intro-image-caption span {
    font-size: 12px;
    margin-top: 4px;
    opacity: .85;
}

.professional-intro-text h2 {
    color: #302038;
    font-size: 44px;
    line-height: 1.15;
    margin: 12px 0 20px;
}

.professional-intro-text p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.intro-highlight {
    margin-top: 25px;
    padding: 20px 25px;
    border-left: 4px solid #5B2A82;
    background: #f7f4f9;
}

.intro-highlight span,
.intro-highlight strong {
    display: block;
}

.intro-highlight span {
    color: #5B2A82;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 6px;
}

.intro-highlight strong {
    color: #302038;
    font-size: 17px;
}


/* =========================================================
   VISION & MISSION
   ========================================================= */

.professional-purpose {
    padding: 100px 20px;
    background: #f7f5f9;
}

.professional-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.professional-heading .section-label {
    color: #5B2A82;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.professional-heading h2 {
    color: #302038;
    font-size: 44px;
    margin: 12px 0;
}

.professional-heading p {
    color: #777;
    line-height: 1.7;
}

.professional-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.purpose-card {
    background: #ffffff;
    padding: 40px;
    border-top: 4px solid #5B2A82;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    transition: .3s;
}

.purpose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(91,42,130,.12);
}

.purpose-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.purpose-icon {
    width: 52px;
    height: 52px;
    background: #eee5f3;
    color: #5B2A82;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.purpose-top span {
    color: #5B2A82;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.purpose-card h3 {
    color: #302038;
    font-size: 28px;
    line-height: 1.25;
    margin: 25px 0 15px;
}

.purpose-card p {
    color: #777;
    line-height: 1.8;
}


/* =========================================================
   BELIEFS
   ========================================================= */

.professional-beliefs {
    padding: 100px 20px;
    background: #ffffff;
}

.beliefs-professional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.professional-belief {
    position: relative;
    padding: 35px;
    background: #faf9fb;
    border: 1px solid #eee8f1;
    transition: .3s;
}

.professional-belief:hover {
    transform: translateY(-5px);
    border-color: #d7c4e1;
    box-shadow: 0 12px 30px rgba(91,42,130,.10);
}

.professional-belief > span {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
}

.professional-belief h3 {
    color: #302038;
    font-size: 21px;
    margin-bottom: 10px;
}

.professional-belief p {
    color: #777;
    line-height: 1.7;
    font-size: 14px;
}


/* =========================================================
   VALUES
   ========================================================= */

.professional-values {
    padding: 100px 20px;
    background: #5B2A82;
    color: #ffffff;
}

.professional-values-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
}

.professional-values-intro h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 1.15;
    margin: 15px 0;
}

.professional-values-intro p {
    color: rgba(255,255,255,.78);
    line-height: 1.8;
}

.light-label {
    color: rgba(255,255,255,.75) !important;
}

.professional-values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 1px solid rgba(255,255,255,.2);
}

.professional-value {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-right: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.professional-value > strong {
    color: rgba(255,255,255,.45);
    font-size: 12px;
}

.professional-value h3 {
    margin: 0 0 7px;
    color: #ffffff;
}

.professional-value p {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   LEADERSHIP
   ========================================================= */

.professional-leadership {
    padding: 100px 20px;
    background: #f7f5f9;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.leader-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: .3s;
}

.leader-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(91,42,130,.15);
}

.leader-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #e8e3eb;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: .4s;
}

.leader-card:hover .leader-image img {
    transform: scale(1.04);
}

.leader-info {
    text-align: center;
    padding: 18px 10px 20px;
}

.leader-info h3 {
    color: #302038;
    font-size: 18px;
    margin: 0 0 6px;
}

.leader-info p {
    color: #5B2A82;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}


/* =========================================================
   STATISTICS
   ========================================================= */

.professional-statistics {
    padding: 80px 20px;
    background: #302038;
    color: #ffffff;
}

.professional-stats-heading {
    text-align: center;
    margin-bottom: 45px;
}

.professional-stats-heading span {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: .65;
}

.professional-stats-heading h2 {
    margin: 10px 0 0;
    font-size: 36px;
}

.professional-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.professional-stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.professional-stat:last-child {
    border-right: none;
}

.professional-stat strong {
    display: block;
    font-size: 40px;
}

.professional-stat span {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: .65;
}


/* =========================================================
   MINISTRY
   ========================================================= */

.professional-ministry {
    padding: 100px 20px;
    background: #ffffff;
}

.professional-ministry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.professional-ministry h2 {
    color: #302038;
    font-size: 45px;
    line-height: 1.15;
}

.professional-ministry p {
    color: #666;
    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.professional-about-cta {
    padding: 80px 20px;
    background: #5B2A82;
    color: #ffffff;
}

.professional-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.professional-cta-content h2 {
    font-size: 42px;
    margin: 10px 0;
}

.professional-cta-content p {
    color: rgba(255,255,255,.8);
    max-width: 600px;
}

.professional-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1000px) {

    .professional-intro-grid,
    .professional-values-grid,
    .professional-ministry-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beliefs-professional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .professional-statistics .container {
        max-width: 900px;
    }

    .professional-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .professional-stat:nth-child(2) {
        border-right: none;
    }

    .professional-stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

}


@media (max-width: 650px) {

    .professional-about-hero {
        min-height: 430px;
    }

    .professional-about-content {
        padding: 80px 20px;
    }

    .professional-about-content h1 {
        font-size: 48px;
    }

    .professional-intro-image img {
        height: 350px;
    }

    .professional-purpose-grid,
    .beliefs-professional-grid,
    .leadership-grid,
    .professional-values-list {
        grid-template-columns: 1fr;
    }

    .professional-heading h2,
    .professional-intro-text h2,
    .professional-values-intro h2,
    .professional-ministry h2 {
        font-size: 34px;
    }

    .professional-stat strong {
        font-size: 32px;
    }

    .professional-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .professional-cta-content h2 {
        font-size: 34px;
    }

}
/* =========================================================
   LCMC PROFESSIONAL ABOUT PAGE
   ========================================================= */

.about-new-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-new-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(38, 17, 55, 0.90),
        rgba(91, 42, 130, 0.65),
        rgba(0, 0, 0, 0.25)
    );
}

.about-new-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 100px 20px;
}

.about-new-label,
.new-section-label {
    color: #5B2A82;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-new-label {
    color: #fff;
}

.about-new-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin: 15px 0 20px;
    font-weight: 800;
}

.about-new-hero p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
}

.about-breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 30px;
    font-size: 14px;
}

.about-breadcrumb a {
    color: #fff;
}

.about-breadcrumb span {
    opacity: .6;
}


/* INTRO */

.about-new-intro {
    padding: 100px 20px;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.about-intro-image > img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-badge {
    position: absolute;
    bottom: 25px;
    right: -20px;
    background: #5B2A82;
    color: #fff;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.about-image-badge strong {
    font-size: 20px;
}

.about-image-badge span {
    font-size: 12px;
    margin-top: 4px;
    opacity: .85;
}

.about-intro-content h2,
.ministry-new-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: #302038;
    margin: 15px 0;
}

.heading-line {
    width: 55px;
    height: 4px;
    background: #5B2A82;
    margin: 20px 0 25px;
}

.about-intro-content p,
.ministry-new-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-read-more,
.about-primary-btn,
.learning-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 14px 22px;
    background: #5B2A82;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.about-read-more:hover,
.about-primary-btn:hover,
.learning-btn:hover {
    transform: translateY(-2px);
    opacity: .9;
}


/* HIGHLIGHT STRIP */

.about-highlight-strip {
    background: #5B2A82;
    padding: 28px 20px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.highlight-item i {
    font-size: 25px;
}

.highlight-item strong,
.highlight-item span {
    display: block;
}

.highlight-item strong {
    font-size: 14px;
}

.highlight-item span {
    font-size: 12px;
    opacity: .75;
    margin-top: 4px;
}


/* SECTION HEADINGS */

.new-section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.new-section-heading h2 {
    font-size: clamp(32px, 4vw, 46px);
    color: #302038;
    margin: 12px 0;
}

.new-section-heading p {
    color: #777;
    line-height: 1.7;
}


/* VISION / MISSION */

.about-purpose {
    background: #f7f5f9;
    padding: 100px 20px;
}

.purpose-new-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1050px;
    margin: auto;
}

.purpose-new-card {
    background: #fff;
    padding: 40px;
    position: relative;
    border-top: 4px solid #5B2A82;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.purpose-new-card.purple-card {
    background: #5B2A82;
    color: #fff;
}

.purpose-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 45px;
    font-weight: 800;
    opacity: .08;
}

.purpose-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #eee5f3;
    color: #5B2A82;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.purpose-new-card > span {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.purpose-new-card h3 {
    font-size: 28px;
    line-height: 1.25;
    margin: 15px 0;
}

.purpose-new-card p {
    line-height: 1.8;
    opacity: .75;
}


/* BELIEFS */

.about-beliefs {
    padding: 100px 20px;
    background: #fff;
}

.belief-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.belief-new-card {
    padding: 32px;
    background: #faf9fb;
    border: 1px solid #eee8f1;
    position: relative;
    transition: .3s;
}

.belief-new-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(91,42,130,.10);
}

.belief-new-card > span {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #5B2A82;
    font-size: 13px;
    font-weight: 700;
}

.belief-new-card i {
    font-size: 28px;
    color: #5B2A82;
    margin-bottom: 20px;
}

.belief-new-card h3 {
    color: #302038;
    font-size: 20px;
}

.belief-new-card p {
    color: #777;
    line-height: 1.7;
}


/* VALUES */

.about-values-new {
    background: #5B2A82;
    color: #fff;
    padding: 100px 20px;
}

.values-new-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.light-section-label {
    color: #ddd;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.values-new-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin-top: 12px;
}

.values-new-header > p {
    line-height: 1.8;
    opacity: .8;
}

.values-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 1px solid rgba(255,255,255,.2);
}

.value-new {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.value-new span {
    font-size: 12px;
    opacity: .55;
}

.value-new h3 {
    font-size: 21px;
    margin: 12px 0 8px;
}

.value-new p {
    font-size: 14px;
    line-height: 1.7;
    opacity: .75;
}


/* LEADERSHIP */

.about-leadership-new {
    padding: 100px 20px;
    background: #f7f5f9;
}

.leadership-new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.leader-new-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: .3s;
}

.leader-new-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(91,42,130,.15);
}

.leader-new-image {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: #e8e3eb;
}

.leader-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: .4s;
}

.leader-new-card:hover img {
    transform: scale(1.04);
}

.leader-social {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: #5B2A82;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-new-info {
    padding: 20px;
}

.leader-new-info span {
    font-size: 10px;
    color: #5B2A82;
    font-weight: 700;
    letter-spacing: 1px;
}

.leader-new-info h3 {
    margin: 7px 0 0;
    color: #302038;
    font-size: 19px;
}


/* GLANCE */

.about-glance-new {
    background: #302038;
    color: #fff;
    padding: 75px 20px;
}

.glance-heading {
    text-align: center;
    margin-bottom: 45px;
}

.glance-heading span {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: .65;
}

.glance-heading h2 {
    font-size: 35px;
    margin: 10px 0 0;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.glance-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.glance-item:last-child {
    border-right: none;
}

.glance-item i {
    color: #c9a9df;
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
}

.glance-item strong,
.glance-item span {
    display: block;
}

.glance-item strong {
    font-size: 38px;
}

.glance-item span {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: .65;
    margin-top: 5px;
}


/* MINISTRY */

.about-ministry-new {
    padding: 100px 20px;
}

.ministry-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ministry-new-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.ministry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 25px 0;
}

.ministry-features div {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #444;
    font-size: 14px;
}

.ministry-features i {
    color: #5B2A82;
}


/* LEARNING */

.about-learning-new {
    background: #f7f5f9;
    padding: 90px 20px;
}

.learning-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.learning-new-content > span {
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.learning-new-content h2 {
    font-size: 45px;
    line-height: 1.15;
    color: #302038;
}

.learning-new-content p {
    color: #666;
    line-height: 1.8;
}

.learning-new-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}


/* FINAL CTA */

.about-final-cta {
    position: relative;
    background-image: url("hero\ 1.png");
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #fff;
}

.about-final-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48,32,56,.88);
}

.about-final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta-content {
    max-width: 800px;
}

.final-cta-content > span {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .7;
}

.final-cta-content h2 {
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.1;
    margin: 15px 0;
}

.final-cta-content p {
    max-width: 600px;
    line-height: 1.8;
    opacity: .8;
}

.final-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cta-white,
.cta-outline {
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 600;
}

.cta-white {
    background: #fff;
    color: #5B2A82;
}

.cta-outline {
    border: 1px solid rgba(255,255,255,.6);
    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-intro-grid,
    .ministry-new-grid,
    .learning-new-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .belief-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-new-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glance-item:nth-child(2) {
        border-right: none;
    }

    .glance-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

}


@media (max-width: 650px) {

    .about-new-hero {
        min-height: 430px;
    }

    .about-new-hero-content {
        padding: 80px 20px;
    }

    .about-intro-image > img {
        height: 350px;
    }

    .about-image-badge {
        right: 10px;
    }

    .highlight-grid,
    .purpose-new-grid,
    .belief-new-grid,
    .leadership-new-grid,
    .values-new-grid,
    .ministry-features {
        grid-template-columns: 1fr;
    }

    .glance-grid {
        grid-template-columns: 1fr 1fr;
    }

    .glance-item {
        border-right: 1px solid rgba(255,255,255,.15);
    }

    .glance-item:nth-child(even) {
        border-right: none;
    }

    .leader-new-image {
        height: 220px;
    }

    .ministry-new-image img,
    .learning-new-image img {
        height: 330px;
    }

    .learning-new-content h2 {
        font-size: 35px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* =========================================================
   LCMC ACADEMICS PAGE
   ========================================================= */


/* =========================================================
   ACADEMICS HERO
   ========================================================= */

.academic-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #5B2A82;
}

.academic-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.academic-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(30, 15, 45, 0.95),
        rgba(91, 42, 130, 0.80),
        rgba(91, 42, 130, 0.30)
    );
}

.academic-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
}

.academic-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.academic-hero h1 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.03;
    font-weight: 800;
}

.academic-hero p {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.7;
}

.academic-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
}

.academic-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.academic-breadcrumb a:hover {
    text-decoration: underline;
}

.academic-breadcrumb span {
    opacity: 0.6;
}


/* =========================================================
   GENERAL SECTION LABEL
   ========================================================= */

.academic-introduction .section-label,
.academic-programmes .section-label,
.academic-pathway .section-label,
.academic-benefits .section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.academic-introduction {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.academic-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.academic-intro-text h2 {
    margin: 0 0 25px;
    color: #25202a;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.academic-intro-text p {
    max-width: 760px;
    margin: 0 0 18px;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.academic-intro-box {
    padding: 45px;
    background: #f5f1f8;
    border-left: 5px solid #5B2A82;
}

.academic-intro-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5B2A82;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
}

.academic-intro-box h3 {
    margin: 0 0 15px;
    color: #25202a;
    font-size: 24px;
}

.academic-intro-box p {
    margin: 0;
    color: #666666;
    line-height: 1.7;
}


/* =========================================================
   PROGRAMMES
   ========================================================= */

.academic-programmes {
    width: 100%;
    padding: 100px 0;
    background: #f7f7f8;
}

.academic-section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.academic-section-heading h2 {
    margin: 0 0 20px;
    color: #25202a;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.academic-section-heading p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}


/* PROGRAMME GRID */

.academic-programme-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}


/* CARD */

.academic-card {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7e3e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.academic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


/* CARD IMAGE */

.academic-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #ddd;
}

.academic-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.academic-card:hover .academic-card-image img {
    transform: scale(1.05);
}


/* CARD TAG */

.academic-card-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 8px 13px;
    background: #5B2A82;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}


/* CARD CONTENT */

.academic-card-content {
    padding: 30px;
}

.academic-level {
    display: block;
    margin-bottom: 10px;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.academic-card-content h3 {
    margin: 0 0 15px;
    color: #25202a;
    font-size: 24px;
    line-height: 1.3;
}

.academic-card-content p {
    min-height: 90px;
    margin: 0 0 25px;
    color: #666666;
    line-height: 1.7;
}


/* CARD FOOTER */

.academic-card-footer {
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.academic-learn-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5B2A82;
    font-weight: 700;
    text-decoration: none;
}

.academic-learn-more:hover {
    color: #3f1d5d;
}

.academic-learn-more span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.academic-learn-more:hover span {
    transform: translateX(5px);
}


/* =========================================================
   LEARNING PATHWAY
   ========================================================= */

.academic-pathway {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.academic-pathway-grid {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.academic-pathway-item {
    flex: 1;
    padding: 35px;
    background: #f7f5f8;
}

.pathway-number {
    margin-bottom: 25px;
    color: #5B2A82;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.academic-pathway-item h3 {
    margin: 0 0 12px;
    color: #25202a;
    font-size: 21px;
    line-height: 1.3;
}

.academic-pathway-item p {
    margin: 0;
    color: #666666;
    line-height: 1.6;
}

.pathway-line {
    flex: 0 0 45px;
    width: 45px;
    height: 3px;
    align-self: center;
    background: #5B2A82;
}


/* =========================================================
   WHY LCMC / BENEFITS
   ========================================================= */

.academic-benefits {
    width: 100%;
    padding: 100px 0;
    background: #f5f1f8;
}

.academic-benefits-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.academic-benefits h2 {
    margin: 0 0 20px;
    color: #25202a;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.academic-benefits-grid > div:first-child > p {
    margin: 0;
    color: #666666;
    line-height: 1.8;
}


/* BENEFIT LIST */

.academic-benefit-list {
    background: #ffffff;
}

.academic-benefit {
    display: flex;
    gap: 25px;
    padding: 28px 30px;
    border-bottom: 1px solid #e8e3ea;
}

.academic-benefit:last-child {
    border-bottom: none;
}

.academic-benefit > span {
    flex: 0 0 auto;
    color: #5B2A82;
    font-size: 13px;
    font-weight: 800;
}

.academic-benefit h3 {
    margin: 0 0 7px;
    color: #25202a;
    font-size: 19px;
}

.academic-benefit p {
    margin: 0;
    color: #777777;
    line-height: 1.5;
}


/* =========================================================
   CALL TO ACTION
   ========================================================= */

.academic-cta {
    width: 100%;
    padding: 100px 0;
    background: #5B2A82;
    text-align: center;
}

.academic-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.academic-cta .section-label {
    color: rgba(255, 255, 255, 0.75);
}

.academic-cta h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.academic-cta p {
    max-width: 650px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}


/* BUTTONS */

.academic-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.academic-btn {
    display: inline-block;
    padding: 15px 28px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.academic-btn-primary {
    background: #ffffff;
    color: #5B2A82;
}

.academic-btn-primary:hover {
    background: #eeeeee;
    color: #5B2A82;
}

.academic-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.academic-btn-outline:hover {
    background: #ffffff;
    color: #5B2A82;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .academic-programme-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .academic-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .academic-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .academic-benefits-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .academic-hero {
        min-height: 480px;
    }

    .academic-hero-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .academic-hero h1 {
        font-size: 45px;
    }

    .academic-hero p {
        max-width: 100%;
        font-size: 15px;
    }


    .academic-introduction,
    .academic-programmes,
    .academic-pathway,
    .academic-benefits,
    .academic-cta {
        padding: 70px 0;
    }


    .academic-intro-box {
        padding: 30px;
    }


    .academic-programme-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .academic-card:last-child {
        grid-column: auto;
        max-width: none;
    }


    .academic-card-image {
        height: 230px;
    }


    .academic-card-content {
        padding: 25px;
    }

    .academic-card-content p {
        min-height: auto;
    }


    .academic-pathway-grid {
        flex-direction: column;
    }

    .academic-pathway-item {
        width: 100%;
        padding: 30px;
    }


    .pathway-line {
        flex: none;
        width: 3px;
        height: 35px;
        margin-left: 35px;
        align-self: flex-start;
    }


    .academic-benefit {
        padding: 25px 20px;
    }


    .academic-cta-buttons {
        flex-direction: column;
    }

    .academic-btn {
        width: 100%;
        max-width: 280px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .academic-hero h1 {
        font-size: 40px;
    }

    .academic-hero-content {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .academic-card-image {
        height: 210px;
    }

    .academic-section-heading {
        margin-bottom: 35px;
    }

    .academic-intro-text h2,
    .academic-section-heading h2,
    .academic-benefits h2 {
        font-size: 32px;
    }

}
/* =========================================================
   LCMC HEADER FIX
   ========================================================= */

/* TOP BAR */
.top-bar {
    width: 100%;
    background: #5B2A82;
    color: #fff;
    height: 34px;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-left span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar-right a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

.top-bar-right a:hover {
    text-decoration: underline;
}


/* =========================================================
   MAIN HEADER
   ========================================================= */

.main-header {
    width: 100%;
    height: 125px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;
    box-sizing: border-box;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 330px;
    height: auto;
    max-height: 105px;
    object-fit: contain;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    height: 100%;
    margin-left: auto;
}

.main-nav > a,
.main-nav > .nav-dropdown > a {
    display: flex;
    align-items: center;

    height: 100%;

    color: #222;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > .nav-dropdown > a:hover {
    color: #5B2A82;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}

.nav-dropdown > a span {
    margin-left: 5px;
    font-size: 11px;
}


/* Dropdown menu */

.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 210px;

    background: #fff;

    border-top: 3px solid #5B2A82;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);

    padding: 8px 0;

    display: none;

    z-index: 9999;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;

    padding: 11px 18px;

    color: #333;

    text-decoration: none;

    font-size: 13px;

    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f5f0f8;
    color: #5B2A82;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1000px) {

    .main-header {
        height: auto;
        padding: 15px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        width: 100%;
        height: auto;

        justify-content: center;
        flex-wrap: wrap;

        gap: 15px;
    }

    .main-nav > a,
    .main-nav > .nav-dropdown > a {
        height: auto;
        padding: 5px 0;
    }

    .logo img {
        width: 280px;
    }

}


@media (max-width: 650px) {

    .top-bar {
        height: auto;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        padding: 7px 15px;
    }

    .top-bar-right {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav > a,
    .main-nav > .nav-dropdown > a {
        font-size: 12px;
    }

    .logo img {
        width: 230px;
    }

}
/* FORCE HERO BACKGROUND */
.academic-hero,
.professional-about-hero,
.hero {
    background-image: url("hero\ 1.png") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
/* FORCE SAME HERO IMAGE ON ABOUT + ACADEMICS */

.academic-hero,
.professional-about-hero {
    background-image: url("hero\ 1.png") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.academic-hero-image {
    opacity: 0 !important;
}
/* ABOUT PAGE - USE SAME HERO IMAGE */

.professional-about-hero {
    background: url("hero\ 1.png") center / cover no-repeat !important;
}

.professional-about-image {
    opacity: 0 !important;
}
/* =========================================================
   L.C.M.C. MINISTRIES PAGE - FRESH DESIGN
   ========================================================= */

/* ================= HERO ================= */

.ministry-page-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
}

.ministry-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ministry-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.58);
}

.ministry-page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    color: #fff;
}

.ministry-page-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.ministry-page-hero h1 {
    margin: 0 0 22px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
}

.ministry-page-hero p {
    max-width: 650px;
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.ministry-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.ministry-page-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.ministry-page-breadcrumb strong {
    color: #fff;
}


/* ================= INTRODUCTION ================= */

.ministry-introduction {
    padding: 100px 0;
    background: #fff;
}

.ministry-intro-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 1.5fr;
    gap: 55px;
    align-items: start;
}

.ministry-intro-label {
    padding-top: 8px;
}

.ministry-intro-label span {
    display: inline-block;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.7;
}

.ministry-intro-title h2 {
    margin: 0;
    color: #222;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.ministry-intro-text p {
    margin: 0 0 18px;
    color: #666;
    font-size: 16px;
    line-height: 1.85;
}

.ministry-intro-text p:last-child {
    margin-bottom: 0;
}


/* ================= MINISTRY PROGRAMMES ================= */

.ministry-programmes {
    padding: 95px 0 110px;
    background: #f6f6f6;
}

.ministry-section-header {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 55px;
    align-items: end;
    margin-bottom: 55px;
}

.ministry-section-header span {
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.ministry-section-header h2 {
    margin: 0;
    color: #222;
    font-size: 42px;
    line-height: 1.15;
}


/* ================= CARDS ================= */

.ministry-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ministry-item {
    background: #fff;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ministry-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
}


/* ================= CARD IMAGE ================= */

.ministry-item-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.ministry-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ministry-item:hover .ministry-item-image img {
    transform: scale(1.05);
}


/* ================= CARD CONTENT ================= */

.ministry-item-content {
    padding: 30px 30px 32px;
    background: #fff;
}

.ministry-item-number {
    margin-bottom: 13px;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ministry-item-content h3 {
    margin: 0 0 14px;
    color: #222;
    font-size: 23px;
    line-height: 1.3;
}

.ministry-item-content p {
    margin: 0 0 23px;
    color: #666;
    font-size: 15px;
    line-height: 1.75;
}

.ministry-item-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #5B2A82;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.ministry-item-content a:hover {
    gap: 14px;
}

.ministry-item-content a span {
    font-size: 18px;
    line-height: 1;
}


/* ================= SERVICE / CTA ================= */

.ministry-service {
    padding: 100px 0;
    background: #5B2A82;
}

.ministry-service-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.ministry-service-content > span {
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.ministry-service-content h2 {
    margin: 0 0 22px;
    font-size: 44px;
    line-height: 1.15;
}

.ministry-service-content p {
    max-width: 650px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}

.ministry-service-button {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #5B2A82;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.ministry-service-button:hover {
    background: #eee;
}


/* ================= TABLET ================= */

@media (max-width: 950px) {

    .ministry-intro-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 35px;
    }

    .ministry-intro-text {
        grid-column: 2;
    }

    .ministry-section-header {
        grid-template-columns: 1fr 2fr;
        gap: 30px;
    }

    .ministry-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ministry-page-hero h1 {
        font-size: 48px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 650px) {

    .ministry-page-hero {
        height: 500px;
    }

    .ministry-page-hero-content {
        width: 88%;
    }

    .ministry-page-hero h1 {
        font-size: 38px;
    }

    .ministry-page-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .ministry-introduction {
        padding: 70px 0;
    }

    .ministry-intro-layout {
        display: block;
    }

    .ministry-intro-label {
        margin-bottom: 20px;
    }

    .ministry-intro-title h2 {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .ministry-intro-text p {
        font-size: 15px;
    }

    .ministry-programmes {
        padding: 70px 0;
    }

    .ministry-section-header {
        display: block;
        margin-bottom: 40px;
    }

    .ministry-section-header span {
        display: block;
        margin-bottom: 18px;
    }

    .ministry-section-header h2 {
        font-size: 34px;
    }

    .ministry-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ministry-item-image {
        height: 220px;
    }

    .ministry-service {
        padding: 75px 0;
    }

    .ministry-service-content h2 {
        font-size: 34px;
    }

}
/* =========================================================
   L.C.M.C. RESOURCES PAGE
   ========================================================= */

/* ================= HERO ================= */

.resources-page-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
}

.resources-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.resources-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.58);
}

.resources-page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    color: #fff;
}

.resources-page-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.resources-page-hero h1 {
    margin: 0 0 22px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
}

.resources-page-hero p {
    max-width: 650px;
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.resources-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.resources-page-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.resources-page-breadcrumb strong {
    color: #fff;
}


/* ================= INTRODUCTION ================= */

.resources-introduction {
    padding: 100px 0;
    background: #fff;
}

.resources-intro-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 1.5fr;
    gap: 55px;
    align-items: start;
}

.resources-intro-label {
    padding-top: 8px;
}

.resources-intro-label span {
    display: inline-block;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.7;
}

.resources-intro-title h2 {
    margin: 0;
    color: #222;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.resources-intro-text p {
    margin: 0 0 18px;
    color: #666;
    font-size: 16px;
    line-height: 1.85;
}

.resources-intro-text p:last-child {
    margin-bottom: 0;
}


/* ================= RESOURCES SECTION ================= */

.resources-section {
    padding: 95px 0 110px;
    background: #f6f6f6;
}

.resources-section-header {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 55px;
    align-items: end;
    margin-bottom: 55px;
}

.resources-section-header span {
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.resources-section-header h2 {
    margin: 0;
    color: #222;
    font-size: 42px;
    line-height: 1.15;
}


/* ================= RESOURCE GRID ================= */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* ================= RESOURCE CARD ================= */

.resource-card {
    display: grid;
    grid-template-columns: 42% 58%;
    background: #fff;
    border: 1px solid #e9e9e9;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
}


/* ================= CARD IMAGE ================= */

.resource-card-image {
    min-height: 300px;
    overflow: hidden;
}

.resource-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.resource-card:hover .resource-card-image img {
    transform: scale(1.05);
}


/* ================= CARD CONTENT ================= */

.resource-card-content {
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.resource-card-number {
    margin-bottom: 12px;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.resource-card-content h3 {
    margin: 0 0 14px;
    color: #222;
    font-size: 25px;
    line-height: 1.3;
}

.resource-card-content p {
    margin: 0 0 22px;
    color: #666;
    font-size: 15px;
    line-height: 1.75;
}

.resource-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #5B2A82;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.resource-card-content a:hover {
    gap: 14px;
}

.resource-card-content a span {
    font-size: 18px;
    line-height: 1;
}


/* ================= CTA ================= */

.resources-cta {
    padding: 100px 0;
    background: #5B2A82;
}

.resources-cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.resources-cta-content > span {
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.resources-cta-content h2 {
    margin: 0 0 22px;
    font-size: 44px;
    line-height: 1.15;
}

.resources-cta-content p {
    max-width: 650px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}

.resources-cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #5B2A82;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.resources-cta-button:hover {
    background: #eee;
}


/* ================= TABLET ================= */

@media (max-width: 950px) {

    .resources-intro-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 35px;
    }

    .resources-intro-text {
        grid-column: 2;
    }

    .resources-section-header {
        grid-template-columns: 1fr 2fr;
        gap: 30px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resources-page-hero h1 {
        font-size: 48px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 650px) {

    .resources-page-hero {
        height: 500px;
    }

    .resources-page-hero-content {
        width: 88%;
    }

    .resources-page-hero h1 {
        font-size: 38px;
    }

    .resources-page-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .resources-introduction {
        padding: 70px 0;
    }

    .resources-intro-layout {
        display: block;
    }

    .resources-intro-label {
        margin-bottom: 20px;
    }

    .resources-intro-title h2 {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .resources-intro-text p {
        font-size: 15px;
    }

    .resources-section {
        padding: 70px 0;
    }

    .resources-section-header {
        display: block;
        margin-bottom: 40px;
    }

    .resources-section-header span {
        display: block;
        margin-bottom: 18px;
    }

    .resources-section-header h2 {
        font-size: 34px;
    }

    .resource-card {
        grid-template-columns: 1fr;
    }

    .resource-card-image {
        min-height: 220px;
        height: 220px;
    }

    .resource-card-content {
        padding: 28px;
    }

    .resources-cta {
        padding: 75px 0;
    }

    .resources-cta-content h2 {
        font-size: 34px;
    }

}
/* =========================================================
   L.C.M.C. EVENTS PAGE
   KIM-INSPIRED INSTITUTIONAL DESIGN
========================================================= */


/* =========================================================
   EVENTS HERO
========================================================= */

.event-page-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.event-page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.48),
        rgba(0, 0, 0, 0.20)
    );
}

.event-page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.event-page-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
}

.event-page-hero-content h1 {
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
}

.event-page-hero-content p {
    max-width: 620px;
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.event-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.event-page-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.event-page-breadcrumb a:hover {
    text-decoration: underline;
}

.event-page-breadcrumb strong {
    color: #fff;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.event-introduction {
    padding: 85px 0;
    background: #fff;
}

.event-intro-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.event-section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.event-intro-heading h2 {
    margin: 0;
    color: #222;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.event-intro-text p {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}


/* =========================================================
   FEATURED EVENT
========================================================= */

.featured-event {
    padding: 0 0 90px;
    background: #fff;
}

.featured-event-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 500px;
    background: #f5f5f5;
}

.featured-event-image {
    overflow: hidden;
}

.featured-event-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.featured-event-grid:hover .featured-event-image img {
    transform: scale(1.03);
}

.featured-event-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-featured-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #5B2A82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.featured-event-content h2 {
    margin: 0 0 18px;
    color: #222;
    font-size: 38px;
    line-height: 1.2;
}

.featured-event-description {
    margin: 0 0 30px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.featured-event-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.featured-event-details div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.featured-event-details span {
    color: #5B2A82;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.featured-event-details strong {
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.event-primary-button {
    align-self: flex-start;
    display: inline-block;
    padding: 14px 28px;
    background: #5B2A82;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.event-primary-button:hover {
    background: #3f1d5d;
    transform: translateY(-2px);
}


/* =========================================================
   UPCOMING EVENTS
========================================================= */

.upcoming-events {
    padding: 90px 0;
    background: #f7f7f7;
}

.event-section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.event-section-heading h2 {
    margin: 0 0 15px;
    color: #222;
    font-size: 42px;
    line-height: 1.2;
}

.event-section-heading p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   EVENT GRID
========================================================= */

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-item {
    background: #fff;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.event-item-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.event-item:hover .event-item-image img {
    transform: scale(1.06);
}


/* =========================================================
   DATE BOX
========================================================= */

.event-date-box {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 70px;
    padding: 10px 5px;
    background: #5B2A82;
    color: #fff;
    text-align: center;
}

.event-date-box span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-date-box strong {
    display: block;
    margin: 2px 0;
    font-size: 29px;
    line-height: 1.1;
}

.event-date-box small {
    font-size: 10px;
}


/* =========================================================
   EVENT CONTENT
========================================================= */

.event-item-content {
    padding: 28px;
}

.event-category {
    display: inline-block;
    margin-bottom: 9px;
    color: #5B2A82;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.event-item-content h3 {
    margin: 0 0 13px;
    color: #222;
    font-size: 21px;
    line-height: 1.35;
}

.event-item-content p {
    margin: 0 0 22px;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.event-meta span {
    color: #666;
    font-size: 13px;
}

.event-link {
    display: inline-block;
    margin-top: 20px;
    color: #5B2A82;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.event-link:hover {
    color: #3f1d5d;
}


/* =========================================================
   EVENTS INFORMATION / CTA
========================================================= */

.events-information {
    padding: 90px 0;
    background: #fff;
}

.events-information-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.events-info-content h2 {
    margin: 0 0 20px;
    color: #222;
    font-size: 42px;
    line-height: 1.2;
}

.events-info-content p {
    max-width: 600px;
    margin: 0 0 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.event-outline-button {
    display: inline-block;
    padding: 13px 28px;
    border: 2px solid #5B2A82;
    color: #5B2A82;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.event-outline-button:hover {
    background: #5B2A82;
    color: #fff;
}


/* =========================================================
   EVENT STATS
========================================================= */

.events-info-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.event-stat {
    min-height: 190px;
    padding: 35px 25px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-stat strong {
    display: block;
    margin-bottom: 10px;
    color: #5B2A82;
    font-size: 48px;
    line-height: 1;
}

.event-stat span {
    color: #555;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .event-page-hero-content h1 {
        font-size: 48px;
    }

    .event-intro-layout {
        gap: 45px;
    }

    .featured-event-grid {
        grid-template-columns: 1fr;
    }

    .featured-event-image img {
        min-height: 380px;
        height: 380px;
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-information-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 700px) {

    .event-page-hero {
        min-height: 450px;
    }

    .event-page-hero-content {
        padding: 60px 20px;
    }

    .event-page-hero-content h1 {
        font-size: 40px;
    }

    .event-page-hero-content p {
        font-size: 15px;
    }


    .event-introduction {
        padding: 60px 20px;
    }

    .event-intro-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-intro-heading h2 {
        font-size: 34px;
    }


    .featured-event {
        padding: 0 20px 60px;
    }

    .featured-event-content {
        padding: 35px 25px;
    }

    .featured-event-content h2 {
        font-size: 30px;
    }

    .featured-event-image img {
        min-height: 280px;
        height: 280px;
    }


    .upcoming-events {
        padding: 60px 20px;
    }

    .event-section-heading h2 {
        font-size: 34px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }


    .events-information {
        padding: 60px 20px;
    }

    .events-info-content h2 {
        font-size: 34px;
    }

    .events-info-stats {
        grid-template-columns: 1fr 1fr;
    }

    .event-stat {
        min-height: 150px;
    }

    .event-stat strong {
        font-size: 38px;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 420px) {

    .event-page-hero-content h1 {
        font-size: 34px;
    }

    .event-intro-heading h2,
    .event-section-heading h2,
    .events-info-content h2 {
        font-size: 30px;
    }

    .featured-event-content {
        padding: 30px 20px;
    }

    .events-info-stats {
        grid-template-columns: 1fr;
    }

}

.gallery-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gallery-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 18, 65, 0.72);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

.gallery-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gallery-hero-content h1 {
    font-size: 58px;
    margin: 0 0 15px;
    font-weight: 700;
}

.gallery-hero-content p {
    max-width: 650px;
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   GALLERY CONTENT
========================================================= */

.gallery-section {
    background: #f8f6fa;
}

.gallery-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.gallery-heading > span {
    color: #5B2A82;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gallery-heading h2 {
    font-size: 38px;
    color: #2d1839;
    margin: 10px 0 15px;
}

.gallery-heading p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================================
   GALLERY CARD
========================================================= */

.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   GALLERY IMAGE
========================================================= */

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.06);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 18, 65, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay button {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #5B2A82;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-overlay button:hover {
    transform: scale(1.1);
    background: #5B2A82;
    color: #fff;
}


/* =========================================================
   GALLERY CONTENT
========================================================= */

.gallery-content {
    padding: 20px;
}

.gallery-content h3 {
    margin: 0 0 10px;
    color: #2d1839;
    font-size: 20px;
}

.gallery-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   NO GALLERY
========================================================= */

.no-gallery {
    background: #fff;
    text-align: center;
    padding: 70px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.no-gallery i {
    font-size: 50px;
    color: #5B2A82;
    margin-bottom: 20px;
}

.no-gallery h3 {
    color: #2d1839;
    font-size: 25px;
    margin-bottom: 10px;
}

.no-gallery p {
    color: #666;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-lightbox-title {
    color: #fff;
    font-size: 18px;
    margin-top: 15px;
    text-align: center;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    line-height: 1;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .gallery-hero {
        min-height: 400px;
    }

    .gallery-hero-content h1 {
        font-size: 42px;
    }

    .gallery-hero-content p {
        font-size: 16px;
    }

    .gallery-heading h2 {
        font-size: 30px;
    }

}


@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 240px;
    }

}


@media (max-width: 480px) {

    .gallery-hero-content h1 {
        font-size: 36px;
    }

    .gallery-lightbox {
        padding: 15px;
    }

    .gallery-lightbox img {
        max-width: 95%;
        max-height: 75vh;
    }

    .gallery-close {
        right: 15px;
        top: 10px;
        font-size: 38px;
    }

}
/* =====================================================
   LCMC NAVIGATION FIX
   ===================================================== */

/* Header */
.header {
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #5B2A82;
    border-bottom: 1px solid #eeeeee;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}


/* =====================================================
   MAIN NAVIGATION
   ===================================================== */

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center;
    gap: 4px;
}

.nav-menu > li {
    list-style: none !important;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-menu > li > a {
    display: block;

    padding: 12px 10px;

    color: #444;
    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: all 0.3s ease;
}

.nav-menu > li > a:hover {
    color: #5B2A82;
}


/* =====================================================
   DROPDOWN MENU
   ===================================================== */

.dropdown-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;

    min-width: 210px;

    background: #ffffff;

    padding: 8px 0 !important;
    margin: 0 !important;

    list-style: none !important;

    border-top: 3px solid #5B2A82;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

    z-index: 9999;
}

.dropdown-menu li {
    display: block;
    width: 100%;

    list-style: none !important;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;

    padding: 10px 16px;

    color: #444;
    text-decoration: none;

    font-size: 14px;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #5B2A82;
    color: #ffffff;
}


/* Show dropdown when mouse is over it */
.dropdown:hover > .dropdown-menu {
    display: block;
}


/* =====================================================
   TOP BAR
   ===================================================== */

.top-bar {
    width: 100%;
    background: #5B2A82;
    color: #ffffff;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;

    padding: 7px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
}

.top-bar a:hover {
    text-decoration: underline;
}


/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */

@media (max-width: 1000px) {

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu > li > a {
        padding: 9px 8px;
        font-size: 14px;
    }
}


@media (max-width: 700px) {

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .header-container {
        padding: 15px;
    }

    .logo img {
        width: 130px;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column !important;
        align-items: stretch;
    }

    .nav-menu > li {
        width: 100%;
        text-align: center;
    }

    .nav-menu > li > a {
        width: 100%;
        padding: 11px;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #5B2A82;
    }

    .dropdown:hover > .dropdown-menu {
        display: block;
    }

}


/* =====================================================
   GENERAL LIST FIX
   Prevents browser bullets from appearing
   ===================================================== */

.navbar ul,
.navbar li {
    list-style: none !important;
}


/* =====================================================
   FOOTER LIST FIX
   ===================================================== */

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    list-style: none;
}
/* Make L.C.M.C. logo bigger */
header img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.event-home-image {
    width: 110px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.event-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-information {
    flex: 1;
}

.event-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5B2A82;
    margin-bottom: 5px;
}

.event-information small {
    display: block;
    margin-top: 5px;
}

.event-home-button {
    margin-top: 10px;
}

.event-view-btn {
    display: inline-block;
    padding: 7px 14px;
    background: #5B2A82;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.event-view-btn:hover {
    opacity: 0.85;
}