.subsector-hero h1,
.subsector-hero p {
    animation: fadeInDown 1.2s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CEO Section Fade-in */
.ceo-text, 
.ceo-image-wrapper {
    animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CEO Image hover zoom */
.ceo-image-wrapper img {
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ceo-image-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0,0,0,0.25);
}

.ceo-message {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 60px 0;
    font-family: 'Poppins', 'Arial', sans-serif;
    color: #000000;
}

.ceo-name {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #2b3a90; /* Dark Blue */
    margin-bottom: 5px;
}

.ceo-title {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size:18px;
    color: #000000;
    margin-bottom: 20px;
}

.intro-text {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}

.ceo-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    display: inline-block;
    padding: 10px;
    background: #fff;
    border: 2px solid #eaeaea;
    box-shadow: 6px 6px 0 #2b3a90; /* blue shadow border effect */
}

.image-frame img {
    display: block;
    border-radius: 2px;
    max-width: 100%;
    height: auto;
}

.ceo-bottom-text p {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
}


/* Vertical Blue Line with rounded corners */
.blue-line-box {
    border-left: 12px solid #2b3a90; /* wider blue line */
    border-radius: 12px;
    padding: 15px;
    padding-left: 25px;
    margin-left: 0;
    animation: fadeInBorder 1.5s ease-in-out;
    background: rgba(0, 123, 255, 0.03); /* very light background */
}

@keyframes fadeInBorder {
    from {
        border-left-color: transparent;
    }
    to {
        border-left-color: #007BFF;
    }
}

.blue-line-box p {
    line-height: 1.7;
    font-size: 15px;
    text-align: justify;
}