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

: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 ================= */
.modern-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}


/* Background & Full-Width Fix */
.banner-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    /* Richer gradient for a more 'luxury' feel */
    background: linear-gradient(90deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.6) 45%,
            rgba(15, 23, 42, 0) 100%);
}

.banner-container {
    width: 100%;

    /* This keeps your text aligned with the rest of the site */
    margin: 0 auto;
    padding: 0 40px;
}

/* Content Styling */
.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.banner-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    /* Slightly smaller for 400px height */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.banner-title span {
    color: #0ea5e9;
}

.banner-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 24px;
}

.banner-title,
.banner-text {
    margin-top: 0;
}

/* Button & Action area */
.banner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-modern {
    background: white;
    color: #0f172a;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.banner-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .modern-banner {
        height: auto;
        padding: 60px 0;
        text-align: center;
    }

    .banner-container {
        padding: 0 20px;
    }

    .banner-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-modern {
        width: 100%;
    }

    .banner-overlay {
        background: rgba(15, 23, 42, 0.85);
    }
}

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

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


/* 4th section */

.journey-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    /* gap: 40px; */
    padding: 10px;
}

/* Left Side Text Content */
.content-side {
    flex: 1;
}

.content-side h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: #6a1b9a;
    /* Deep Purple */
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.content-side p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-journey {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border: 2px solid #6a1b9a;
    border-radius: 50px;
    color: #6a1b9a;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.btn-journey:hover {
    background-color: #6a1b9a;
    color: white;
}

/* Right Side Image with Hover */
.image-side {
    flex: 1;
    overflow: hidden;
    /* Clips the image when it zooms */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-side img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    /* Smooth hover transition */
}

.image-side:hover img {
    transform: scale(1.1);
    /* Zoom effect */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .journey-section {
        flex-direction: column;
        padding: 20px;
    }

    .content-side h1 {
        font-size: 32px;
    }
}
