:root {
    --primary-color: #0B0E14;
    --secondary-color: #1279B8;
    --accent-color: #35B45A;
    --text-dark: #212529;
    --text-light: #D9DDE3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation Bar */
nav {
    background: #ffffff;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    margin-bottom: 0 !important;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #0B0E14;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Register Button */
.register-btn,
.nav-links a.register-btn {
    background: #1279B8;
    color: white;
    padding: 0;
    /* remove text-based sizing */
    width: 200px;
    /* 🔒 fixed button width */
    height: 48px;
    /* 🔒 fixed button height */
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-decoration: none;

    display: inline-flex;
    /* centers text */
    align-items: center;
    justify-content: center;
}


.nav-links a.register-btn::after {
    background: none;
}

.register-btn:hover,
.nav-links a.register-btn:hover {
    text-decoration: none;
    background: #35B45A;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 7px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: max-height 0.4s ease;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 18px;
        color: #555;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #4CAF50, #45a049);
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: #4CAF50;
    }

    .nav-links a:hover::after {
        width: 60%;
    }

    .register-btn {
        margin: 1rem 0;
    }

    nav {
        /*padding: 0 1rem;*/
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 55px;
    }

    .nav-links a {
        font-size: 18px;
        color: #555;
    }

    .register-btn {
        padding: 0.6rem 1.5rem;
        font-size: 18px;
    }
}


/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.7) 0%, rgba(11, 14, 20, 0.7) 100%);
    z-index: 1;
}

/* Animated background overlay */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Removed zoom animation for cleaner look */
.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
    left: 5%;
    right: 5%;
}

/* Animation classes */
.carousel-caption h1,
.carousel-caption p {
    opacity: 0;
    transform: translateY(60px);
}

.carousel-item.active .carousel-caption h1 {
    animation: slideUpFade 1s ease-out 0.3s forwards;
}

.carousel-item.active .carousel-caption p:nth-of-type(1) {
    animation: slideUpFade 1s ease-out 0.6s forwards;
}

.carousel-item.active .carousel-caption p:nth-of-type(2) {
    animation: slideUpFade 1s ease-out 0.9s forwards;
}

.carousel-item.active .carousel-caption .date-location:nth-of-type(1) {
    animation: slideUpFade 1s ease-out 0.7s forwards;
}

.carousel-item.active .carousel-caption .date-location:nth-of-type(2) {
    animation: slideUpFade 1s ease-out 1s forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text styles with glowing effect */
.carousel-caption h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-light);
    position: relative;
}

/* Animated underline */
.carousel-caption h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-color);
}

.carousel-item.active .carousel-caption h1::after {
    animation: expandLine 0.8s ease-out 1.2s forwards;
}

@keyframes expandLine {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

.carousel-caption p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.carousel-caption .date-location {
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-top: 1rem;
}

/* Hide side navigation controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Animated indicators */
.carousel-indicators {
    z-index: 3;
    margin-bottom: 3rem;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--accent-color);
    margin: 0 8px;
    transition: all 0.4s ease;
}

.carousel-indicators button.active {
    width: 50px;
    border-radius: 10px;
    background-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

/* Make indicators clickable for manual navigation */
.carousel-indicators button:hover {
    background-color: rgba(0, 212, 255, 0.7);
    cursor: pointer;
}

/* Floating particles effect */
.particle {
    position: absolute;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
    .carousel-caption h1 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 1.4rem;
    }

    .carousel-caption .date-location {
        font-size: 1.7rem;
    }
}

.carousel-caption {
    bottom: 50%;
}

/* Responsive - Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }

    .carousel-item {
        height: 70vh;
    }

    .carousel-caption h1 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 1.3rem;
    }

    .carousel-caption .date-location {
        font-size: 1.6rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }

    .nav-container {
        padding: 1.5rem;
    }
}

/* Removed zoom animation for cleaner look */
.carousel-caption {
    bottom: 50%;
}

/* Responsive - Mobile Portrait */
@media (max-width: 576px) {
    .hero-slider {
        height: 65vh;
    }

    .carousel-item {
        height: 65vh;
    }

    .carousel-caption {
        bottom: 50%;
    }

    .carousel-caption h1 {
        font-size: 30px;
        margin-bottom: 1rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .carousel-caption .date-location {
        font-size: 1.5rem;
    }

    .carousel-indicators {
        margin-bottom: 2rem;
    }

    .nav-container {
        padding: 1.5rem;
    }
}

/* Responsive - Small Phones */
@media (max-width: 400px) {
    .hero-slider {
        height: 60vh;
    }

    .carousel-item {
        height: 60vh;
    }

    .carousel-caption h1 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    .carousel-caption .date-location {
        font-size: 1.4rem;
    }

    .carousel-caption {
        bottom: 50%;
    }

    .nav-container {
        padding: 1.5rem;
    }
}


/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    position: relative;
}

/* Title */
.partners-title {
    text-align: center;
    margin-top: 1.5rem;
}

.partners-title h2 {
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}


.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Scroller Wrapper */
.partners-scroller {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

/* Gradient Overlays */
.partners-scroller::before,
.partners-scroller::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-scroller::before {
    left: 0;
    background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
}

.partners-scroller::after {
    right: 0;
    background: linear-gradient(270deg, #f8f9fa 0%, transparent 100%);
}

/* Scroll Track */
.partners-track {
    display: flex;
    gap: 4rem;
    animation: scrollComplete 20s ease-in-out infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollComplete {
    0% {
        transform: translateX(0);
    }

    45% {
        transform: translateX(calc(-100% + 100vw - 4rem));
    }

    55% {
        transform: translateX(calc(-100% + 100vw - 4rem));
    }

    100% {
        transform: translateX(0);
    }
}

/* Partner Card */
.partner-card {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-card:hover img {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .partners-title h2 {
        font-size: 1.6rem;
    }
}


/*  start Section 3 changes code  */
.summit-hero-section {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/summit-about.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.summit-hero-sections {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/summit-about.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.summit-overlay-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(11, 14, 20, 0.5) 0%,
            rgba(22, 27, 38, 0.5) 50%,
            rgba(11, 14, 20, 0.5) 100%);

    z-index: 1;
}

.summit-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    color: #D9DDE3;
}

.summit-headline-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;

}

.summit-body-paragraph {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #D9DDE3;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.summit-body-paragraph:last-of-type {
    margin-bottom: 0;
}

.summit-highlight-accent {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .summit-hero-section {
        min-height: auto;
        padding: 3rem 1.5rem;
        background-attachment: scroll;
    }
    .summit-hero-sections {
        min-height: auto;
        padding: 3rem 1.5rem;
        background-attachment: scroll;
    }

    .summit-headline-text {
        margin-bottom: 2rem;
    }

    .summit-body-paragraph {
        margin-bottom: 1.25rem;
    }

    .summit-body-paragraph {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .summit-hero-section {
        padding: 2.5rem 1rem;
    }
    .summit-hero-sections {
        padding: 2.5rem 1rem;
    }

    .summit-headline-text {
        margin-bottom: 1.5rem;
    }

    .summit-body-paragraph {
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    .summit-content-wrapper {
        max-width: 1300px;
    }
}

/*  End Section 3 changes code  */


/* start of the section of four  */
.pillars-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 30px;

}

.section-header {
    text-align: center;
}

.section-label {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pillars-grid.second-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pillar-card {
    background: white;
    border-radius: 16px;
    padding: 25px 25px;
    box-shadow: 0 4px 6px rgba(0, 48, 71, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 48, 71, 0.08);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 48, 71, 0.12);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.pillar-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pillar-description {
    color: #000;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.5;
    opacity: 0.85;
}

@media (max-width: 968px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pillars-grid.second-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .pillars-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .pillars-grid,
    .pillars-grid.second-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-card {
        padding: 32px 24px;
    }

    .icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .pillar-title {
        font-size: 18px;
    }

    /* ✅ Phone font size fixed to 16px */
    .pillar-description {
        font-size: 16px;
    }
}

/* end of the section of four  */
/* start section 5*/
/* start section 5*/
.summit-outcomes-section {
    max-width: 1300px;
    margin: 0 auto;
}

.summit-header {
    text-align: center;
    position: relative;
}

.summit-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.summit-label::before,
.summit-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.summit-label::before {
    right: calc(100% + 20px);
}

.summit-label::after {
    left: calc(100% + 20px);
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.summit-heading {
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg,
            #0B0E14 0%,
            var(--secondary-color) 50%,
            var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
}

.summit-headings {
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, #D9DDE3 0%, #D9DDE3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    /* ✅ reduced (this helps with the <br>) */
    line-height: 1.2;
}

.summit-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 10px;
}

.outcomes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    /* ✅ reduced from 60px */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.outcomes-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    opacity: 0.3;
}

.outcomes-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* ✅ THIS IS THE MAIN FIX (was 45px) */
}

.outcome-item {
    position: relative;
}

.outcomes-column:first-child .outcome-item {
    padding-right: 40px;
}

.outcomes-column:last-child .outcome-item {
    padding-left: 40px;
}

.outcome-number {
    display: none;
}

.outcome-text {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    color: #D9DDE3;
    line-height: 1.55;
    /* ✅ reduced from 1.8 */
    transition: all 0.3s ease;
    position: relative;
    padding-left: 40px;
    opacity: 0.85;
}

.outcome-text::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #35B45A;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: bold;
}

.outcome-item:hover .outcome-text::before {
    color: var(--accent-color);
}

.outcome-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 0 0 20px 0;
}

.outcome-item:hover .outcome-line {
    width: 100px;
}

@media (max-width: 968px) {
    .summit-heading {
        font-size: 48px;
    }

    .summit-headings {
        font-size: 48px;
    }

    .outcomes-container {
        gap: 28px;
        /* ✅ reduced */
    }

    .outcomes-column {
        gap: 16px;
        /* ✅ reduced */
    }

    .outcome-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .summit-outcomes-section {
        padding: 70px 30px;
    }

    .summit-heading {
        font-size: 42px;
    }

    .summit-headings {
        font-size: 42px;
    }

    .summit-label::before,
    .summit-label::after {
        width: 30px;
    }

    .outcomes-container {
        grid-template-columns: 1fr;
        gap: 24px;
        /* ✅ reduced */
    }

    .outcomes-container::before {
        display: none;
    }

    .outcomes-column {
        gap: 14px;
        /* ✅ reduced */
    }

    .outcomes-column:first-child .outcome-item,
    .outcomes-column:last-child .outcome-item {
        padding: 0;
    }

    .outcome-text {
        font-size: 19px;
        padding-left: 35px;
        line-height: 1.5;
        /* ✅ reduced */
    }

    .outcome-text::before {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .summit-outcomes-section {
        padding: 50px 20px;
    }

    .summit-heading {
        font-size: 32px;
    }

    .summit-headings {
        font-size: 32px;
    }

    .outcome-number {
        font-size: 36px;
    }

    /* ✅ PHONE FONT SIZE FIXED TO 16px */
    .outcome-text {
        font-size: 16px;
        padding-left: 30px;
        line-height: 1.45;
        /* ✅ reduced */
    }

    .outcome-text::before {
        font-size: 22px;
    }
}

/*section 5 the end */


/*section 5 the end */
/* ============================= */
/* ============================= */
/* SECTION 6 — WHO IS ATTENDING  */
/* BACKGROUND IMAGE + GLASS BOX */
/* ============================= */

.attendees-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 40px;
}

/* Background image + dark overlay */
.attende {
    background-image:
        linear-gradient(135deg,
            rgba(0, 48, 71, 0.98),
            /* #003047 */
            rgba(0, 145, 255, 0.85)
            /* #0091ff */
        ),
        url('../img/attende.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure content stays above background */
.attendees-wrapper>* {
    position: relative;
    z-index: 1;
}

/* Title */
.attendees-top {
    text-align: center;

}


.attendees-main-title {
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, #D9DDE3 0%, #D9DDE3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    /* ✅ reduced (this helps with the <br>) */
    line-height: 1.2;
}

/* Layout */
.attendees-flow {
    max-width: 1300px;
    margin: 24px auto 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 70px;
    row-gap: 14px;
}

/* Center divider */
.attendees-flow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% - 12px);
    background: rgba(255, 255, 255, 0.35);
}

/* ============================= */
/* GLASS / TRANSPARENT CARDS */
/* ============================= */

.attendee-row {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 16px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.08);
    /* transparent */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 255, 255, 0.45);

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Hover — subtle & elegant */
.attendee-row:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #35B45A;

    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.35);
}

/* Icon */
.attendee-visual {
    width: 52px;
    height: 52px;
    min-width: 52px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);

    display: flex;
    align-items: center;
    justify-content: center;
}

.attendee-visual svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
}

/* Text */
.attendee-details {
    flex: 1;
}

.attendee-label {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.55;
    margin: 0;
}

/* Remove numbers */
.attendee-index {
    display: none !important;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .attendees-flow {
        column-gap: 40px;
    }

    .attendees-main-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .attendees-wrapper {
        padding: 45px 16px;
    }

    .attendees-flow {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .attendees-flow::before {
        display: none;
    }

    .attendee-label {
        font-size: 16px;
    }

    .attendees-main-title {
        font-size: 38px;
    }
}


/* ===== Stakeholders Circles (Copy/Paste CSS) ===== */

/* Section */
.stakeholders-section {
    background-image:
        linear-gradient(135deg,
            rgba(0, 48, 71, 0.98),
            rgba(0, 145, 255, 0.85)),
        url('../img/attende.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Make each grid cell center its circle */
.stakeholder-circle {
    display: grid;
    place-items: center;
}

/* Bigger circles */
.circle-inner {
    width: 100%;
    max-width: 220px;
    /* ✅ bigger (desktop) */
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 2.1rem;
    /* ✅ more inner spacing */

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
}

.circle-inner:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Top text */
.circle-top {
    text-align: center;
}

.circle-title {
    font-size: 18px;
    /* ✅ slightly bigger */
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: #35B45A;
}

/* ✅ Two lines under title */
.title-lines {
    display: grid;
    place-items: center;
    gap: 6px;
    margin: 6px 0 8px;
}

.title-lines span {
    display: block;
    height: 1px;
    border-radius: 999px;
    width: 70%;
    max-width: 220px;
}

.line-green {
    background: #D9DDE3;

}


.circle-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #F6D74B;
    margin: 0.45rem 0 0;
    line-height: 1.25;
}

.circle-subtitles {
    font-size: 1rem;
    font-weight: 600;
    color: #F6D74B;
    margin: 0.45rem 0 0;
    line-height: 0.10;
}

/* List */
.circle-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    gap: 0.45rem;
    text-align: center;

    font-size: 0.95rem;
    /* ✅ bigger */
    line-height: 1.25;
}

.circle-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: #D9DDE3;
}

.circle-list i {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1;
}

/* ===== Responsive sizes ===== */

/* Small phones */
@media (max-width: 575.98px) {
    .circle-inner {
        max-width: 320px;
        /* ✅ bigger than before but still fits */
        padding: 1.6rem;
    }

    .circle-title {
        font-size: 1.05rem;
    }

    .circle-subtitle {
        font-size: 0.88rem;
    }

    .circle-list {
        font-size: 0.88rem;
    }

    .title-lines span {
        width: 75%;
        max-width: 190px;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    .circle-inner {
        max-width: 400px;
        /* ✅ bigger on tablet */
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .circle-inner {
        max-width: 380px;
        /* ✅ biggest on large screens */
        padding: 2.3rem;
    }

    .circle-title {
        font-size: 22px;
    }

    .circle-list {
        font-size: 1rem;
    }

    .title-lines span {
        max-width: 240px;
    }
}


/* ============================= */
/* SECTION 7 — PROGRAM COMMITTEE */
/* TEXT LEFT • IMAGE RIGHT       */
/* TITLE SIZE & COLOR FIXED     */
/* ============================= */

.program-committee-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.program-committee-wrap {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;

    align-items: center;
}

/* LEFT CONTENT */
.program-committee-content {
    padding: 10px 0;
}

.program-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #0091ff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* 🔒 TITLE — FIXED SIZE & COLOR */
.program-title {
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
    /* FIXED */
}

.program-title-accent {
    display: block;
    color: #0091ff;
    /* FIXED */
}

/* Description */
.program-desc {
    margin: 0 0 26px 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(0, 48, 71, 0.85);
    max-width: 680px;
}

/* LIST */
.program-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
}

.program-person {
    background: #ffffff;
    border: 1px solid rgba(0, 48, 71, 0.10);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 10px 26px rgba(0, 48, 71, 0.06);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.program-person:hover {
    border-color: rgba(0, 145, 255, 0.35);
    box-shadow: 0 14px 34px rgba(0, 48, 71, 0.10);
    background: linear-gradient(135deg,
            rgba(0, 145, 255, 0.06),
            rgba(99, 217, 106, 0.06));
}

.program-name {
    margin: 0 0 6px 0;
    font-size: 20px;
    font-weight: 700;
    color: #003047;
}

.program-role {
    margin: 0;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.8;
    color: #000;
}

/* Divider */
.program-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 48, 71, 0.15), transparent);
}

/* RIGHT IMAGE */
.program-committee-media {
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    position: relative;

    background-image: url("../img/program.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: 0 30px 70px rgba(0, 48, 71, 0.18);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    cursor: pointer;
}

/* Hover effect */
.program-committee-media:hover {
    transform: scale(1.04);
    box-shadow: 0 40px 90px rgba(0, 48, 71, 0.28);
}


.program-committee-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 48, 71, 0.35),
            rgba(0, 145, 255, 0.18),
            rgba(99, 217, 106, 0.10));
}

/* RESPONSIVE (TITLE NOT TOUCHED) */
@media (max-width: 992px) {
    .program-committee-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-committee-media {
        min-height: 340px;
        order: -1;
    }

    .program-title {
        font-size: 38px;

    }
}

@media (max-width: 480px) {
    .program-committee-section {
        padding: 45px 16px;
    }

    .program-title {
        font-size: 38px;

    }

    .program-desc {
        font-size: 16px;
    }

    .program-person {
        padding: 14px 14px;
        border-radius: 16px;
    }

    .program-name {
        font-size: 18px;
    }
}


/* Footer */
.footer {
    background: #0B0E14;
    color: var(--text-light);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(217, 221, 227, 0.5);
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-section p {
    color: var(--text-light);
    line-height: 2;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    width: 20px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }


}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 1rem;
    }


}


/* program sections */
.prog__overview__wrapper {
    background-image:
        linear-gradient(135deg,
            rgba(11, 14, 20, 0.90),
            rgba(11, 14, 20, 0.90)),
        url('../img/programme.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    color: #1279B8;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-icon {
    width: 50px;
    height: 50px;
    border: 3px solid #35B45A;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.program-card {
    background: transparent;
    border: 1px solid #D9DDE3;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}


.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(53, 180, 90, 0.1), transparent);
    border-radius: 50%;
}

.program-card:hover {
    background: linear-gradient(135deg, rgba(18, 121, 184, 0.1), rgba(53, 180, 90, 0.06));
    box-shadow: 0 10px 30px rgba(18, 121, 184, 0.3);
    border-left-color: #35B45A;
}

.card-date {
    color: #35B45A;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(53, 180, 90, 0.15);
    border-radius: 6px;
}

.card-title {
    color: #1279B8;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-activities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-activity {
    color: #D9DDE3;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.5;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.card-activity::before {
    content: '●';
    color: #F6D74B;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.card-subsection {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed rgba(18, 121, 184, 0.3);
}

.subsection-title {
    color: #35B45A;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.day-marker {
    width: 50px;
    height: 50px;
    background-color: #35B45A;
    border: 4px solid #0B0E14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.day-marker-inner {
    width: 20px;
    height: 20px;
    background-color: #F6D74B;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .program-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.3rem;
    }
}


/* ===============================
    Start NEISA QUOTES SECTION
================================ */

.neisa-quotes {
    padding: 40px 20px;
}

/* ===============================
   NEISA QUOTE CARD
================================ */

.neisa-quote-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;


    text-align: center;
}

/* DARK OVERLAY */
.neisa-quote-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

/* KEEP CONTENT ABOVE OVERLAY */
.neisa-quote-card>* {
    position: relative;
    z-index: 1;
}

/* BACKGROUND IMAGES */
.neisa-bg-quote-1,
.neisa-bg-quote-2,
.neisa-bg-quote-3 {
    background-image: url("../img/neisa-quotes/quotes.jpeg");
}

/* ===============================
   IMAGE
================================ */

.neisa-speaker-image-wrapper {
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.neisa-speaker-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    border: 4px solid var(--accent-color);
}

/* ===============================
   LINE
================================ */

.neisa-quote-line {
    width: 70px;
    height: 4px;
    background: var(--accent-color);
    margin: 5px 0 20px;
    border-radius: 2px;
}

/* ===============================
   TEXT
================================ */

.neisa-quote-content {
    flex: 1;
}

.neisa-quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f1f1;
    font-style: italic;
    margin-bottom: 22px;
}

.neisa-speaker-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.neisa-speaker-title {
    font-size: 0.95rem;
    color: var(--accent-color);
}

/* ===============================
   HOVER EFFECT
================================ */

/* ===============================
   BOOTSTRAP GRID FIX (SCOPED)
================================ */

.neisa-quotes .row.g-4>[class*="col-"] {
    display: flex;
}

.neisa-quotes .row.g-4>[class*="col-"] .neisa-quote-card {
    width: 100%;

}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .neisa-quote-card {
        padding: 30px;
    }

    .neisa-speaker-image {
        width: 140px;
        height: 140px;
    }

    .neisa-quote-text {
        font-size: 1rem;
    }
}


/*how to attent section */
.neisa-attendance-wrapper {
    background-image: linear-gradient(135deg, rgba(11, 14, 20, 0.90), rgba(11, 14, 20, 0.90)), url('../img/programme.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.neisa-button-wrapper {
    display: flex;
    justify-content: center;
}

.neisa-primary-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1279b8;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(18, 121, 184, 0.35);
}

/* Hover effect */
.neisa-primary-btn:hover {
    background-color: #35B45A;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(18, 121, 184, 0.45);
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .neisa-primary-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}


.neisa-content-block {
    color: var(--text-light);
    padding-right: 40px;
}

.neisa-section-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--text-light);
}

.neisa-description-text {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: center;
    color: var(--text-light);
    opacity: 0.95;
}

.neisa-image-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neisa-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.neisa-featured-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}


@media (max-width: 991px) {
    .neisa-content-block {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .neisa-section-heading {
        font-size: 2.2rem;
    }

    .neisa-featured-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .neisa-attendance-container {
        padding: 50px 0;
    }

    .neisa-section-heading {
        font-size: 1.8rem;
    }

    .neisa-description-text {
        font-size: 1rem;
    }

    .neisa-featured-image {
        height: 300px;
    }
}

/*requesting invitation*/

/* index final section exhibition */
.exhibition-section {
    min-height: 10vh;
    display: flex;
    flex-wrap: wrap;
    /* allows full-width child columns */
    margin: 0;
    /* remove any default margins */
    padding: 0;
    /* remove any default padding */
    width: 100vw;
    /* full viewport width */
    overflow: hidden;
    /* avoid scroll gaps */
    background: none;
    /* no green or white background */
}

.exhibition-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.exhibition-title {
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
}

.exhibition-text {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.5;
    margin-bottom: 12px;
    position: relative;
    color: #D9DDE3;
    text-align: left;
}

.exhibition-row {
    display: flex;
    width: 100%;

    margin: 0;
}

.exhibition-content {
    flex: 1;
    /* take half of the row */
    background-image: url('../img/neisa-quotes/exhbition.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.exhibition-image-col {
    flex: 1;
    /* take other half of the row */
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* optional: show pointer on hover */
}

.exhibition-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
    /* smooth zoom effect */
}

/* Zoom in on hover */
.exhibition-image-col:hover .exhibition-image {
    transform: scale(1.1);
    /* zoom in 10% */
}

/* Optional: zoom out when hover ends (automatic with transition) */


/* Responsive adjustments */
@media (max-width: 991px) {
    .exhibition-row {
        flex-direction: column;
        /* stack left and right on smaller screens */
        min-height: auto;
    }

    .exhibition-content {
        min-height: auto;
        padding: 60px 40px;
    }

    .exhibition-image-col {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .exhibition-content {
        padding: 50px 30px;
    }

    .exhibition-image-col {
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .exhibition-content {
        padding: 40px 25px;
    }

    .exhibition-image-col {
        min-height: 350px;
    }
}


/*welcome page of parteneship*/

.welcome-section {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/summit-about.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.5) 0%, rgba(22, 27, 38, 0.5) 50%, rgba(11, 14, 20, 0.5) 100%)
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 1200px;

}


.welcome-section {
    position: relative !important;
    height: 40vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Center Content */
.welcome-section .content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;

    /* ✅ Limit width so it wraps into 2 lines */
    width: 100% !important;
    max-width: 1200px !important;
}

/* ✅ Bigger Headline */
.welcome-section .summit-headline-text {
    margin: 0 !important;
    line-height: 1 !important;

    /* ✅ Ensure wrapping */
    white-space: normal !important;
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: white;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
}


/* Partnership Section */
/* =========================================================
   NEISA 2026 – PARTNERSHIP SECTION (FULLY SCOPED)
   ========================================================= */

.neisa2026__partnership__section {
    padding: 40px 0;
    position: relative;
    background-image: url('../img/exhibition-banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* CONTAINER */
.neisa2026__partnership__section .neisa2026__partnership__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* AFRICA IMAGE BLOCK */
.neisa2026__partnership__section .neisa2026__africa__image__wrapper {
    position: relative;
    margin-bottom: 35px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(18, 121, 184, 0.15);
}

.neisa2026__partnership__section .neisa2026__africa__map {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg,
            rgba(18, 121, 184, 0.2) 0%,
            rgba(240, 240, 240, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(18, 121, 184, 0.2);
}

.neisa2026__partnership__section .neisa2026__overlay__text {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 4px solid #1279B8;
    max-width: 700px;
    line-height: 1.4;
}

/* INTRO BLOCK */
.neisa2026__partnership__section .neisa2026__intro__block {
    margin-bottom: 15px;
}

/* 🔒 PROGRAM TITLE – SCOPED (NO GLOBAL DAMAGE) */
.neisa2026__partnership__section .program-title {
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

/* TEXT */
.neisa2026__partnership__section .neisa2026__intro__text {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.65;
    color: #2d2d2d;
    margin-bottom: 5px;
    text-align: left;
}

.neisa2026__partnership__section .summit-highlight-accent {
    color: #1279B8;
    font-weight: 600;
}

/* SECTION HEADING */
.neisa2026__partnership__section .neisa2026__section__heading {
    font-size: 30px;
    font-weight: 700;
    color: #1279B8;
    margin-bottom: 20px;
    margin-top: 10px;
    border-bottom: 3px solid #1279B8;
    padding-bottom: 12px;
}

/* 🔒 ROW & COLUMNS – SCOPED (THIS FIXES YOUR CARD ISSUE) */
.neisa2026__partnership__section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.neisa2026__partnership__section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

/* PARTNER LIST */
.neisa2026__partnership__section .neisa2026__partner__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.neisa2026__partnership__section .neisa2026__partner__item {
    padding: 12px 0 12px 30px;
    margin-bottom: 10px;
    position: relative;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.2;
    color: #2d2d2d;
    border-left: 3px solid #1279B8;
    background: rgba(18, 121, 184, 0.08);
    border-radius: 0 8px 8px 0;
}

.neisa2026__partnership__section .neisa2026__partner__item:hover {
    background: rgba(18, 121, 184, 0.15);
    border-left-color: #0a5a8a;
}

.neisa2026__partnership__section .neisa2026__partner__item::before {
    content: "▸";
    position: absolute;
    left: 10px;
    color: #1279B8;
    font-weight: bold;
}

.neisa2026__partnership__section .neisa2026__highlight__accent {
    color: #1279B8;
    font-weight: 600;
}

/* CALLOUT BOX */
.neisa2026__partnership__section .neisa2026__callout__box {
    background: linear-gradient(135deg,
            rgba(18, 121, 184, 0.12) 0%,
            rgba(18, 121, 184, 0.05) 100%);
    border: 2px solid #1279B8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.neisa2026__partnership__section .neisa2026__callout__heading {
    font-size: 26px;
    font-weight: 700;
    color: #1279B8;
}

.neisa2026__partnership__section .neisa2026__callout__text {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.4;
    color: #2d2d2d;
}

.neisa2026__partnership__section .neisa2026__note__text {
    font-size: 15px;
    font-style: italic;
    color: #1279B8;
    margin-top: 18px;
    padding: 15px;
    background: rgba(18, 121, 184, 0.08);
    border-radius: 8px;
    border-left: 4px solid #1279B8;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .neisa2026__partnership__section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .neisa2026__partnership__section .neisa2026__africa__map {
        height: 250px;
    }

    .neisa2026__partnership__section .neisa2026__overlay__text {
        font-size: 20px;
        padding: 18px;
    }

    .neisa2026__partnership__section .program-title {
        font-size: 28px;
    }

    .neisa2026__partnership__section .neisa2026__section__heading {
        font-size: 24px;
    }
}


/* Wrapper */
.neisa2026__partner__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* space between rows */
    margin
}

/* Row spacing */
.neisa2026__partner__grid .row {
    row-gap: 30px;
    /* space between cards */
}

/* Equal height cards */
.neisa2026__partner__grid .col-md-3 {
    display: flex;
}

/* Card */
.neisa2026__partner__card__box {
    width: 100%;
    background: #fff;
    padding: 28px 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);

}

.neisa2026__partner__card__box:hover {

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Icon box */
.neisa2026__partner__card__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;

    background: #eaf7ff;
    border: 1px solid #bfe8ff;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
}

/* SVG */
.neisa2026__partner__card__icon svg {
    width: 32px;
    height: 32px;
    fill: #0077b6;
    display: block;
}

/* Text */
.neisa2026__partner__card__desc {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 500;
    line-height: 1.6;
    color: #1e293b;
    margin: 0;
    max-width: 270px;
}

.neisa2026__partner__grid .row.justify-content-center {}


/* Mobile tweak */
@media (max-width: 768px) {
    .neisa2026__partner__card__box {
        padding: 24px 16px;
    }

    .neisa2026__partner__card__desc {
        max-width: 100%;
    }
}


/* insights page css code */

.welcome-sections {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Dark overlay filter on video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Black overlay - adjust opacity as needed */
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.content-box {
    color: white;
    max-width: 900px;
}

.video-titless {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.event-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #ffffff;
}

.detail-icon {
    font-size: 20px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .video-title {
        font-size: 38px;
    }

    .detail-item {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .welcome-sections {
        height: 70vh;
        min-height: 400px;
    }

    .video-content {
        padding: 0 15px;
    }

    .video-titless {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .event-details {
        gap: 20px;
    }

    .detail-item {
        font-size: 14px;
    }

    .detail-icon {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .welcome-sections {
        height: 60vh;
        min-height: 350px;
    }

    .video-title {
        font-size: 22px;
    }

    .event-details {
        flex-direction: column;
        gap: 12px;
    }

    .detail-item {
        font-size: 13px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-title {
        font-size: 3rem;
    }

    .video-paragraph {
        font-size: 1.15rem;
    }
}

@media (max-width: 992px) {
    .video-content {
        padding-left: 30px;
    }

    .video-title {
        font-size: 2.5rem;
    }

    .video-paragraph {
        font-size: 1.1rem;
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .welcome-sections {
        height: 70vh;
    }

    .video-content {
        padding-left: 20px;
    }

    .content-box {
        padding: 15px;
    }

    .video-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .video-paragraph {
        font-size: 1rem;
        min-height: 80px;
    }
}

@media (max-width: 576px) {
    .welcome-sections {
        height: 60vh;
    }

    .video-content {
        padding-left: 15px;
    }

    .video-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .video-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
        min-height: 70px;
    }
}

.welcome-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 60px 80px;
    max-width: 100%;
    width: 100%;
    animation: fadeInUp 1.5s ease-out;
    display: flex;
    align-items: center;
    gap: 30px;

    /* NEW fancy background */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    /* blur the video behind */
    -webkit-backdrop-filter: blur(8px);
    /* Safari support */

}


.welcome-content h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    line-height: 1.2;
}

.welcome-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

.welcome-content .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.welcome-content .btn::before {
    content: '→';
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.welcome-content .btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.welcome-content .btn:hover::before {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 20px;
    }

    .welcome-content h1 {
        font-size: 2.5rem;
    }

    .welcome-content .btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .welcome-content {
        padding: 30px 20px;
    }

    .welcome-content h1 {
        font-size: 2rem;
    }

    .welcome-content .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}


/* speakers 2025 neisa*/
.neisa-speakers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.neisa-speakers-header {
    text-align: center;
    margin-bottom: 60px;
}

.neisa-speakers-header h1 {
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    margin-bottom: 10px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.neisa-speakers-header hr {
    width: 100%;
    height: 2px;
    background-color: #ddd;
    border: none;
    margin-top: 30px;
}

.neisa-speaker-card {
    margin-bottom: 50px;
    text-align: center;
}

.neisa-speaker-photo {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.neisa-speaker-fullname {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 10px;
}

.neisa-speaker-title {
    font-size: 1rem;
    /*color: #666;*/
    line-height: 1.6;
}

@media (max-width: 768px) {
    .neisa-speakers-header h1 {
        font-size: 2rem;
    }

    .neisa-speaker-photo {
        height: 250px;
    }

    .neisa-speaker-fullname {
        font-size: 1.2rem;
    }

    .neisa-speaker-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .neisa-speaker-photo {
        height: 300px;
    }
}

/*press release css code for home files */
/* NEISA Press Release - Unique Scoped Styles */
.neisa-pr-page {
    color: #1a1a1a;
}


/* Navigation Styles */
.neisa-pr-navbar {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.neisa-pr-navbar .neisa-pr-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.neisa-pr-navbar .neisa-pr-nav-link {
    color: #e0e7ff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.neisa-pr-navbar .neisa-pr-nav-link:hover {
    color: #ffffff;
}

/* Press Release Header */
.neisa-pr-header {
    background-image: url('../img/neisa-quotes/quotes.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0 3rem;
    margin-bottom: 0;
}

.neisa-pr-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.neisa-pr-main-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffff;
}

.neisa-pr-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-weight: 400;
}

.neisa-pr-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.neisa-pr-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.neisa-pr-meta-icon {
    width: 20px;
    height: 20px;
    color: #60a5fa;
}

/* Content Section */
.neisa-pr-content {
    background-image: linear-gradient(135deg, rgba(11, 14, 20, 0.90), rgba(11, 14, 20, 0.90)), url('../img/programme.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
}

.neisa-pr-article {
    /* max-width: 800px;*/
    margin: 0 auto;
}

.neisa-pr-row {
    margin-bottom: 1.5rem;
}

.neisa-pr-row:last-child {
    margin-bottom: 0;
}


.neisa-pr-content-box {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #D9DDE3;

}

.neisa-pr-content-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.neisa-pr-paragraph {
    font-size: 1.05rem;
    line-height: 1.4;
    color: #D9DDE3;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.neisa-pr-quote {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #1e293b;
    border-radius: 0 8px 8px 0;
}

.neisa-pr-quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.neisa-pr-quote-author {
    font-style: normal;
    font-weight: 600;
    color: #3b82f6;
    font-size: 0.95rem;
}

.neisa-pr-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #3b82f6;
}

.neisa-pr-highlight-box {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #bfdbfe;
}

.neisa-pr-highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.neisa-pr-list {
    list-style: none;
    padding-left: 0;
}

.neisa-pr-list-item {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #334155;
}

.neisa-pr-list-item:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.neisa-pr-info-section {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.neisa-pr-contact-box {
    background: #1e293b;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.neisa-pr-contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.neisa-pr-contact-email {
    color: #60a5fa;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.neisa-pr-contact-email:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.neisa-pr-end-mark {
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #64748b;
    margin: 3rem 0 2rem;
    letter-spacing: 2px;
}

/* Footer Styles */
.neisa-pr-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
}

.neisa-pr-footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.neisa-pr-footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.neisa-pr-footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.neisa-pr-footer-link:hover {
    color: #60a5fa;
}

.neisa-pr-footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.neisa-pr-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.neisa-pr-social-icon {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.neisa-pr-social-icon:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .neisa-pr-main-title {
        font-size: 2rem;
    }

    .neisa-pr-meta {
        gap: 1rem;
    }

    .neisa-pr-quote {
        padding: 1rem 1.5rem;
    }

    .neisa-pr-highlight-box,
    .neisa-pr-info-section {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #D9DDE3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1279B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #35B45A;
    ;
    color: white;
    transform: translateY(-3px);
}

/* NEISA 2025 Badge */
.neisa-badge-wrap-2025 {
    display: flex;
    align-items: flex-start;
}

.neisa-badge-2025 {
    background-color: #1279B8;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
}

.neisa-badge-2025:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .neisa-badge-wrap-2025 {
        justify-content: center;
    }

    .neisa-badge-2025 {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}


/* Advocacy Insights Section */
/* .advocacy-insights-section {
    padding: 40px 0;
    background-image: url('../img/neisa-quotes/quotes.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}*/
.advocacy-insights-section {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* Flex Wrapper */
.insights-content-wrapper {
    display: flex;
    align-items: flex-start;
    /* aligns image to top */
    gap: 40px;
    flex-wrap: wrap;
    /* allows wrap on smaller screens */
}

/* Text Column */
.advocacy-text-column {
    flex: 1;
    margin-top: 10px;
    /* pushes text down */
}


.advocacy-body-text {
    font-size: 30px;
    line-height: 1.1;
    color: #D9DDE3;
    margin-bottom: 10px;
    font-weight: 500;
}

.highlight {
    color: #35B45A;
    font-weight: 700;
}

/* Image Column */
.advocacy-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
}

.insights-visual-placeholder {
    width: 100%;
    max-width: 300px;
    /* limits image width */
}

.overlay-advocacy-container {
    position: relative;
    width: 100%;
    height: auto;
    /* allows height to fit content */
    aspect-ratio: 4 / 3;
    /* maintains a good proportion */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.overlay-advocacy-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

/* Zoom on hover */
.overlay-advocacy-container:hover img {
    transform: scale(1.05);
}

/* Dark overlay effect */
.overlay-advocacy-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 12px;
}

.overlay-advocacy-container:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .insights-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .insights-visual-placeholder {
        max-width: 100%;
    }

    /* Advocacy Insights Section */
    .advocacy-insights-section {
        padding: 90px 0;
        background-image: url('../img/neisa-quotes/quotes.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 768px) {
    .advocacy-body-text {
        font-size: 1rem;
    }

    .insights-visual-placeholder {
        aspect-ratio: auto;
        /* lets image shrink naturally */
        height: 250px;
    }

    /* Advocacy Insights Section */
    .advocacy-insights-section {
        padding: 90px 0;
        background-image: url('../img/neisa-quotes/quotes.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}


/* quotes for insights page css */
.advocate-insight-quotes {
    padding: 20px 0;
    background-image: url('../img/summit-about.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

/* Dark overlay for better text readability */
.advocate-insight-quotes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.container-fluid {
    position: relative;
    z-index: 1;
}


.section-header p {
    font-size: 18px;
}

/* Scrolling Container */
.quotes-scroll-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.quotes-track {
    display: flex;
    animation: scroll-left 60s linear infinite;
    gap: 30px;
    width: fit-content;
}

/* KEY FIX: The animation keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.quotes-track:hover {
    animation-play-state: paused;
}

/* Speech Bubble Quote Box */
.advocate-quote-box {
    background: white;
    border: 4px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

/* Speech Bubble Tail */
.advocate-quote-box::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 0px solid transparent;
    border-top: 25px solid var(--border-color);
}

.advocate-quote-box::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 43px;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 0px solid transparent;
    border-top: 22px solid white;
}

.advocate-quote-text {
    font-size: 18px;
    line-height: 1.6;
    color: #0B0E14;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advocate-quote-box {
        min-width: 300px;
        max-width: 300px;
        padding: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .advocate-quote-text {
        font-size: 16px;
    }

    .quotes-track {
        animation-duration: 40s;
    }
}

/* graphic */
.graphics-insights {
    padding: 0;
    background: #f8f9fa;
}

.graphics-insights__image {
    width: 100%;
    height: auto;
    display: block;
}


.keyoutcomes-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(15, 20, 25, 0.85), rgba(26, 35, 50, 0.9)),
        url('../img/attende.jpg') center/cover fixed;
    padding: 30px 0;
}

.keyoutcomes-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.keyoutcomes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.keyoutcomes-header {
    text-align: center;
    margin-bottom: 20px;
}

.keyoutcomes-header h1 {
    font-size: 50px;
    font-weight: 800;
    color: #1279B8;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.keyoutcomes-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.keyoutcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.keyoutcomes-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid #D9DDE3;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.keyoutcomes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), rgba(212, 175, 55, 0.4));
    opacity: 0;
}

.keyoutcomes-card:hover {
    background: var(--card-hover);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.keyoutcomes-card:hover::before {
    opacity: 1;
}


.keyoutcomes-card-title {

    font-size: 1.8rem;
    font-weight: 700;
    color: #D9DDE3;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.keyoutcomes-card-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.keyoutcomes-intro {
    font-size: 18px;
    color: #D9DDE3;
    margin-bottom: 25px;
    font-weight: 500;
}

.keyoutcomes-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.keyoutcomes-list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    color: #D9DDE3;
    font-size: 18px;
    line-height: 1.7;
}

.keyoutcomes-list-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 18px;
}

.keyoutcomes-nested-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 12px;
}

.keyoutcomes-nested-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.keyoutcomes-nested-item::before {
    content: '◦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.keyoutcomes-callout {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.keyoutcomes-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.keyoutcomes-callout p {
    position: relative;
    z-index: 1;
    margin: 0;
    /*font-style: italic;*/
    color: var(--text-light);
}

.keyoutcomes-highlight-text {
    color: var(--accent-gold);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.keyoutcomes-insight-box {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--accent-gold);
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.keyoutcomes-insight-title {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.keyoutcomes-insight-title::before {
    content: '💡';
    font-size: 1.3rem;
}


@media (max-width: 1024px) {
    .keyoutcomes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .keyoutcomes-wrapper {
        padding: 50px 0;
    }

    .keyoutcomes-header h1 {
        font-size: 2.2rem;
    }

    .keyoutcomes-card {
        padding: 30px 25px;
    }

    .keyoutcomes-card-title {
        font-size: 1.5rem;
    }

    .keyoutcomes-grid {
        gap: 20px;
    }
}

/* media section register */
/* Main Section */
.mediahub-register-section {
    background-image: url('../img/neisa-quotes/quotes.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0 3rem;
    margin-bottom: 0;
}

/* Background Pattern (Optional - for the dotted pattern) */
.mediahub-register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

/* Content Container */
.mediahub-register-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

/* Title Styling */
.mediahub-register-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Description Text */
.mediahub-register-description {
    font-size: 20px;
    color: white;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

/* Button Wrapper */
.mediahub-register-btn-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

/* Button Styling */
.mediahub-register-btn {
    display: inline-block;
    background-color: white;
    background: #1279B8;
    color: white;
    padding: 13px 40px;
    font-weight: 600;
    font-size: 18px;

    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.mediahub-register-btn:hover {
    background-color: #35B45A;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .mediahub-register-title {
        font-size: 3rem;
    }

}

@media (max-width: 992px) {
    .mediahub-register-section {
        padding: 60px 0;
    }

    .mediahub-register-title {
        font-size: 2.5rem;
    }

    .mediahub-register-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .mediahub-register-btn-wrapper {
        justify-content: center;
        margin-top: 20px;
    }

    .mediahub-register-content {
        padding-right: 0;
        text-align: center;
    }

    .mediahub-register-shape {
        width: 400px;
        height: 400px;
        right: -200px;
    }
}

@media (max-width: 768px) {
    .mediahub-register-section {
        padding: 50px 0;
    }

    .mediahub-register-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .mediahub-register-description {
        font-size: 1rem;
    }

    .mediahub-register-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .mediahub-register-shape {
        width: 350px;
        height: 350px;
        opacity: 0.7;
    }
}

@media (max-width: 576px) {
    .mediahub-register-section {
        padding: 40px 0;
    }

    .mediahub-register-title {
        font-size: 1.75rem;
    }

    .mediahub-register-description {
        font-size: 0.95rem;
    }

    .mediahub-register-btn {
        padding: 16px 30px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 350px;
    }

    .mediahub-register-shape {
        width: 300px;
        height: 300px;
        right: -150px;
    }
}

@media (max-width: 400px) {
    .mediahub-register-title {
        font-size: 1.5rem;
    }

    .mediahub-register-btn {
        font-size: 0.85rem;
        padding: 14px 25px;
    }
}

/* after the first section of media the second one wiht the icons */

.mediahubboxes {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.mediahubboxes__title {
    text-align: center;
    font-size: 58px;
    font-weight: 800;
    color: #D9DDE3;
    margin-bottom: 40px;
    letter-spacing: 2px;

}

.mediahubboxes__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mediahubboxes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.mediahubboxes__item {
    text-align: center;
}

.mediahubboxes__icon-wrapper {
    width: 150px;
    height: 150px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
    transition: all 0.3s ease;
    border: 5px solid white;
}

.mediahubboxes__icon-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
}

.mediahubboxes__icon {
    font-size: 4rem;
    color: white;
}

.mediahubboxes__category-title {
    font-size: 25px;
    font-weight: 700;
    color: #D9DDE3;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.mediahubboxes__browse-btn {
    color: #D9DDE3;
    background-color: #1279B8;
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
    cursor: pointer;
}

.mediahubboxes__browse-btn:hover {
    background: #35B45A;
    color: #D9DDE3;
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mediahubboxes__title {
        font-size: 2rem;
    }

    .mediahubboxes__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .mediahubboxes__icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .mediahubboxes__icon {
        font-size: 3rem;
    }

    .mediahubboxes__category-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .mediahubboxes__grid {
        grid-template-columns: 1fr;
    }
}


/*gallery media hub */
.gallery-media {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.gallery-media .container {
    max-width: 1400px;
}

.gallery-media .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-media .gallery-item-wrapper {
    display: flex;
    flex-direction: column;
}

.gallery-media .gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-media .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-media .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-media .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-media .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-media .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-media .gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-media .gallery-description {
    padding: 15px 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-media .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .gallery-media .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-media {
        padding: 40px 0;
    }

    .gallery-media .gallery-description {
        font-size: 13px;
        padding: 12px 0;
    }
}

@media (max-width: 576px) {
    .gallery-media .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-media {
        padding: 30px 0;
    }

    .gallery-media .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-media .gallery-description {
        font-size: 13px;
        padding: 12px 0;
    }
}


/* Media Hub About Section Styles */
.mediahub-about {
    padding: 60px 0 0 0;
    background-color: #f5f5f5;
}

.mediahub-about .section-title {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 50px;
}

.mediahub-about .section-title h2 {
    font-size: 55px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    margin: 0;
}

.mediahub-about .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background-color: #ff5252;
}

.mediahub-about .section-title h2 .highlight {
    color: #16a085;
}

.mediahub-about .is-about__wrapper {
    position: relative;
    min-height: 510px;
    background-image: url('../img/attende.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 90%;
}

.mediahub-about .is-about__text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    max-width: 576px;
    color: #fff;
    background: #1279B8;
    font-size: 19px;
    line-height: 1.75;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .mediahub-about .is-about__text {
        padding: 40px;
        margin: 184px 0 0 0;
        position: relative;
    }
}

@media (max-width: 991px) {
    .mediahub-about .section-title h2 {
        font-size: 45px;
        letter-spacing: 2px;
    }

    .mediahub-about .is-about__wrapper {
        min-height: auto;
        background-position: center;
        background-size: cover;
    }

    .mediahub-about .is-about__text {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-height: 350px;
        padding: 50px 40px;
        margin: 0;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .mediahub-about {
        padding: 40px 0 0 0;
    }

    .mediahub-about .section-title {
        padding-bottom: 35px;
    }

    .mediahub-about .section-title h2 {
        font-size: 32px;
        letter-spacing: 1.5px;
    }

    .mediahub-about .section-title h2::after {
        width: 150px;
        bottom: -12px;
    }

    .mediahub-about .is-about__text {
        padding: 40px 30px;
        min-height: 300px;
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .mediahub-about .section-title h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .mediahub-about .section-title h2::after {
        width: 120px;
    }

    .mediahub-about .is-about__text {
        padding: 35px 25px;
        min-height: 280px;
        font-size: 14px;
    }
}

/* About MeidaHub Section Styles */

.aboutmeidahub-section {
    background-color: #ffffff;
    padding: 20px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

/* Image Column Styles */
.aboutmeidahub-image-col {
    padding: 20px;
}

.aboutmeidahub-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.aboutmeidahub-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.aboutmeidahub-main-image:hover {
    transform: scale(1.05);
}

/* Text Column Styles */
.aboutmeidahub-text-col {
    padding: 20px;
}

.aboutmeidahub-content-wrapper {
    padding: 20px;
}

.aboutmeidahub-heading {
    color: #1279B8;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.aboutmeidahub-description {
    color: #333333;
    font-size: 18px;
    line-height: 1.5;

}

.aboutmeidahub-cta-button {
    display: inline-block;
    background-color: #1279B8;
    ;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.aboutmeidahub-cta-button:hover {
    background-color: #35B45A;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .aboutmeidahub-section {
        padding: 60px 0;
    }

    .aboutmeidahub-heading {
        font-size: 36px;
    }

    .aboutmeidahub-description {
        font-size: 16px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .aboutmeidahub-section {
        padding: 40px 0;
        min-height: auto;
    }

    .aboutmeidahub-image-col {
        margin-bottom: 30px;
    }

    .aboutmeidahub-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .aboutmeidahub-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .aboutmeidahub-content-wrapper {
        padding: 10px;
    }

    .aboutmeidahub-cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 575px) {
    .aboutmeidahub-heading {
        font-size: 28px;
    }

    .aboutmeidahub-description {
        font-size: 14px;
    }

    .aboutmeidahub-image-col,
    .aboutmeidahub-text-col {
        padding: 10px;
    }
}


/* Video Section */
/* Video Section */
.media-videohub {
    background-color: #000;
    padding: 40px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.back-button {
    margin-bottom: 30px;
    display: inline-block;
}

.back-button a {
    color: #1279B8;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    padding: 10px 20px;
    border: 2px solid #1279B8;
    border-radius: 5px;
    background: transparent;
    width: fit-content;
}

.back-button a:hover {
    background-color: #1279B8;
    color: #fff;
    transform: translateX(-5px);
}

.video-title {
    color: #1279B8;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .video-wrapper {
        width: 85%;
    }
}

@media (max-width: 992px) {
    .video-wrapper {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .media-videohub {
        padding: 20px 0;
    }

    .video-wrapper {
        width: 95%;
    }

    .video-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .video-wrapper {
        width: 100%;
    }

    .video-container {
        border-radius: 0;
    }

    .back-button a {
        font-size: 16px;
        padding: 8px 15px;
    }
}


.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* insight what the sessions button */
/* InsightGallery Section */
.insightgallery-section {
    background:
        linear-gradient(rgba(240, 240, 240, 0.85),
            /* White overlay */
            rgba(240, 240, 240, 0.85)),
        url('../img/approach.jpeg');

    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


/* Button Group Container */
.insightgallery-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

/* Custom Buttons */
.insightgallery-btn {
    background-color: #1279B8;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    flex: 1;
    max-width: 280px;
    min-width: 280px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.insightgallery-btn:hover {
    background-color: #35B45A;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.insightgallery-btn:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 576px) {
    .insightgallery-button-group {
        flex-direction: column;
        gap: 15px;
    }

    .insightgallery-btn {
        width: 100%;
        max-width: 300px;
    }

    .insightgallery-section {
        padding: 60px 20px;
    }
}

 .cd518__section { 
  background-color: #1279B8; /* solid blue background */
  position: relative;
  width: 100%;
  padding: 40px 20px;
  overflow: hidden;
}


    .cd518__inner {
      position: relative;
      z-index: 1;
    }

    .cd518__eyebrow {
      font-weight: 300;
      letter-spacing: 0.4em;
      font-size: clamp(0.75rem, 2vw, 1rem);
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .cd518__title {

      font-size: clamp(2.5rem, 8vw, 5.5rem);
      color: #ffffff;
      text-align: center;
      letter-spacing: 0.08em;
      line-height: 1;
      margin-bottom: 60px;
    }

    .cd518__title-muted {
      color: rgba(255,255,255,0.2);
    }

    .cd518__grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(10px, 3vw, 40px);
      flex-wrap: wrap;
    }

    .cd518__item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .cd518__box {
      position: relative;
      width: clamp(78px, 18vw, 100px);
      height: clamp(28px, 20vw, 70px);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 4px;
      overflow: hidden;
    }

    /* Top-half gloss — scoped to .cd518__box */
    .cd518__box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 50%;
      background: rgba(255,255,255,0.03);
      pointer-events: none;
    }

    /* Centre divider line — scoped to .cd518__box */
   

    .cd518__number {
      font-size: clamp(3rem, 7vw, 2rem);
      color: #D9DDE3;
      line-height: 1;
      position: relative;
      z-index: 1;
      transition: transform 0.15s ease, opacity 0.15s ease;
      user-select: none;
      font-weight: 800;
    }

    .cd518__number--tick {
      transform: scale(0.88);
      opacity: 0.5;
    }

    .cd518__unit-label {
      margin-top: 14px;
      font-weight: 500;
      letter-spacing: 0.3em;
      font-size: clamp(0.6rem, 1.5vw, 0.85rem);
      color: #D9DDE3;
      text-transform: uppercase;
    }

    .cd518__sep {
      font-size: clamp(2rem, 6vw, 4rem);
      color: rgba(255,255,255,0.15);
      padding-bottom: 36px;
      line-height: 1;
      align-self: center;
    }

    .cd518__divider {
      width: 40px;
      height: 1px;
      background: rgba(255,255,255,0.18);
      margin: 28px auto 0;
    }

    .cd518__date-note {
      text-align: center;
      margin-top: 18px;
      font-weight: 300;
      letter-spacing: 0.3em;
      font-size: clamp(0.7rem, 1.5vw, 0.9rem);
      color: rgba(255,255,255,0.2);
      text-transform: uppercase;
    }

    .cd518__date-note-strong {
      color: rgba(255,255,255,0.5);
      font-weight: 500;
    }

    @media (max-width: 480px) {
      .cd518__sep  { display: none; }
      .cd518__grid { gap: 8px; }
    }


.paulakagame-section {
      background-color: #0f172a;
      padding: 40px 20px;
      position: relative;
      overflow: hidden;
    }

    .paulakagame-layout {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .paulakagame-photo {
      flex-shrink: 0;
      width: 300px;
      height: 380px;
      border-radius: 10px;
      object-fit: cover;
      display: block;
    }

    .paulakagame-content {
      flex: 1;
      min-width: 0;
    }

    .paulakagame-quote-text {
      font-size: 18px;
      line-height: 1.6;
      color: #D9DDE3;
      margin: 0;
    }

    .neisa-speaker-name {
      margin-bottom: 0 !important;
      color: #35b45a;
      font-size: 17px;
      font-weight: bold;
      margin-top: 16px;
      text-align: left;
    }

    .neisa-speaker-title {
      color: #35b45a;
      font-size: 15px;
      text-align: left;
      margin-top: 4px;
      margin-bottom: 0;
    }

    .glow-divider {
      width: 100%;
      margin: 14px 0;
      display: block;
      height: auto;
    }

    .paulakagame-body-text {
      font-size: 16px;
      line-height: 1.6;
      color: #D9DDE3;
      margin: 0;
    }

    @media (max-width: 576px) {
      .paulakagame-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
      }
      .paulakagame-photo {
        width: 100%;
        height: 450px;
      }
      .neisa-speaker-name,
      .neisa-speaker-title {
        text-align: center;
      }
    }

     /* ============================================
       PREFIX: global_neclearleadersheap
    ============================================ */

    .global_neclearleadersheap__section {
      background: #0B0E14;
      padding-bottom:40px;
      position: relative;
      overflow: hidden;
    }

    .global_neclearleadersheap__section::before {
      content: '';
      position: absolute;
      top: -120px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(ellipse, rgba(180, 140, 60, 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .global_neclearleadersheap__heading-wrap {
      text-align: center;
      
    }

    .global_neclearleadersheap__eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #b8932a;
      margin-bottom: 14px;
      display: block;
    }

    .global_neclearleadersheap__title {
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 300;
      color: #D9DDE3;
      letter-spacing: -0.5px;
      line-height: 1.1;
      margin: 0;
    }

    .global_neclearleadersheap__title em {
      font-style: italic;
      color: #1279B8;
    }

    .global_neclearleadersheap__divider {
      display: block;
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #b8932a, transparent);
      margin: 22px auto 0;
    }

    /* ---- CARDS ROW ---- */
    .global_neclearleadersheap__row {
      display: flex;
      flex-wrap: nowrap;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }

    .global_neclearleadersheap__card {
      flex: 1 1 0;
      max-width: 240px;
      min-width: 0;
      position: relative;
      cursor: pointer;
    }

    /* Image Container */
    .global_neclearleadersheap__img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 3.2;
      overflow: hidden;
    }

    .global_neclearleadersheap__img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(10, 10, 15, 0.55) 100%
      );
      transition: opacity 0.4s ease;
    }

    .global_neclearleadersheap__card:hover .global_neclearleadersheap__img-wrap::after {
      opacity: 0.7;
    }

    .global_neclearleadersheap__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      filter: grayscale(20%) contrast(1.05);
    }

    .global_neclearleadersheap__card:hover .global_neclearleadersheap__img {
      transform: scale(1.05);
    }

    /* Gold accent bar */
    .global_neclearleadersheap__accent-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #1279B8;
      transition: width 0.4s ease;
      z-index: 2;
    }

    .global_neclearleadersheap__card:hover .global_neclearleadersheap__accent-bar {
      width: 100%;
    }

    /* Info below image */
    .global_neclearleadersheap__info {
      padding: 18px 4px 0;
    }

    .global_neclearleadersheap__name {
      font-size: 20px;
      font-weight: 600;
      color: #D9DDE3;
      margin: 0 0 3px;
      letter-spacing: 0.3px;
      line-height: 1.2;
    }

    .global_neclearleadersheap__role {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #c9a84c;
      margin-bottom: 10px;
      display: block;
    }

    .global_neclearleadersheap__bio {
      font-size: 13px;
      font-weight: 300;
      color: #8a8680;
      line-height: 1.6;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .global_neclearleadersheap__row {
        flex-wrap: wrap;
        justify-content: center;
      }
      .global_neclearleadersheap__card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
      }
    }

    @media (max-width: 480px) {
      .global_neclearleadersheap__card {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }
















     /* ══════════════════════════════════════════════════
       SECTION  .countdown-neisa2026
       All classes prefixed — safe alongside any other countdown
    ══════════════════════════════════════════════════ */

    .countdown-neisa2026 {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
      text-align: center;
      overflow: hidden;
    }

    /* ── Background image layer ── */
    .countdown-neisa2026__bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/programme.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      /* dark overlay filter */
      filter: brightness(0.28) saturate(0.7);
      z-index: 0;
      transform: scale(1.04); /* slight scale to avoid white edges */
    }

    /* ── Extra colour tint overlay ── */
    .countdown-neisa2026__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(0, 10, 30, 0.55) 0%,
        rgba(0, 25, 20, 0.4)  100%
      );
      z-index: 1;
    }

    /* ── Content sits above bg + overlay ── */
    .countdown-neisa2026__inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 920px;
    }

    .countdown-neisa2026__title {
      font-size: clamp(1rem, 3vw, 1.55rem);
      font-weight: 300;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: #d8eaf8;
      margin-bottom: 3.2rem;
      text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    }

    .countdown-neisa2026__grid {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: clamp(1.2rem, 4vw, 3.5rem);
      flex-wrap: wrap;
    }

    .countdown-neisa2026__block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .countdown-neisa2026__ring-wrap {
      position: relative;
      width: clamp(110px, 18vw, 165px);
      height: clamp(110px, 18vw, 165px);
    }

    .countdown-neisa2026__svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }

    .countdown-neisa2026__track {
      fill: none;
      stroke: rgba(255,255,255,0.1);
      stroke-width: 5.5;
    }

    .countdown-neisa2026__arc {
      fill: none;
      stroke-width: 5.5;
      stroke-linecap: round;
      transition: stroke-dashoffset 0.85s cubic-bezier(0.4,0,0.2,1);
    }

    .countdown-neisa2026__arc--days    { stroke: url(#ctn2026-gd); }
    .countdown-neisa2026__arc--hours   { stroke: url(#ctn2026-gh); }
    .countdown-neisa2026__arc--minutes { stroke: url(#ctn2026-gm); }
    .countdown-neisa2026__arc--seconds { stroke: url(#ctn2026-gs); }

    .countdown-neisa2026__num {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(1.9rem, 5vw, 3.2rem);
      font-weight: 300;
      color: #ffffff;
      letter-spacing: 0.02em;
      text-shadow: 0 0 20px rgba(0,230,160,0.25);
    }

    .countdown-neisa2026__unit {
      font-size: clamp(0.55rem, 1.1vw, 0.7rem);
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(200,220,240,0.55);
    }

    /* ── Optional: "image credit" swap instruction ── */
    .countdown-neisa2026__credit {
      position: absolute;
      bottom: 0.8rem;
      right: 1rem;
      font-size: 0.6rem;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.2);
      z-index: 2;
    }

    @media (max-width: 480px) {
      .countdown-neisa2026__grid { gap: 0.9rem; }
    }



    .second_outcomesversion2 {
      background-color: #0B0E14;
      color: #ffffff;
      padding: 80px 0 90px;
      font-family: 'Lato', sans-serif;
    }

    .second_outcomesversion2 .sov2-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 12px;
    }

    .second_outcomesversion2 .sov2-heading {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 600;
      color: #ffffff;
      line-height: 1.25;
      margin-bottom: 16px;
      letter-spacing: 0.04em;
    }

    .second_outcomesversion2 .sov2-rule {
      width: 48px;
      height: 1px;
      background: rgba(255,255,255,0.25);
      margin: 0 auto 28px;
    }

    .second_outcomesversion2 .sov2-paragraph {
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.95;
      max-width: 1200px;
      margin: 0 auto;
      letter-spacing: 0.015em;
      text-align: center;
    }

    .second_outcomesversion2 .sov2-paragraph strong {
      color: #ffffff;
      font-weight: 600;
    }

    .impowering_africa{
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/summit-about.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .impowering_africa {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
  }
}