:root {
    --bg-dark: #07090e;
    --text-white: #ffffff;
    --text-muted: #abb8c9;
    --accent-blue: #0084ff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Premium Radial Glow Background instead of Video */
.glow-overlay {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    text-align: center;
    z-index: 10;
}

/* Header Branding */
.logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tagline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.title-bold {
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: rgba(0, 132, 255, 0.08);
    border: 1px solid rgba(0, 132, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
}

/* About Section */
.about-section {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    margin-top: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    max-width: 750px;
}

.about-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 1rem;
    color: #b0c2d3;
    line-height: 1.7;
}

.about-card strong {
    color: var(--accent-blue);
}

/* Team Section Showcase */
.team-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 30px;
    width: 280px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.image-box {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.05);
    background: #111622;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.designation {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Focal Center CEO Layout */
.focal-card {
    width: 320px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 132, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.focal-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
}

.focal-box {
    width: 165px;
    height: 165px;
    border-color: var(--accent-blue);
}

.focal-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.focal-desig {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Action Button */
.notify-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(45deg, #0084ff, #47aeff);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 14px 35px;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 132, 255, 0.2);
    transition: opacity 0.2s ease;
}

.notify-btn:hover {
    opacity: 0.9;
}

/* Footer Section */
.footer {
    margin-top: 60px;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-link {
    color: #475569;
    font-size: 1.4rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem;
    color: #334155;
}

/* Mobile Friendly Config */
@media (max-width: 768px) {
    .team-section {
        flex-direction: column;
        gap: 20px;
    }
    .team-card, .focal-card {
        width: 100%;
    }
    .focal-card {
        order: -1;
    }
}
