* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #ffffff 0%, #fff4e6 25%, #e8f4f8 50%, #ffe8f0 75%, #ffffff 100%);
    background-attachment: fixed;
    color: #1f2937;
    position: relative;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

/* Global layout wrapper for consistent alignment */
.container,
.section-inner,
.sectors-container,
.about-container,
.stats-container,
.services-container,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

section {
    width: 100%;
}



.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transform: scale(1.05);
}

.video-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Smoky overlay in light mode — darkens left so text is readable */
    background: linear-gradient(90deg, rgba(20, 20, 40, 0.72) 0%, rgba(20, 20, 40, 0.45) 50%, rgba(20, 20, 40, 0.1) 100%);
    transition: background 0.3s;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.4rem 0.6%;
    padding-right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background 0.35s ease, box-shadow 0.35s ease;
    flex-wrap: nowrap;
    min-height: 70px;
    gap: 0.75rem;
}
/* Keep scrolled navbar same visual tone as initial (no orange) */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .nav-links li a {
    color: #000000 !important;
}

.navbar.scrolled .nav-links li a:hover,
.navbar.scrolled .nav-links li a.active {
    color: #e67e22 !important;
}

.navbar.scrolled .nav-register-btn {
    background: #e67e22;
    color: white;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.15);
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: fit-content;
}

.logo-img {
    height: 60px;
    max-height: 60px;
    object-fit: contain;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: #0f204c;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #e67e22;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    margin-right: 0 !important;
}

.fcci-logo {
    margin-right: 0 !important;

    height: 56px;
    max-height: 56px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.dark-mode-toggle {
    color: #000000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
    flex-shrink: 0;
}

.nav-register-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-brochure-btn {
    background: rgba(230, 126, 34, 0.15);
    color: #e67e22;
    border: 2px solid #e67e22;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-brochure-btn i {
    font-size: 1rem;
}

.nav-brochure-btn:hover {
    background: #e67e22;
    color: #000000;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Hamburger Menu Toggle (FIXED NESTING) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
    z-index: 101;
    background: transparent;
    border: none;
    padding: 0;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* Navbar Scrolled state for toggle */
.navbar.scrolled .menu-toggle .bar {
    background-color: #000000 !important;
}

body.dark-mode .menu-toggle .bar {
    background-color: #000000;
}

/* Leadership Team Section */
.leadership-team-section {
    background: #ffffff;
    padding: 4rem 0 3rem;
    color: #1f2937;
}

.leadership-team-section .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.leadership-team-section .section-header h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.leadership-team-section .section-subtitle {
    color: #4b5563;
    font-size: 1rem;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.team-card {
    text-align: center;
    padding: 1.2rem 1rem 0.6rem;
}

.team-avatar {
    width: 132px;
    height: 132px;
    border: 4px solid #e67e22;
    border-radius: 50%;
    background: #ffffff;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transition: transform 0.3s ease;
    display: block;
}

.team-avatar:hover img {
    transform: scale(1.02);
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0.5rem 0 0.2rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Featured Leaders - Top Row (increased by ~28%) */
.featured-leader .team-avatar {
    width: 170px;
    height: 170px;
    border: 5px solid #e67e22;
    margin: 0 auto 1.3rem;
    background: #ffffff;
}

.featured-leader .team-avatar img {
    object-fit: contain;
    object-position: center;
    transform: scale(1.10);
}

.featured-leader .team-avatar:hover img {
    transform: scale(1.2);
}

.featured-leader h3 {
    font-size: 1.35rem;
}

.featured-leader p {
    font-size: 1.15rem;
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.6rem 0.8%;
        padding-right: 0;
        gap: 0.8rem;
        min-height: 60px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #f0f0f0;
    }

    .logo-link {
        min-width: fit-content;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        margin-right: 0;
    }

    .logo-img.logo-light {
        display: block;
    }

    .logo-img.logo-dark {
        display: none;
    }

    .logo-img {
        height: 32px;
        width: auto;
    }

    .fcci-logo {
        height: 32px;
        width: auto;
    }

    .menu-toggle {
        display: none !important;
    }

    .menu-toggle .bar {
        width: 16px;
        height: 2.2px;
        background-color: #ffffff;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: auto;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        transition: 0.4s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links li {
        margin: 0.8rem 0;
    }

    .nav-links li a {
        color: #333333;
        font-weight: 500;
    }

    .nav-actions {
        gap: 0.6rem;
        flex-shrink: 0;
        align-items: center;
        display: flex;
        margin-left: auto;
    }

    .dark-mode-toggle {
        font-size: 1.3rem;
        flex-shrink: 0;
        color: #333333;
        cursor: pointer;
    }

    .nav-register-btn {
        padding: 0.55rem 1.1rem;
        font-size: 0.85rem;
        font-weight: 600;
        flex-shrink: 0;
        min-width: fit-content;
        background: #e67e22;
        color: #ffffff;
        border: none;
        border-radius: 7px;
        box-shadow: 0 2px 6px rgba(230, 126, 34, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-register-btn::before {
        content: "";
    }

    .nav-register-btn:hover {
        background: #d35400;
        box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
        transform: translateY(-2px);
    }

    .nav-brochure-btn {
        padding: 0.55rem 1.1rem;
        font-size: 0.85rem;
        font-weight: 600;
        flex-shrink: 0;
        min-width: fit-content;
        background: #e67e22;
        color: #ffffff;
        border: none;
        border-radius: 7px;
        box-shadow: 0 2px 6px rgba(230, 126, 34, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-brochure-btn i {
        font-size: 0.95rem;
        margin-right: 0;
    }

    .nav-brochure-btn:hover {
        background: #d35400;
        box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
        transform: translateY(-2px);
    }

    .fcci-logo {
        height: 32px;
        width: auto;
        flex-shrink: 0;
        filter: none;
    }

    body.dark-mode .navbar {
        background: #1a1a1a;
        border-bottom-color: #333333;
    }

    body.dark-mode .dark-mode-toggle {
        color: #ffffff;
    }

    body.dark-mode .menu-toggle .bar {
        background-color: #ffffff;
    }

    body.dark-mode .nav-links {
        background: #1a1a1a;
        border-bottom-color: #333333;
    }

    body.dark-mode .nav-links li a {
        color: #ffffff;
    }
}
@media (max-width: 768px) {
    .navbar {
        padding: 0.55rem 0;
        padding-right: 0;
        gap: 0.6rem;
        min-height: 58px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        align-items: center;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #f0f0f0;
    }

    .logo-link {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        margin-right: 0;
    }

    .logo-img.logo-light {
        display: block;
    }

    .logo-img.logo-dark {
        display: none;
    }

    .logo-img {
        height: 30px;
        width: auto;
    }

    .fcci-logo {
        height: 32px;
        width: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle .bar {
        width: 16px;
        height: 2px;
        background-color: #333333;
        transition: 0.3s;
    }

    .nav-actions {
        gap: 0.5rem;
        flex-shrink: 0;
        align-items: center;
        display: flex;
        margin-left: auto;
    }

    .dark-mode-toggle {
        font-size: 1.2rem;
        flex-shrink: 0;
        color: #333333;
        cursor: pointer;
    }

    .nav-register-btn {
        padding: 0.48rem 0.95rem;
        font-size: 0.8rem;
        font-weight: 600;
        flex-shrink: 0;
        min-width: fit-content;
        background: #e67e22;
        color: #ffffff;
        border: none;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(230, 126, 34, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-register-btn::before {
        content: "";
    }

    .nav-register-btn:hover {
        background: #d35400;
        box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
        transform: translateY(-1px);
    }

    .nav-brochure-btn {
        padding: 0.48rem 0.95rem;
        font-size: 0.8rem;
        font-weight: 600;
        flex-shrink: 0;
        min-width: fit-content;
        background: #e67e22;
        color: #ffffff;
        border: none;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(230, 126, 34, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-brochure-btn i {
        font-size: 0.9rem;
    }

    .nav-brochure-btn:hover {
        background: #d35400;
        box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
        transform: translateY(-1px);
    }

    .fcci-logo {
        height: 30px;
        width: auto;
        flex-shrink: 0;
        filter: none;
    }

    body.dark-mode .navbar {
        background: #1a1a1a;
        border-bottom-color: #333333;
    }

    body.dark-mode .dark-mode-toggle {
        color: #ffffff;
    }

    body.dark-mode .menu-toggle .bar {
        background-color: #ffffff;
    }

    body.dark-mode .nav-links {
        background: #1a1a1a;
        border-bottom-color: #333333;
    }

    body.dark-mode .nav-links li a {
        color: #ffffff;
    }
}

@media (max-width: 800px) {
    .navbar {
        padding: 0.55rem 0;
        padding-right: 0;
        gap: 0.6rem;
        min-height: 58px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        align-items: center;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #f0f0f0;
    }

    .logo-link {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        margin-right: 0;
    }

    .logo-img.logo-light {
        display: block;
    }

    .logo-img.logo-dark {
        display: none;
    }

    .logo-img {
        height: 30px;
        width: auto;
    }

    .fcci-logo {
        height: 30px;
        width: auto;
    }

    .menu-toggle {
        display: none !important;
    }

    .menu-toggle .bar {
        width: 16px;
        height: 2px;
        background-color: #333333;
        transition: 0.3s;
    }

    .nav-actions {
        gap: 0.5rem;
        flex-shrink: 0;
        align-items: center;
        display: flex;
        margin-left: auto;
    }

    .dark-mode-toggle {
        font-size: 1.2rem;
        flex-shrink: 0;
        color: #333333;
        cursor: pointer;
    }

    .nav-register-btn {
        padding: 0.48rem 0.95rem;
        font-size: 0.8rem;
        font-weight: 600;
        flex-shrink: 0;
        min-width: fit-content;
        background: #e67e22;
        color: #ffffff;
        border: none;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(230, 126, 34, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-register-btn::before {
        content: "";
    }

    .nav-register-btn:hover {
        background: #d35400;
        box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
        transform: translateY(-1px);
    }

    .nav-brochure-btn {
        padding: 0.48rem 0.95rem;
        font-size: 0.8rem;
        font-weight: 600;
        flex-shrink: 0;
        min-width: fit-content;
        background: #e67e22;
        color: #ffffff;
        border: none;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(230, 126, 34, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-brochure-btn i {
        font-size: 0.9rem;
    }

    .nav-brochure-btn:hover {
        background: #d35400;
        box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
        transform: translateY(-1px);
    }

    .fcci-logo {
        height: 30px;
        width: auto;
        flex-shrink: 0;
        filter: none;
    }

    body.dark-mode .navbar {
        background: #1a1a1a;
        border-bottom-color: #333333;
    }

    body.dark-mode .dark-mode-toggle {
        color: #ffffff;
    }

    body.dark-mode .menu-toggle .bar {
        background-color: #ffffff;
    }

    body.dark-mode .nav-links {
        background: #1a1a1a;
        border-bottom-color: #333333;
    }

    body.dark-mode .nav-links li a {
        color: #ffffff;
    }
}

@media (max-width: 500px) {
    .navbar {
        padding: 0.4rem 0.4rem;
        padding-right: 0.4rem;
        gap: 0.35rem;
        min-height: 54px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        align-items: center;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #f0f0f0;
    }

    .logo-link {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .logo-img.logo-light {
        display: block;
    }

    .nav-actions {
        min-width: 0;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 0.24rem;
        justify-content: flex-end;
    }

    .nav-actions > * {
        min-width: 0;
        flex-shrink: 1;
    }

    .nav-register-btn,
    .nav-brochure-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.72rem;
        white-space: nowrap;
        min-width: 0;
        line-height: 1.1;
    }

    .logo-img.logo-dark {
        display: none;
    }

    .logo-img {
        height: 28px;
        width: auto;
    }

    .fcci-logo {
        height: 34px;
        width: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle .bar {
        width: 14px;
        height: 1.8px;
        background-color: #333333;
        transition: 0.3s;
    }

    .nav-actions {
        gap: 0.4rem;
        flex-shrink: 0;
        align-items: center;
        display: flex;
        margin-left: auto;
    }

    .dark-mode-toggle {
        font-size: 1.1rem;
        flex-shrink: 0;
        color: #333333;
        cursor: pointer;
    }

    .nav-register-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 600;
        flex-shrink: 0;
        min-width: fit-content;
        background: #e67e22;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(230, 126, 34, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-register-btn::before {
        content: "";
    }

    .nav-register-btn:hover {
        background: #d35400;
        box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
        transform: translateY(-1px);
    }

    .nav-brochure-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 600;
        flex-shrink: 0;
        min-width: fit-content;
        background: #e67e22;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(230, 126, 34, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-brochure-btn i {
        font-size: 0.85rem;
    }

    .nav-brochure-btn:hover {
        background: #d35400;
        box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
        transform: translateY(-1px);
    }

    .fcci-logo {
        height: 28px;
        width: auto;
        flex-shrink: 0;
        filter: none;
    }

    body.dark-mode .navbar {
        background: #1a1a1a;
        border-bottom-color: #333333;
    }

    body.dark-mode .dark-mode-toggle {
        color: #ffffff;
    }

    body.dark-mode .menu-toggle .bar {
        background-color: #ffffff;
    }

    body.dark-mode .nav-links {
        background: #1a1a1a;
        border-bottom-color: #333333;
    }

    body.dark-mode .nav-links li a {
        color: #ffffff;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
    }

    .menu-toggle .bar {
        background-color: #0f204c;
    }

    .nav-links {
        left: -100%;
        transition: left 0.35s ease;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links li a {
        color: #0f204c;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: #e67e22;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        order: -1;
    }
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.available-stalls-section {
    background: #ffffff;
    padding: 4rem 0;
}

.available-stalls-header h2 {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    color: #0f204c;
    text-align: center;
    margin-bottom: 1rem;
}

.available-stalls-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(15, 32, 76, 0.08);
    box-shadow: 0 24px 60px rgba(15, 32, 76, 0.08);
    background: #fafafc;
}

.available-stalls-frame iframe {
    width: 100%;
    min-height: 600px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .available-stalls-section {
        padding: 3rem 0;
    }

    .available-stalls-frame iframe {
        min-height: 420px;
    }

    .nav-links {
        min-height: calc(100vh - 60px);
        align-items: flex-start;
        padding-top: 1rem;
    }

    .nav-links li a {
        font-size: 1rem;
    }
}

.nav-register-btn:hover {
    background: #d35400;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 5% 0 5%;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 10;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin: 0.25rem 0 0.4rem 0;
    color: #E67E22;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    transition: color 0.3s;
}

.hero-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.6rem;
    text-transform: none;
    float: none;
}
.event-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.event-date i,
.event-info .location i {
    color: #e67e22;
    font-size: 1.2rem;
}
.event-date h3,
.event-info .location h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.event-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.event-info .location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0;
}

/* make hero and other sections center-aligned if not already */
.hero-content,
.introduction,
.stats-container,
.about-container,
.sectors-container,
.why-participate-container,
.highlights-container,
.pavilions-container,
.sponsorship-container,
.benefits-container {
    margin-left: auto;
    margin-right: auto;
}


.hero-content .subtitle .highlight {
    color: #e67e22;
    font-weight: 700;
}

/* Rotating word fade */
.rotating .highlight {
    display: inline-block;
    transition: opacity 0.35s ease;
    opacity: 1;
}

.subtitle {
    font-size: 1.4rem;
    color: #f7a040;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: #E67E22;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    transition: color 0.3s;
}

.location i {
    color: #E67E22;
    font-size: 1.2rem;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(247, 160, 64, 0.2);
    border: 2px solid rgba(247, 160, 64, 0.6);
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(247, 160, 64, 0.15);
}

.register-btn:hover {
    background: rgba(247, 160, 64, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 160, 64, 0.2);
    border-color: rgba(247, 160, 64, 0.6);
}

.register-btn i {
    font-size: 0.9rem;
}

.hero-slider {
    display: none;
}

.slider-container {
    width: 650px;
    height: 420px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 160, 64, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(247, 160, 64, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 160, 64, 0);
    }
}

.register-btn {
    animation: pulseGlow 2s infinite;
}

.register-btn {
    background: linear-gradient(180deg,#e67e22,#d35400);
    padding: 0.9rem 2.4rem;
    font-size: 1.05rem;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 30px rgba(230,126,34,0.18);
}

@media (max-width: 1200px) {
    .slider-container {
        width: 500px;
        height: 350px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 3rem;
        padding-top: 5rem;
    }

    .hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-slider {
        max-width: 100%;
        justify-content: center;
    }

    .slider-container {
        width: 100%;
        max-width: 600px;
        height: 350px;
    }
}

/* Introduction Section */
.introduction-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
    margin-top: 0;
    margin-bottom: 0;
    transition: background-color 0.3s;
}

.introduction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0 5%;
    gap: 4rem;
    min-height: auto;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0;
}

.intro-content h2 {
    color: #e67e22;
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #e67e22;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    font-weight: 400;
    transition: color 0.3s;
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
    margin: 0;
}

.intro-image img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0;
}

@media (max-width: 1024px) {
    .introduction {
        flex-direction: column;
    }

    .intro-content {
        padding: 3rem 5%;
    }

    .intro-image {
        width: 100%;
        min-height: 40vh;
        padding-right: 0;
        justify-content: center;
    }
}

/* Stats Section */
.stats-section {
    width: 100%;
    padding: 6rem 5%;
    background-color: #f8fafc;
    margin: 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.3s, border-color 0.3s;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-subtitle {
    font-size: 1rem;
    color: #e67e22;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.stats-header h3 {
    font-size: 2.2rem;
    color: #e67e22;
    margin-bottom: 1rem;
    font-weight: 900;
    transition: color 0.3s;
}

.stats-header p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto;
    transition: color 0.3s;
}

.stats-circles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 180px;
    gap: 1.5rem;
    flex-shrink: 0;
    margin: 0 auto;
}

/* Progress-like Circles Chart */
.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    background-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Clean outer drop shadow */
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

/* Inner white circle */
.stat-circle::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: -1;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: background-color 0.3s;
}

/* Base colored rings with gray secondary tone mimicking the image */
.stat-circle.yellow {
    background: conic-gradient(from 135deg, #f1c40f 0% 40%, #e2e8f0 40% 100%);
}

.stat-circle.orange {
    background: conic-gradient(from 120deg, #e67e22 0% 50%, #e2e8f0 50% 100%);
}

.stat-circle.green {
    background: conic-gradient(from 150deg, #2ecc71 0% 30%, #e2e8f0 30% 100%);
}

.stat-circle.blue {
    background: conic-gradient(from 110deg, #3498db 0% 60%, #e2e8f0 60% 100%);
}

.stat-circle.pink {
    background: conic-gradient(from 140deg, #e84393 0% 45%, #e2e8f0 45% 100%);
}

.stat-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    max-width: 160px;
    line-height: 1.3;
    transition: color 0.3s;
}

@media (max-width: 1024px) {
    .stats-circles-container {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
        padding-top: 0;
        padding-bottom: 0;
    }

    .stat-item {
        width: 100%;
        max-width: 240px;
    }
}

/* Dark Mode Overrides */
body.dark-mode {
    background: linear-gradient(135deg, #0b0f19 0%, #1a1428 25%, #0f1a2e 50%, #1a0f1f 75%, #0b0f19 100%);
    background-attachment: fixed;
    color: white;
}

body.dark-mode .video-bg .overlay {
    background: linear-gradient(90deg, rgba(11, 15, 25, 0.85) 0%, rgba(11, 15, 25, 0.6) 45%, rgba(11, 15, 25, 0.2) 100%);
}

body.dark-mode .hero-content h1 {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

body.dark-mode .location {
    color: #d1d5db;
}

body.dark-mode .navbar {
    background: rgba(11, 15, 25, 0.95);
}

body.dark-mode .nav-links li a {
    color: #ffffff !important;
}

body.dark-mode .nav-links li a:hover,
body.dark-mode .nav-links li a.active {
    color: #e67e22 !important;
}

body.dark-mode .dark-mode-toggle {
    color: #ffffff;
}

body.dark-mode .fcci-logo {
    background-color: #ffffff;
    padding: 4px;
    border-radius: 4px;
}

body.dark-mode .introduction-wrapper {
    background-color: #0b0f19;
}

body.dark-mode .intro-content h2 {
    color: #e67e22;
}

body.dark-mode .intro-content p {
    color: #d1d5db;
}

body.dark-mode .stats-section {
    background-color: #1a202c;
    /* match the dark blue from the reference image */
    border-color: #2d3748;
}

body.dark-mode .stats-header h3,
body.dark-mode .stats-glance h3,
body.dark-mode .stat-text,
body.dark-mode .stat-circle {
    color: #ffffff;
}

body.dark-mode .stats-header p {
    color: #d1d5db;
}

/* In dark mode, change the gray part of the ring to a dark navy */
body.dark-mode .stat-circle::before {
    background-color: #1a202c;
    /* Match stats background or use dark inner circle */
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
}

body.dark-mode .stat-circle.yellow {
    background: conic-gradient(from 135deg, #f1c40f 0% 40%, #2d3748 40% 100%);
}

body.dark-mode .stat-circle.orange {
    background: conic-gradient(from 120deg, #e67e22 0% 50%, #2d3748 50% 100%);
}

body.dark-mode .stat-circle.green {
    background: conic-gradient(from 150deg, #2ecc71 0% 30%, #2d3748 30% 100%);
}

body.dark-mode .stat-circle.blue {
    background: conic-gradient(from 110deg, #3498db 0% 60%, #2d3748 60% 100%);
}

body.dark-mode .stat-circle.pink {
    background: conic-gradient(from 140deg, #e84393 0% 45%, #2d3748 45% 100%);
}

/* ==============================
   COUNTDOWN TIMER IN HERO
   ============================== */
.hero-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    min-width: 80px;
    min-height: 120px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    perspective: 1000px;
    position: relative;
}

.countdown-item.flip {
    animation: flipCard 0.6s ease-in-out;
}

@keyframes flipCard {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(-90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

.countdown-item:hover {
    background: rgba(230, 126, 34, 0.15);
    border-color: rgba(230, 126, 34, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.countdown-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.timer-number {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: #e67e22;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

body.dark-mode .countdown-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(230, 126, 34, 0.25);
}

body.dark-mode .countdown-item:hover {
    background: rgba(230, 126, 34, 0.12);
    border-color: rgba(230, 126, 34, 0.5);
}

/* Mobile responsive countdown */
@media (max-width: 768px) {
    .hero-countdown {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }

    .timer-number {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
    }

    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-countdown {
        gap: 0.8rem;
        margin: 1rem 0;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .timer-number {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .event-info {
        flex-direction: column;
        gap: 0.8rem;
    }
}
/* Introduction Section */
.introduction-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 6rem 0;
    margin-top: 0;
    margin-bottom: 0;
    transition: background-color 0.3s;
}

.introduction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0 5%;
    gap: 4rem;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    color: #e67e22;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    text-transform: capitalize;
    transition: color 0.3s;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #e67e22;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    font-weight: 400;
    transition: color 0.3s;
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 2rem;
}

.intro-image img {
    width: 100%;
    max-width: 450px;
    height: 480px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: block;
}

@media (max-width: 1024px) {
    .introduction {
        flex-direction: column;
    }

    .intro-content {
        padding: 3rem 5%;
    }

    .intro-image {
        width: 100%;
        min-height: 40vh;
        padding-right: 0;
        justify-content: center;
    }
}


/* ==============================
   ABOUT EXPO FAISALABAD SECTION
   ============================== */
.about-section {
    width: 100%;
    background-color: #ffffff;
    padding: 4.5rem 0 5rem;
    transition: background-color 0.3s;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.about-text-wrap {
    flex: 1 1 480px;
    max-width: 620px;
    margin: 0;
    padding: 0;
}

.about-image {
    flex: 1 1 620px;
    max-width: 820px;
    min-height: 520px;
}

.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.17);
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: #e67e22;
    border-radius: 2px;
    margin-bottom: 2rem;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.about-columns p {
    font-size: 1.14rem;
    line-height: 1.85;
    color: #4b5563;
    max-width: 48em;
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text-wrap {
        max-width: 100%;
        padding: 0 1rem 1rem;
    }

    .about-image {
        max-width: 100%;
        min-height: 250px;
    }

    .about-columns {
        grid-template-columns: 1fr;
    }

    .about-heading {
        font-size: 2.1rem;
    }

    .about-columns p {
        font-size: 1.08rem;
    }
}
.about-image-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-top: 0;
    min-width: 20px;
    text-align: center;
}

.about-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

@media (max-width: 768px) {
    .about-image-banner {
        height: 350px !important;
    }
    .about-image-banner img {
        object-fit: cover !important;
    }
}

/* ==============================
   KEY SECTORS SECTION (CHECKERBOARD)
   ============================== */
.sectors-section {
    width: 100%;
    padding: 2rem 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: background-color 0.3s;
}

.sectors-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sectors-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.sectors-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.sectors-header p {
    font-size: 1.2rem;
    color: #4b5563;
    font-weight: 500;
}

/* ===== UNIFIED 12-SECTOR GRID ===== */
.sectors-grid-unified {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sector-card-unified {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 126, 34, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.sector-card-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sector-card-unified:hover::before {
    transform: scaleX(1);
}

.sector-card-unified:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(230, 126, 34, 0.15);
    border-color: rgba(230, 126, 34, 0.2);
}

.card-image-unified {
    width: 100%;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-image-unified img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sector-card-unified:hover .card-image-unified img {
    transform: scale(1.05);
}

.sector-card-unified:hover .card-image-unified {
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.sector-card-unified h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sector-card-unified:hover h3 {
    color: #e67e22;
}

.sector-card-unified p {
    font-size: 0.8rem;
    color: #7f8c8d;
    line-height: 1.5;
    flex: 1;
}

@media (max-width: 1024px) {
    .sectors-grid-unified {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sectors-section {
        padding: 4rem 5%;
    }
    
    .sectors-grid-unified {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .sector-card-unified {
        padding: 1.5rem 1rem;
    }
    
    .card-image-unified {
        width: 70px;
        height: 50px;
    }
    
    .sector-card-unified h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sectors-grid-unified {
        grid-template-columns: 1fr;
    }
}

/* ===== PREMIUM HEADER DESIGN ===== */
.sectors-header-premium {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.header-accent-top {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.sectors-header-premium h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #e67e22 0%, #d65d07 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.header-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #e67e22 0%, #f39c12 100%);
    margin: 1rem auto 2rem;
    border-radius: 3px;
}

.header-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.header-description {
    font-size: 1.05rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ===== PREMIUM 4-CARD GRID ===== */
.sectors-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.sector-card-premium {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 126, 34, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sector-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sector-card-premium:hover::before {
    transform: scaleX(1);
}

.sector-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 32px rgba(230, 126, 34, 0.15);
    border-color: rgba(230, 126, 34, 0.2);
}

.card-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.sector-card-premium:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.card-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
}

.card-header {
    margin-bottom: 1.2rem;
}

.card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sector-card-premium:hover .card-header h3 {
    color: #e67e22;
}

.card-accent-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, transparent);
    border-radius: 2px;
}

.card-description {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-stats {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(230, 126, 34, 0.1);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .sectors-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .sectors-header-premium h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sectors-section {
        padding: 4rem 5%;
    }
    
    .sectors-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sectors-header-premium {
        margin-bottom: 3rem;
    }
    
    .sectors-header-premium h2 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .sector-card-premium {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
}

.sectors-grid-checker {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Vertical gap between rows */
}

.sector-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; /* Horizontal gap between main columns */
}

.sector-box {
    display: flex;
    background: #f8fafc;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.sector-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.sector-image {
    flex: 1;
    position: relative;
    min-width: 50%;
    height: 280px;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-num {
    position: absolute;
    top: 50%;
    left: 20px; /* Aligned to the left edge of the image */
    transform: translateY(-50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    z-index: 2;
    pointer-events: none;
}

/* Arrow Indicators */
.sector-arrow {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 10;
    transform: translateY(-50%);
}

.sector-arrow.right {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
}

.sector-arrow.left {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
}

.sector-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.sector-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.sector-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Alternate professional layout for sectors 5-8 (light, compact) */

/* NEW 2x2 GRID LAYOUT FOR SECTORS (1-4) */
.sectors-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sector-card-v2 {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.sector-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sector-image-v2 {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}

.sector-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sector-card-v2:hover .sector-image-v2 img {
    transform: scale(1.05);
}

.sector-content-v2 {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sector-content-v2 h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.sector-content-v2 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
    .sectors-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sectors-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.sectors-section-alt {
    background: #fdf9f5;
    padding: 3rem 5% 5rem;
}

.sectors-section-alt .sectors-header h2 {
    color: #d35400;
}

.sectors-section-alt .sectors-header p {
    color: #6b7280;
}

.sectors-section-alt .sector-box-alt {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(24, 39, 75, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 170px;
}

.sectors-section-alt .sector-box-alt:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(24, 39, 75, 0.16);
}

.sectors-section-alt .sector-box-alt .sector-image {
    height: 170px;
    min-width: 170px;
}

.sectors-section-alt .sector-box-alt .sector-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.10) 100%);
    pointer-events: none;
}

.sectors-section-alt .sector-num {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: none;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(211, 84, 0, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(249, 115, 22, 0.35);
}

.sectors-section-alt .sector-content {
    padding: 1rem 1.2rem;
    background: transparent;
    justify-content: center;
}

.sectors-section-alt .sector-content h3 {
    color: #1f2937;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.sectors-section-alt .sector-content p {
    color: #475569;
    line-height: 1.5;
    font-size: 0.93rem;
}

.sectors-section-alt .sector-arrow,
.sectors-section-alt .sector-box-alt .sector-image {
    border-radius: 0;
}

.sectors-section-alt .sector-arrow {
    display: none;
}

/* Dark mode overrides */
body.dark-mode .sectors-section {
    background-color: #0b0f19;
}

body.dark-mode .sector-box {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .sector-content {
    background: #1e293b;
}

body.dark-mode .sector-content p {
    color: #94a3b8;
}

body.dark-mode .sector-arrow.right {
    border-color: transparent transparent transparent #1e293b;
}

body.dark-mode .sector-arrow.left {
    border-color: transparent #1e293b transparent transparent;
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .sector-pair {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .sector-box, .sector-box.reverse {
        flex-direction: column !important;
        height: auto;
    }
    
    .sector-image {
        height: 200px;
        min-width: 100%;
    }
    
    .sector-arrow {
        display: none;
    }
    
    .sector-content {
        padding: 1.5rem;
    }
}

/* New layout for sectors 9-12 */
.sectors-section-grid {
    background: #ffffff;
    padding: 5rem 5%;
}

.sectors-section-grid .sectors-header h2 {
    color: #1f2937;
}

.sectors-section-grid .sectors-header p {
    color: #4b5563;
}

.sectors-grid-masonry {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    grid-auto-rows: minmax(220px, auto);
}

.sectors-grid-masonry .sector-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: stretch;
    min-height: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sectors-grid-masonry .sector-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}

.sectors-grid-masonry .sector-image-wrap {
    position: relative;
    width: 55%;
    overflow: hidden;
}

.sectors-grid-masonry .sector-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sectors-grid-masonry .sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}

.sectors-grid-masonry .sector-num-card {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 3rem;
    color: rgba(255,255,255,0.92);
    font-weight: 800;
}

.sectors-grid-masonry .sector-info {
    width: 45%;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sectors-grid-masonry .sector-info h3 {
    color: #0f172a;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.sectors-grid-masonry .sector-info p {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .sectors-grid-masonry {
        grid-template-columns: 1fr;
    }

    .sectors-grid-masonry .sector-card {
        min-height: 210px;
    }

    .sectors-grid-masonry .sector-image-wrap,
    .sectors-grid-masonry .sector-info {
        width: 100%;
    }

    .sectors-grid-masonry .sector-card {
        flex-direction: column;
    }

    .sectors-grid-masonry .sector-card .sector-image-wrap {
        height: 150px;
    }
}

/* Why Faisalabad Section */
.why-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.why-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.18);
    transform: scale(1.04);
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(16, 72, 138, 0.2), rgba(11, 25, 47, 0.88) 65%),
                linear-gradient(140deg, rgba(2, 16, 41, 0.56), rgba(6, 24, 56, 0.78));
}

.why-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 92%);
    max-width: 1180px;
    padding: 3.2rem 3.2rem 3.8rem;
    border-radius: 16px;
    background: rgba(4, 20, 44, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.44);
}

.why-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.why-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f2f7ff;
    margin-bottom: 1.4rem;
    max-width: 860px;
}

.why-card {
    background: rgba(255, 255, 255, 0.12);
    border-left: 5px solid #ffd54f;
    border-radius: 12px;
    padding: 1.35rem 1.5rem;
    color: #f8fafc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.why-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1.14rem;
    font-weight: 800;
    color: #fffffb;
}

.why-card ul {
    list-style: disc inside;
    margin: 0;
    padding-left: 1rem;
    color: #e4f5ff;
}

.why-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .why-content {
        padding: 1.6rem 1.2rem;
    }

    .why-content h2 {
        font-size: 2.1rem;
    }

    .why-content p {
        font-size: 0.98rem;
    }

    .why-card h3 {
        font-size: 1rem;
    }

    .why-participate-container {
        grid-template-columns: 1fr;
    }

    .why-participate-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-participate-images img {
        height: 180px;
    }
}

/* Why to Participate Section */
.why-participate-section {
    width: 100%;
    background: linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 5%;
}

.why-participate-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.why-participate-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.why-participate-text p {
    font-size: 1.15rem;
    color: #334155;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.why-participate-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #334155;
}

.why-participate-text li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    font-weight: 600;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.why-participate-text li span {
    color: #e67e22;
    font-weight: bold;
    margin-top: 0.1rem;
}

.why-participate-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.why-participate-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
    .why-participate-container {
        grid-template-columns: 1fr;
    }

    .why-participate-images {
        grid-template-columns: 1fr;
    }

    .why-participate-images img {
        height: 180px;
    }
}

/* Key Highlights Section */
.highlights-section {
    position: relative;
    width: 100%;
    min-height: 580px;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.highlights-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.highlights-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.50) saturate(1.15);
}

.highlights-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(20, 48, 90, 0.35), rgba(10, 20, 40, 0.85)),
                linear-gradient(135deg, rgba(15, 35, 70, 0.70), rgba(5, 15, 35, 0.85));
}

.highlights-container {
    position: relative;
    z-index: 2;
    width: min(1280px, 94%);
    max-width: 1280px;
}

.highlights-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.highlights-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.12);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    backdrop-filter: blur(6px);
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #e67e22, transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.highlight-card:hover::before {
    transform: scaleY(1);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #e67e22;
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(230, 126, 34, 0.18);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 126, 34, 0.12);
    border: 2px solid #e67e22;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.25s ease;
}

.highlight-card:hover .highlight-icon {
    background: rgba(230, 126, 34, 0.25);
    transform: scale(1.08);
}

.highlight-icon i {
    font-size: 1.6rem;
    color: #e67e22;
}

.highlight-card p {
    font-size: 1.05rem;
    line-height: 1.25;
    color: #f0f9ff;
    margin: 0;
    font-weight: 700;
}

@media (max-width: 768px) {
    .highlights-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .highlights-container {
        width: 95%;
    }

    .highlights-header h2 {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-card p {
        font-size: 1rem;
    }
}

body.dark-mode .highlights-section {
    background: #0b0f19;
}

/* Association / Group Spaces and Specialized Pavilions Section */
.pavilions-section {
    width: 100%;
    background: #ffffff;
    padding: 4rem 5%;
    transition: background-color 0.3s;
}

.pavilions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pavilions-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pavilions-intro {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 600;
    margin: 0.8rem 0 1.6rem;
    line-height: 1.8;
}

.pavilions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pavilions-list li {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1f2937;
    font-weight: 600;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.pavilions-list li span {
    color: #e67e22;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 0;
    min-width: 20px;
    text-align: center;
}

.pavilions-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.pavilions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 380px;
}

.pavilions-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), transparent);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .pavilions-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pavilions-image img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .pavilions-section {
        padding: 3rem 5%;
    }

    .pavilions-content h2 {
        font-size: 2rem;
    }

    .pavilions-intro {
        font-size: 1rem;
    }

    .pavilions-list li {
        font-size: 1rem;
        gap: 0.6rem;
    }

    .pavilions-image img {
        min-height: 250px;
    }
}

body.dark-mode .pavilions-section {
    background-color: #0b0f19;
}

body.dark-mode .pavilions-content h2 {
    color: #f8fafc;
}

body.dark-mode .pavilions-intro {
    color: #d1d5db;
}

body.dark-mode .pavilions-list li {
    color: #e5e7eb;
}

/* Sponsorship Categories Section */
.sponsorship-section {
    width: 100%;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 5rem 5%;
    position: relative;
    transition: background-color 0.3s;
}

.sponsorship-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}

.sponsorship-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sponsorship-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
}

.sponsor-blue {
    color: #0099ff;
}

.sponsor-dark {
    color: #1f2937;
}

.sponsorship-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    position: relative;
    align-items: stretch;
    margin-bottom: 0;
}

.sponsor-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sponsor-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #ffa500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sponsor-card:hover::before {
    transform: scaleX(1);
}

.sponsor-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(230, 126, 34, 0.12), transparent);
    border-radius: 0 16px 0 50%;
}

.sponsor-card:hover {
    border-color: #e67e22;
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(230, 126, 34, 0.14);
}

.sponsor-tier {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #e67e22;
    letter-spacing: 0.8px;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.sponsor-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.35;
    position: relative;
    z-index: 2;
}

.sponsor-card p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

/* Sponsor card specific background effects */
.sponsor-card-1 {
    background: linear-gradient(135deg, #fef6f1 0%, #fff9f5 100%);
    border-left: 4px solid #e67e22;
}

.sponsor-card-2 {
    background: linear-gradient(135deg, #f5f3ff 0%, #fef9f0 100%);
    border-left: 4px solid #c584d8;
}

.sponsor-card-3 {
    background: linear-gradient(135deg, #f0f9ff 0%, #fff0e6 100%);
    border-left: 4px solid #0ea5e9;
}

.sponsor-card-4 {
    background: linear-gradient(135deg, #f0fdf4 0%, #fff5e6 100%);
    border-left: 4px solid #22c55e;
}

.sponsor-card-5 {
    background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 100%);
    border-left: 4px solid #f59e0b;
}

.sponsor-card-6 {
    background: linear-gradient(135deg, #ede9fe 0%, #fff4e6 100%);
    border-left: 4px solid #8b5cf6;
}

.sponsor-card:hover {
    border-left-color: #e67e22;
}


.sponsor-dot {
    display: none;
}

.sponsorship-timeline-line {
    display: none;
}

@media (max-width: 1200px) {
    .sponsorship-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sponsor-card {
        min-height: 300px;
    }
}

@media (max-width: 900px) {
    .sponsorship-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sponsor-card {
        padding: 1.8rem;
        min-height: 280px;
    }
}

@media (max-width: 600px) {
    .sponsorship-section {
        padding: 2.5rem 5%;
    }

    .sponsorship-timeline {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .sponsor-card {
        padding: 1.6rem;
        min-height: auto;
    }

    .sponsorship-header h2 {
        font-size: 1.8rem;
    }

    .sponsor-title {
        font-size: 1.1rem;
    }

    .sponsor-card p {
        font-size: 0.93rem;
    }
}

body.dark-mode .sponsor-card {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

body.dark-mode .sponsor-card-1,
body.dark-mode .sponsor-card-2,
body.dark-mode .sponsor-card-3,
body.dark-mode .sponsor-card-4,
body.dark-mode .sponsor-card-5,
body.dark-mode .sponsor-card-6 {
    background: #1e293b;
    border-left-color: #475569;
}

body.dark-mode .sponsor-card:hover {
    border-color: #e67e22;
    border-left-color: #e67e22;
    box-shadow: 0 16px 32px rgba(230, 126, 34, 0.25);
}

body.dark-mode .sponsor-title {
    color: #f8fafc;
}

body.dark-mode .sponsor-card p {
    color: #cbd5e1;
}

body.dark-mode .sponsorship-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
}

/* Sponsor Benefits Section */
.benefits-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    overflow: hidden;
}

.benefits-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.benefits-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.50) saturate(1.2);
}

.benefits-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 20, 45, 0.88) 0%, rgba(10, 20, 45, 0.60) 60%, rgba(10, 20, 45, 0.40) 100%);
}

.benefits-container {
    position: relative;
    z-index: 2;
    width: min(1300px, 94%);
    max-width: 1300px;
}

.benefits-container h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    margin: 0 0 2rem 0;
    color: #ffffff;
    letter-spacing: -1px;
}

.benefits-highlight {
    color: #0099ff;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.benefits-list {
    display: grid;
    grid-template-rows: repeat(6, auto);
    gap: 1.4rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-height: 2.4rem;
}

.benefit-item i {
    font-size: 1.4rem;
    color: #0099ff;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f0f9ff;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .benefits-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 2.5rem 0;
    }

    .benefits-container {
        width: 95%;
    }

    .benefits-container h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .benefits-list {
        gap: 1.2rem;
    }

    .benefit-item {
        width: 100%;
        margin: 0;
    }

    .benefit-item p {
        font-size: 0.98rem;
    }

    .benefits-overlay {
        background: linear-gradient(90deg, rgba(10, 20, 45, 0.92) 0%, rgba(10, 20, 45, 0.88) 100%);
    }
}

body.dark-mode .benefits-section {
    background: #0b0f19;
}

/* Contact Us Section */
.contact-section {
    width: 100%;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 5rem 5%;
    transition: background-color 0.3s;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.5px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    order: 2;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-details-wrapper {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.25);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(230, 126, 34, 0.35);
}

/* Contact Details */
.contact-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    background: linear-gradient(135deg, #0a2b35 0%, #0d3241 100%);
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(18, 113, 141, 0.35);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #f39c12, #e67e22);
}

.contact-info-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffa500;
    margin: 0 0 2rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}
.contact-detail .contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 54px;
    min-width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}


.contact-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f39c12;
    margin: 0 0 0.35rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e8f5f8;
    margin: 0;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.map-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 126, 34, 0.5);
    background: linear-gradient(135deg, #d35400 0%, #c23d00 100%);
}

.map-link-btn i {
    font-size: 0.95rem;
}

.contact-detail {
    transition: all 0.3s ease;
}

.contact-detail:hover {
    transform: translateX(8px);
}

.contact-detail:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.contact-detail:hover .contact-text h4 {
    color: #ffa500;
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-map {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    min-height: 280px;
}

/* Leadership banner section */
.leadership-section {
    padding: 4rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-section .leadership-content {
    width: 92%;
    max-width: 1200px;
    text-align: center;
    color: #fff;
}

.leadership-section h2 {
    font-size: clamp(1.6rem, 3.8vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.leadership-section.fallback {
    background: linear-gradient(90deg,#2ecc71,#27ae60);
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 5%;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-box {
        padding: 1.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 0.9rem;
    }

    .contact-detail {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .contact-icon {
        width: 38px;
        min-width: 38px;
        height: 38px;
    }

    .contact-icon i {
        font-size: 1.15rem;
    }

    .contact-text h4 {
        font-size: 1rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }
}

body.dark-mode .contact-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
}

body.dark-mode .contact-header h2 {
    color: #ffa500;
}

body.dark-mode .contact-form-wrapper {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

body.dark-mode .contact-info-box {
    background: linear-gradient(135deg, #1a3a3a 0%, #0d2b2d 100%);
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.1), 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 126, 34, 0.2);
}

body.dark-mode .contact-info-box h3 {
    color: #ffa500;
}

body.dark-mode .contact-detail {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .contact-text h4 {
    color: #f39c12;
}

body.dark-mode .contact-text p {
    color: #e8e8e8;
}

body.dark-mode .map-link-btn {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

body.dark-mode .map-link-btn:hover {
    background: linear-gradient(135deg, #d35400 0%, #c23d00 100%);
    box-shadow: 0 6px 18px rgba(230, 126, 34, 0.6);
}

body.dark-mode .form-group label {
    color: #f8fafc;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #0f1419;
    border-color: #334155;
    color: #f8fafc;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: #e67e22;
    background: #1a1f2e;
}

body.dark-mode .contact-info-box h3 {
    color: #f8fafc;
}

body.dark-mode .contact-detail {
    border-bottom-color: #334155;
}

body.dark-mode .contact-text h4 {
    color: #f8fafc;
}

body.dark-mode .contact-text p {
    color: #cbd5e1;
}

body.dark-mode .whatsapp-cta {
    background: linear-gradient(135deg, #25d366 0%, #1fa856 100%);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

body.dark-mode .whatsapp-cta:hover {
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

/* Where Leadership Meets Opportunity Section */
.leadership-section {
    width: 100%;
    background: #ffffff;
    padding: 5rem 5%;
    transition: background-color 0.3s;
}

.leadership-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.5fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.leadership-logo-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.leadership-logo {
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.leadership-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 2.5rem 0;
    line-height: 1.15;
    letter-spacing: -1px;
}

/* New single-image card layout */
.leadership-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.leadership-card {
    margin-top: 1.6rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 20px 50px rgba(16,24,40,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

.leadership-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.leadership-blue {
    color: #0099ff;
}

.diamond-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    aspect-ratio: 1;
}

.diamond-item {
    position: relative;
    overflow: hidden;
    transform: rotate(45deg);
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diamond-item:hover {
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 16px 32px rgba(230, 126, 34, 0.18);
}

.diamond-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg) scale(1.42);
    display: block;
}

.leadership-crest {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.crest-emblem {
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.qr-code-placeholder {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border: 2px solid #e67e22;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #e67e22;
}

@media (max-width: 1200px) {
    .leadership-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .leadership-logo-left {
        order: 2;
    }

    .leadership-content {
        order: 1;
    }

    .leadership-crest {
        order: 3;
    }

    .diamond-gallery {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 3rem 5%;
    }

    .leadership-container {
        grid-template-columns: 1fr;
    }

    .leadership-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .leadership-logo {
        height: 70px;
    }

    .crest-emblem {
        height: 80px;
    }

    .qr-code-placeholder {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .diamond-gallery {
        max-width: 300px;
    }
}

body.dark-mode .leadership-section {
    background: #0b0f19;
}

body.dark-mode .leadership-content h2 {
    color: #f8fafc;
}

body.dark-mode .qr-code-placeholder {
    background: #1e293b;
    border-color: #e67e22;
}

/* Dark mode header logo behavior */
.logo-dark { display: none; }
.logo-light { display: block; }
.fcci-logo { display: block; }

body.dark-mode .logo-light { display: none !important; }
body.dark-mode .logo-dark { display: block !important; }
body.dark-mode .fcci-logo { display: block !important; }
body.dark-mode .logo-img { height: 80px !important; max-height: 80px !important; width: auto !important; }
body.dark-mode .fcci-logo { height: 100px !important; max-height: 80px !important; width: auto !important; }
body.dark-mode .navbar { position: relative; }

/* Bigger header logos */
.logo-img,
.fcci-logo { height: 80px !important; max-height: 70px !important; }

@media (max-width: 768px) {
    .fcci-logo { height: 42px !important; max-height: 42px !important; }
    .logo-img { height: 34px !important; max-height: 34px !important; }
}

@media (max-width: 500px) {
    .fcci-logo { height: 34px !important; max-height: 34px !important; }
    .logo-img { height: 30px !important; max-height: 30px !important; }
    .nav-actions { gap: 0.22rem !important; }
    .nav-register-btn, .nav-brochure-btn { padding: 0.3rem 0.7rem !important; font-size: 0.72rem !important; }
}

/* Floating WhatsApp Chat Button */
.whatsapp-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease, transform 0.2s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-chat-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat-btn .chat-label {
    display: none;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .whatsapp-chat-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}


/* Global section center alignment and consistent line layout */
section, .hero, .sectors-section, .stats-section, .footer { width: 100%; }
.section-width, .container, .sectors-container, .about-container, .stats-container, .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Align inner items to same row when possible */.footer-bottom, .footer-top, .navbar, .stats-row, .grid-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }

/* Make sure key text lines are inline on large screens */
.sectors-header, .contact-item, .footer-contact-item { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }

@media (max-width: 992px) {
    .footer-bottom, .footer-top, .navbar, .stats-row, .grid-row { flex-direction: row; align-items: flex-start; flex-wrap: nowrap;margin-right: 10px; }
}

/* Updated About Section Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text-wrap {
    flex: 1;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 5% 3.2rem;
}

.carousel-wrapper {
    overflow: hidden;
}

.sectors-carousel {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.sector-card-unified {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.2rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 126, 34, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 270px;
    flex-shrink: 0;
    height: auto;
}

.sector-card-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sector-card-unified:hover::before {
    transform: scaleX(1);
}

.sector-card-unified:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(230, 126, 34, 0.15);
    border-color: rgba(230, 126, 34, 0.2);
}

.card-image-unified {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-image-unified img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sector-card-unified:hover .card-image-unified img {
    transform: scale(1.05);
}

.sector-card-unified:hover .card-image-unified {
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.sector-card-unified h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
    line-height: 1.3;
}

.sector-card-unified p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #6b7280;
    margin: 0;
    transition: color 0.3s;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e67e22;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: block;
}

.carousel-dots {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin: 1rem auto 0 auto;
    z-index: 10;
    pointer-events: none;
}
.carousel-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    border: 2px solid #ff8800;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    width: 12px;
    height: 12px;
    background: #e67e22;
    border-color: #d35400;
}

.carousel-btn:hover {
    background: #d35400;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
    display: none;
}

.next-btn {
    right: -25px;
    display: none;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .sector-card-unified {
        min-width: 250px;
    }
    
    .card-image-unified {
        width: 150px;
        height: 150px;
    }
}

.sectors-section {
    padding: 4rem 5% !important;
}
/* Footer */
.footer {
    width: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #e5e7eb;
    padding: 4rem 5% 0;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    grid-auto-rows: minmax(350px, 1fr);
}

.footer-section {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    align-items: flex-start;
}

.footer-section:nth-child(1) {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(230, 126, 34, 0.2);
}

.footer-section:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(0, 153, 255, 0.2);
}

.footer-section:nth-child(3) {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(168, 85, 247, 0.2);
}

.footer-section:nth-child(4) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.footer-branding p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d1d5db;
    margin: 1rem 0 1.5rem 0;
}

.footer-logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(230, 126, 34, 0.3);
    width: 100%;
    border-radius: 8px;
}

.footer-logos .footer-logo {
    height: 60px;
    margin-bottom: 0;
}

.footer-logos .ffci-logo {
    height: 55px;
    background-color: #ffffff;
    padding: 0.5rem;
    border-radius: 6px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3f4f6;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon:hover {
    background: #e67e22;
    border-color: #e67e22;
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-icon.social-tiktok {
    color: #ffffff;
}

.social-icon.social-tiktok:hover {
    background: #25f4ee;
    border-color: #25f4ee;
    transform: translateY(-3px);
    color: #000000;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #e67e22;
}

.footer-section:nth-child(2) h4 {
    border-bottom-color: #0099ff;
}

.footer-section:nth-child(3) h4 {
    border-bottom-color: #a855f7;
}

.footer-section:nth-child(4) h4 {
    border-bottom-color: #10b981;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #e67e22;
    padding-left: 0.5rem;
}

.footer-section:nth-child(2) .footer-links li a:hover {
    color: #0099ff;
}

.footer-section:nth-child(3) .footer-links li a:hover {
    color: #a855f7;
}

.footer-section:nth-child(4) .footer-links li a:hover {
    color: #10b981;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: min-content 1fr;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    width: 100%;
}

.footer-contact-item i {
    color: #e67e22;
    line-height: 1.1;
    margin-top: 0.15rem;
}

.footer-contact-item p {
    margin: 0;
    color: #d1d5db;
    line-height: 1.6;
    word-break: break-word;
}

.footer-section:nth-child(4) .footer-contact-item i {
    color: #10b981;
}

.footer-contact-item p {
    margin: 0;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-links-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:nth-child(1) {
    color: #9ca3af;
}

.footer-links-bottom a:nth-child(1):hover {
    color: #0099ff;
}

.footer-links-bottom a:nth-child(3):hover {
    color: #a855f7;
}

.divider {
    color: #4b5563;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(350px, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 5% 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-logos {
        justify-content: flex-start;
    }

    .footer-logos .footer-logo {
        height: 50px;
    }

    .footer-logos .ffci-logo {
        height: 45px;
    }
}

@media (max-width: 992px) {
    .leadership-team-section {
        padding: 3rem 0 2rem;
    }

    .leadership-inner {
        padding: 0 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .team-avatar {
        width: 140px;
        height: 140px;
    }

    .featured-leader .team-avatar {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 600px) {
    .leadership-team-section {
        padding: 2.5rem 0 1.5rem;
    }

    .leadership-inner {
        padding: 0 0.75rem;
    }

    .section-header {
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 0;
    }

    .team-card {
        padding: 0.75rem 0.5rem 0.4rem;
    }

    .team-avatar {
        width: 130px;
        height: 130px;
    }

    .featured-leader .team-avatar {
        width: 145px;
        height: 145px;
    }

    .team-card h3 {
        font-size: 1.05rem;
    }

    .team-card p {
        font-size: 0.95rem;
    }
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #0f1419 0%, #0b0c12 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-section {
    padding: 6rem 0 4rem;
    background: #f8fafc;
}

.blog-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 2.5rem;
}

.blog-header h1 {
    font-size: clamp(2.75rem, 4vw, 4.25rem);
    color: #0f172a;
    letter-spacing: -0.03em;
}

.blog-tagline {
    margin-top: 0.85rem;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-card-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card h2 {
    font-size: 1.35rem;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.blog-card p {
    color: #475569;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.read-more-btn {
    align-self: flex-start;
    padding: 0.9rem 1.55rem;
    border-radius: 999px;
    border: none;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

.full-post-panel {
    margin-top: 2.5rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.full-post-header {
    margin-bottom: 1.5rem;
}

.full-post-title {
    font-size: clamp(2rem, 3vw, 3rem);
    color: #0f172a;
    margin: 0;
}

.full-post-meta {
    color: #64748b;
    margin-top: 0.9rem;
    font-size: 0.98rem;
}

.full-post-body h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}

.full-post-body p {
    color: #475569;
    line-height: 1.85;
    margin: 1rem 0 0;
}

.full-post-body img {
    width: 100%;
    border-radius: 20px;
    margin: 1.75rem 0;
    max-height: 520px;
    object-fit: cover;
}

.back-btn {
    border: 2px solid #0f172a;
    color: #0f172a;
    background: transparent;
    border-radius: 999px;
    padding: 0.9rem 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.back-btn:hover {
    background: rgba(15, 23, 42, 0.05);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .blog-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 4rem 1rem;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        min-height: 200px;
    }

    .blog-card h2 {
        font-size: 1.2rem;
    }

    .read-more-btn,
    .back-btn {
        width: 100%;
        justify-content: center;
    }
}










