/* Updates */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.updates-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Bottom Navigation */
.bottom-nav2 {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bottom-nav2.hidden {
    opacity: 0;
    visibility: hidden;
}

.nav2-arrow {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav2-arrow:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
}

.nav2-arrow.active {
    background: #333;
    color: white;
}

.nav2-arrow::after {
    content: attr(data-label);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.nav2-arrow:hover::after {
    opacity: 1;
    top: -45px;
}

.section-indicator {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 150px;
    text-align: center;
}

/* Hide bottom nav on mobile */
@media (max-width: 768px) {
    .bottom-nav2 {
        bottom: 15px;
        padding: 12px 20px;
        gap: 15px;
    }

    .nav2-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .section-indicator {
        font-size: 12px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .section-indicator {
        display: contents;
    }
}

/* Section divider */
.section-divider {
    height: 80px;
    background: linear-gradient(to bottom, #f5f5f5, white, #f5f5f5);
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #333, transparent);
}

/* Section Container */
.updates-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    scroll-margin-top: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 25px;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #000000;
}

/* Events Section */
.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.month-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.month-header {
    background: linear-gradient(165deg, #3f4882 30%, #7484e6 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.month-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #ffffff;
}

.month-header p {
    font-size: 14px;
    opacity: 0.9;
    color: #ffffff;
}

.events-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
}

/* Custom Scrollbar */
.events-scroll::-webkit-scrollbar {
    width: 8px;
}

.events-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.events-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.events-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.event-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-item:last-child {
    margin-bottom: 0;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #667eea;
    font-weight: 600;
}

.event-date .icon {
    font-size: 20px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.event-details {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.status-upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.status-today {
    background: #fff3e0;
    color: #f57c00;
}

.status-soon {
    background: #f3e5f5;
    color: #7b1fa2;
}

/* Jobs Section */
.jobs-scroll {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.jobs-scroll::-webkit-scrollbar {
    width: 8px;
}

.jobs-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.jobs-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.jobs-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.job-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.job-card:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.job-title {
    flex: 1;
}

.job-title h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.job-company {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.job-type {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.type-fulltime {
    background: #e8f5e9;
    color: #2e7d32;
}

.type-parttime {
    background: #fff3e0;
    color: #f57c00;
}

.type-contract {
    background: #e3f2fd;
    color: #1976d2;
}

.type-remote {
    background: #f3e5f5;
    color: #7b1fa2;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.job-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.skill-tag {
    padding: 5px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 13px;
    color: #555;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.job-posted {
    font-size: 13px;
    color: #999;
}

.apply-btn {
    padding: 10px 30px;
    background: #333;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Advertisement Sections */
.ads-section-header {
    margin-bottom: 30px;
}

.ads-section-header h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ads-section-header h3 .icon {
    font-size: 35px;
}

.ads-section-header p {
    color: #666;
    font-size: 16px;
    margin-left: 47px;
}

.posters-scroll,
.videos-scroll {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.posters-scroll::-webkit-scrollbar,
.videos-scroll::-webkit-scrollbar {
    width: 8px;
}

.posters-scroll::-webkit-scrollbar-track,
.videos-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.posters-scroll::-webkit-scrollbar-thumb,
.videos-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.posters-scroll::-webkit-scrollbar-thumb:hover,
.videos-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Posters Grid */
.posters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Poster Item */
.poster-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.poster-item:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.poster-image {
    width: 100%;
    height: 280px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poster-item:hover .poster-image img {
    transform: scale(1.1);
}

.poster-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.poster-info {
    padding: 20px;
}

.poster-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.poster-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.poster-date {
    font-size: 12px;
    color: #999;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

/* Video Item */
.video-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.video-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.video-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state .icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .events-container {
        grid-template-columns: 1fr;
    }

    .posters-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .updates-section {
        padding: 25px;
    }

    .section-header h1 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .top-nav-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .job-header {
        flex-direction: column;
    }

    .job-type {
        align-self: flex-start;
    }

    .poster-image {
        height: 220px;
    }

    .posters-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .updates-section {
        padding: 20px;
    }

    .section-header h1 {
        font-size: 26px;
    }

    .events-scroll {
        max-height: 350px;
    }

    .jobs-scroll {
        max-height: 500px;
    }

    .posters-scroll,
    .videos-scroll {
        max-height: 450px;
    }

    .poster-image {
        height: 200px;
    }
}































/* Bird */

/* sponsers */
/* ========== SPONSORS ========== */
.sponsor-section {
    padding: 20px 0 40px;
    background: #f9f9ff;
}

.sponsor-tier-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-gold {
    color: #b8860b;
}

.badge-platinum {
    color: #888;
}

.badge-bronze {
    color: #b5651d;
}

.title-sponsor-carousel {
    overflow: hidden;
    position: relative;
    padding: 10px 300px;
}

.title-sponsor-track {
    display: flex;
    gap: 20px;
    animation: sponsorScroll 20s linear infinite;
    width: max-content;
}

.title-sponsor-track:hover {
    animation-play-state: paused;
}

.title-sponsor-card {
    flex: 0 0 160px;
    background: #fff;
    border-radius: 18px;
    padding: 15px 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    transition: transform 0.3s;
}

.title-sponsor-card:hover {
    transform: translateY(-6px);
}

.tier-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.tier-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
}

.tier-badge.platinum {
    background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
    color: #fff;
}

.tier-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #a0522d);
    color: #fff;
}

.title-sponsor-card img {
    width: 180px;
    height: 150px;
    object-fit: contain;
}

.title-sponsor-card .sponsor-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

@keyframes sponsorScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.regular-sponsor-section {
    padding: 40px 0 60px;
    background: #fff;
}








/* ========== ABOUT TEXT ========== */
.video-container2 {
    background: linear-gradient(135deg, #f4f6ff, #e8ecff);
    border-radius: 16px;
    padding: 32px;
    animation:fadeUp .5s .2s ease both;
}


.highlight-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f4882, #6472c8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-text h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-text p {
    font-size: 14px;
    color: #000000;
    margin: 0;
    font-weight: 600;
}




/* ========== GALLERY ========== */
#gallery-section {
    padding: 70px 0;
    background: #f9f9ff;
}

.gallery-centre-stage {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 200px;
    gap: 12px;
    margin-bottom: 32px;
}

@media(max-width:768px) {
    .gallery-centre-stage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

.gallery-main {
    grid-row: span 2;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-main img,
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.gallery-main:hover img,
.gallery-thumb:hover img {
    transform: scale(1.04);
}

.gallery-thumb {
    border-radius: 14px;
    overflow: hidden;
}

.gallery-event-block {
    margin-bottom: 32px;
}

.gallery-event-block h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #3f4882;
}

.gallery-event-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

@media(max-width:900px) {
    .gallery-event-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:500px) {
    .gallery-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-event-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-event-grid img:hover {
    transform: scale(1.05);
}

.view-more-gallery {
    display: none;
}

.view-more-gallery.open {
    display: grid;
}

.gallery-view-btn {
    background: linear-gradient(135deg, #3f4882, #6472c8);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 14px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

@media(max-width:991px) {
    .banner-logo-animated img {
        width: 100px;
    }

    .banner-logo-animated {
        top: 80px;
        right: 16px;
    }
}

@media(max-width:600px) {
    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 16px;
    }
}




















/* ========== MEMBERS ========== */
#members-section {
    padding: 70px 0;
    background: #f9f9ff;
}

.member-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
}

.member-cat-btn {
    padding: 8px 20px;
    border-radius: 24px;
    border: 2px solid #3f4882;
    background: transparent;
    color: #3f4882;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.member-cat-btn.active,
.member-cat-btn:hover {
    background: #3f4882;
    color: #fff;
}

.member-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(max-width:900px) {
    .member-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .member-cards-grid {
        grid-template-columns: 1fr;
    }
}

.member-listing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.member-listing-card:hover {
    transform: translateY(-4px);
}

.member-listing-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.member-listing-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.member-listing-card .biz-name {
    font-size: 13px;
    color: #6472c8;
    font-weight: 600;
    margin-bottom: 4px;
}

.member-listing-card .cat-label {
    font-size: 12px;
    color: #888;
}

.member-listing-card .contact-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #3f4882, #6472c8);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
}










/* ========== OUR HUBS ========== */
#our-hubs {
    padding: 70px 0;
    /* background: #f9f9ff; */
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media(max-width:1100px) {
    .hubs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:700px) {
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:420px) {
    .hubs-grid {
        grid-template-columns: 1fr;
    }
}

.hub-card {
    border-radius: 130px;
    height: 200px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    perspective: 800px;
}
/* Large screens */
@media (min-width: 1200px) {
    .hub-card {
        height: 200px;
    }
}
/* Tablets */
@media (max-width: 991px) {
    .hub-card {
        height: 250px;
        border-radius: 12px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hub-card {
        height: 100px;
        border-radius: 70px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    }
}


.hub-card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.hub-card:hover .hub-card-inner {
    transform: rotateY(180deg);
}

.hub-front,
.hub-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hub-front {
    background: linear-gradient(270deg, #d7bd44 30%, #fae790 100%);
    overflow: hidden;
}

.hub-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: brightness(0.7); */
}

.hub-front-label {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(135deg, #3f4882, #6472c8); */
    padding: 10px 10px 10px 10px;
    width: 180px;
    border-radius: 10px;
    color: #000000;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
}

.hub-back {
    background: linear-gradient(135deg, #3f4882, #6472c8);
    transform: rotateY(180deg);
    padding: 20px;
    color: #fff;
    text-align: center;
}

.hub-back h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.hub-back p {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.hub-back .hub-location {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px;
    color: #ffffff;
}























/* ========== EVENTS ========== */
#bship-events-section {
    padding: 70px 0 0;
    background: #fff;
}

.events-tabs-header {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid #e0e0e0;
}

.events-tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 15px;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.events-tab-btn.active {
    color: #3f4882;
    border-bottom-color: #3f4882;
}

.bship-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media(max-width:900px) {
    .bship-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .bship-events-grid {
        grid-template-columns: 1fr;
    }
}

.bship-event-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s;
}

.bship-event-card:hover {
    transform: translateY(-4px);
}

.bship-event-card .event-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.bship-event-card .event-body {
    padding: 16px;
}

.bship-event-card .event-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6472c8;
    font-weight: 700;
    margin-bottom: 6px;
}

.bship-event-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.bship-event-card .event-meta {
    font-size: 13px;
    color: #888;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hub-meetings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hub-meeting-item {
    background: #f4f6ff;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: box-shadow 0.3s;
}

.hub-meeting-item:hover {
    box-shadow: 0 4px 20px rgba(63, 72, 130, 0.13);
}

.hub-meeting-date {
    background: #3f4882;
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 64px;
    flex-shrink: 0;
}

.hub-meeting-date .day {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.hub-meeting-date .month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hub-meeting-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.hub-meeting-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.hub-meeting-info .meta {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}


















/* TEAM EC */