/* Banner */
.cu-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(217, 119, 6, 0.06) 50%, rgba(5, 150, 105, 0.04) 100%);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(3px);
}

.cu-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
}

.cu-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: cuFadeInUp 0.8s 0.15s ease-out both;
}

    .cu-banner-tag .pulse-dot {
        width: 6px;
        height: 6px;
        background: var(--accent-gold);
        border-radius: 50%;
        animation: cuPulse 2s ease-in-out infinite;
    }

.cu-banner-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
    animation: cuFadeInUp 0.8s 0.25s ease-out both;
}

.cu-banner-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: cuFadeInUp 0.8s 0.35s ease-out both;
}

.cu-banner-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
    margin: 24px auto 0;
    animation: cuExpandLine 0.8s 0.5s ease-out both;
}
/* Content */
.cu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* Top Bar */
.cu-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
    animation: cuFadeInUp 0.8s 0.4s ease-out both;
}

.cu-topbar-logo img {
    height: 80px !important;
}

.cu-follow {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cu-follow-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.cu-follow-icons {
    display: flex;
    gap: 8px;
}

.cu-follow-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.cu-follow-icon i {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.cu-follow-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.cu-follow-icon.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.08);
}

.cu-follow-icon.facebook:hover i {
    color: #1877f2;
}

.cu-follow-icon.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.08);
}

.cu-follow-icon.instagram:hover i {
    color: #e4405f;
}

.cu-follow-icon.twitter:hover {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.08);
}

.cu-follow-icon.twitter:hover i {
    color: #1da1f2;
}

.cu-follow-icon.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.08);
}

.cu-follow-icon.youtube:hover i {
    color: #ff0000;
}

.cu-follow-icon.linkedin:hover {
    border-color: #0a66c2;
    background: rgba(10, 102, 194, 0.08);
}

.cu-follow-icon.linkedin:hover i {
    color: #0a66c2;
}

.cu-follow-icon.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.08);
}

.cu-follow-icon.whatsapp:hover i {
    color: #25d366;
}

/* Team Grid */
.cu-team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 60px;
}

.cu-team-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(40px);
    animation: cuFadeInUp 0.7s ease-out forwards;
}

.cu-team-card:nth-child(1) {
    animation-delay: 0.5s;
}

.cu-team-card:nth-child(2) {
    animation-delay: 0.65s;
}

.cu-team-card:nth-child(3) {
    animation-delay: 0.8s;
}

.cu-team-card:hover {
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.08), 0 0 0 1px rgba(5, 150, 105, 0.06);
    transform: translateY(-8px) scale(1.02);
}

.cu-avatar-wrap {
    width: 240px;
    height: 240px;
    margin: 0 auto 18px;
    border-radius: 13%;
    overflow: hidden;
    border: 3px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
}

.cu-team-card:hover .cu-avatar-wrap {
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.cu-avatar-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cu-team-card:hover .cu-avatar-wrap::before {
    opacity: 1;
}

.cu-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.cu-team-card:hover .cu-avatar-wrap img {
    transform: scale(1.1);
}

.cu-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.cu-role {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.cu-linkedin {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.cu-linkedin i {
    font-size: 21px;
    color: #0a66c2;
}

.cu-linkedin:hover {
    background: rgba(10, 102, 194, 0.1);
    border-color: #0a66c2;
    transform: translateY(-2px);
}

.cu-contact {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.cu-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px;
}

.cu-contact-item i {
    font-size: 18px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.cu-contact-item:hover {
    color: var(--primary-green);
}

.cu-contact-item:hover i {
    transform: scale(1.2);
}

/* Section Title */
.cu-section-title {
    text-align: center;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: cuFadeInUp 0.7s 0.9s ease-out forwards;
}

.cu-section-title span {
    color: var(--primary-green);
}

/* Conference Card (centered single) */
.cu-conference-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: cuFadeInUp 0.7s 1.0s ease-out forwards;
}

.cu-conference-wrap .cu-team-card {
    max-width: 320px;
    width: 100%;
    animation: cuFadeInUp 0.7s 1.1s ease-out forwards;
}

/* Partners Grid */
.cu-partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.cu-partner-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(40px);
    animation: cuFadeInUp 0.7s ease-out forwards;
    min-height: 380px;
}

.cu-partner-card:nth-child(1) {
    animation-delay: 1.2s;
}

.cu-partner-card:nth-child(2) {
    animation-delay: 1.35s;
}

.cu-partner-card:hover {
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.08);
    transform: translateY(-8px) scale(1.02);
}

.cu-partner-logo {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cu-partner-logo img {
    max-height: 100%;
    max-width: 190px;
    object-fit: contain;
}

.cu-partner-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cu-partner-contact {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.cu-partner-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cu-partner-info a,
.cu-partner-info span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cu-partner-info a:hover {
    color: var(--primary-green);
}

.cu-partner-info i {
    font-size: 13px;
    color: var(--primary-green);
}

.cu-partner-info .web-link i {
    color: var(--accent-orange);
}

.cu-partner-info .web-link:hover {
    color: var(--accent-orange);
}

/* Bottom Bar */
.cu-bottombar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    opacity: 0;
    animation: cuFadeInUp 0.7s 1.5s ease-out forwards;
}

.cu-bottom-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
}

.cu-bottom-item i {
    font-size: 18px;
    color: var(--primary-green);
}

.cu-bottom-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.cu-bottom-item a:hover {
    color: var(--primary-green);
}



/* Responsive */
@media (max-width: 768px) {

    /* .cu-team-card{
         padding:15px;
         position:relative;
         overflow:hidden;
         min-height:500px;
         width:300px;
         display: flex;
         flex-direction: column;
         justify-content: end;
         align-items: start;
     }
     .cu-team-card::before{
         content:'';
         position:absolute;
         inset:0;
         background:linear-gradient(to top,#ffffff66 30%,transparent 100%);
         z-index:1;
     }
     .cu-avatar-wrap{
         position:absolute;
         inset:0;
         width:100%;
         height:100%;
         border-radius:0;
         overflow:hidden;
         z-index:0;
         
     }
     .cu-name{
         position:relative;
     } */
    .cu-team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto 60px;
    }

    .cu-partners-grid {
        grid-template-columns: 1fr;
    }

    .cu-topbar {
        justify-content: center;
        text-align: center;
    }

    .cu-bottombar {
        flex-direction: column;
        text-align: center;
    }
}