/* ================= ROOT ================= */
:root {
    --primary: #1e3a8a;
    --secondary: #0284c7;
    --text-dark: #1f2933;
    --text-muted: #4b5563;
    --bg-light: #f4f6fa;
}

/* ================= CEO SECTION ================= */
.home-ceo {
    padding: 60px 0;
    background: var(--bg-light);
}

.ceo-container {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* ================= TEXT CONTENT ================= */
.ceo-content header {
    margin-bottom: 10px;
}

.ceo-content h2 {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 8px;
}

.dear-students {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.ceo-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-align: justify;
}

/* ================= CTA BUTTON ================= */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    margin-top: 6px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.read-more-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.read-more-btn:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

/* ================= IMAGE ================= */
.ceo-image-wrapper {
    text-align: center;
}

.image-placeholder {
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.ceo-name-label {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .home-ceo {
        padding: 45px 0;
    }

    .ceo-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .ceo-content p {
        text-align: left;
    }

    .image-placeholder {
        max-width: 260px;
    }
}


/* ================= CONTACT CTA ================= */
.contact-cta {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 60px 20px;
}

/* REAL IMAGE (SEO + LCP) */
.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY */
.contact-cta-overlay {
    position: absolute; /* was relative */
    inset: 0;           /* shorthand for top:0; left:0; right:0; bottom:0 */
    z-index: 1;
    background: linear-gradient(
        rgba(30, 58, 138, 0.2),
        rgba(2, 132, 199, 0.2)
    );
    display: grid;
    place-items: center;
}

.contact-cta-content {
    max-width: 900px;
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* CTA BUTTON */
.cta-btn {
    padding: 14px 36px;
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .ceo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        min-height: 360px;
    }
}
