.about-hero {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5f 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 120px 0 60px;
} 

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M10 10 L90 10 L90 90 L10 90 Z" fill="none" stroke="%23FF6A00" stroke-width="2"/><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFFFFF" stroke-width="2"/><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23FF6A00" stroke-width="1.5"/></svg>');
    background-size: 60px 60px;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,106,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-title span {
    color: var(--accent);
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--accent);
}

.hero-breadcrumb i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* CEO spotlight layout  */
.ceo-spotlight {
    padding: var(--space-2xl) 0 var(--space-xl);
    background: white;
}
.ceo-content {
    /* padding-right: 2rem; */
}
.ceo-content .section-subtitle {
    margin-bottom: 0.5rem;
    display: inline-block;
}
.ceo-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.ceo-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.registration-badge {
    background: rgba(255,106,0,0.12);
    color: var(--accent);
    padding: 0.5rem 1.8rem;
    border-radius: 40px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px dashed var(--accent);
    margin-top: 0.5rem;
}
.ceo-image-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 40px rgba(11,37,69,0.15);
    transition: var(--transition-slow);
    border: 4px solid white;
    outline: 2px solid var(--accent);
    /* max-width: 400px;
    margin-left: auto; */
}
.ceo-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 50px rgba(255,106,0,0.2);
}
.ceo-image-card img {
    width: 100%;
    height: auto;
    display: block;
}
.ceo-image-card .ceo-caption {
    background: var(--primary);
    color: white;
    padding: 15px 10px;
    text-align: center;
}
.ceo-image-card .ceo-caption h4 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
}
.ceo-image-card .ceo-caption p {
    margin: 5px 0 0;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}
.ceo-image-card .team-social a {
    color: var(--light);
    background: rgba(207, 110, 20, 0.8);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

 /* team grid (unchanged) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: var(--transition-slow);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}
.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px rgba(255,106,0,0.15);
    border-color: var(--accent);
}
.team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    background-color: #f0f2f5;
    transition: transform 0.5s;
}
.team-card:hover .team-img {
    transform: scale(1.02);
}
.team-info {
    padding: 20px 15px 25px;
}
.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary);
    font-weight: 700;
}
.team-info .position {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.team-info .bio-short {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
    padding: 0 5px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    color: var(--primary);
    background: rgba(11,37,69,0.05);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}
.team-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* CTA */
.about-cta {
    background: var(--light);
    position: relative;
    color: #2e2e2e;;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.3"><path d="M10 10 L90 10 L90 90 L10 90 Z" fill="none" stroke="%23FF6A00" stroke-width="1"/><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFFFFF" stroke-width="1"/></svg>');
    background-size: 30px 30px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    z-index: 2;
}
.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.about-cta .btn {
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {}
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding: 100px 0 40px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .team-img { 
        height: 500px; 
    }
}
@media (max-width: 576px) {}