/* CEO Section Styling */
.ceo-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 50%, #f0f4f8 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ceo-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 117, 205, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ceo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Container */
.ceo-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ceo-image-frame {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #FF0000, #1075CD);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.ceo-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(16, 117, 205, 0.2));
    border-radius: 15px;
    pointer-events: none;
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease;
}

.ceo-image-wrapper:hover .ceo-image {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Decorative Elements */
.ceo-decoration-circle {
    position: absolute;
    border-radius: 50%;
}

.ceo-decoration-circle.small {
    width: 60px;
    height: 60px;
    border: 3px solid #FF0000;
    top: -15px;
    left: -15px;
    animation: float 6s ease-in-out infinite;
}

.ceo-decoration-circle.large {
    width: 100px;
    height: 100px;
    border: 2px solid #1075CD;
    bottom: -25px;
    right: -25px;
    animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Content Container */
.ceo-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ceo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background: linear-gradient(135deg, rgba(16, 117, 205, 0.1), rgba(16, 117, 205, 0.1));
    border: 1px solid rgba(16, 117, 205, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #1075CD;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.ceo-badge-icon {
    font-size: 18px;
}

.ceo-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ceo-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1075CD;
}

.ceo-title span {
    display: block;
}

.ceo-role {
    font-size: 16px;
    font-weight: 600;
    color: #1075CD;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ceo-message {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid #1075CD;
    border-radius: 8px;
    font-style: italic;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ceo-message::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 60px;
    font-weight: bold;
    color: rgba(255, 0, 0, 0.2);
    font-style: normal;
}

.ceo-message:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(16, 117, 205, 0.1);
    border-left-color: #FF0000;
}

.ceo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ceo-stat {
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ceo-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    border-color: #1075CD;
    box-shadow: 0 10px 25px rgba(16, 117, 205, 0.1);
}

.ceo-stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #1075CD, #0d5aa8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.ceo-cta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.ceo-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.ceo-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.ceo-btn:hover::before {
    transform: translateX(100%);
}

.ceo-btn.primary {
    background: linear-gradient(135deg, #1075CD, #0d5aa8);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 117, 205, 0.3);
}

.ceo-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 117, 205, 0.4);
}

.ceo-btn.secondary {
    background: transparent;
    color: #1075CD;
    border: 2px solid #1075CD;
}

.ceo-btn.secondary:hover {
    background: #1075CD;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ceo-section {
        padding: 60px 20px;
    }

    .ceo-section::before {
        width: 250px;
        height: 250px;
        right: -50px;
    }

    .ceo-section::after {
        width: 250px;
        height: 250px;
        left: -50px;
    }

    .ceo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-image-frame {
        max-width: 280px;
        margin: 0 auto;
    }

    .ceo-title {
        font-size: 32px;
    }

    .ceo-message {
        font-size: 16px;
        padding: 20px;
    }

    .ceo-stats {
        grid-template-columns: 1fr;
    }

    .ceo-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .ceo-section {
        padding: 40px 15px;
    }

    .ceo-title {
        font-size: 24px;
    }

    .ceo-message {
        font-size: 14px;
        padding: 15px;
    }

    .ceo-image-frame {
        max-width: 220px;
    }

    .ceo-stat-number {
        font-size: 22px;
    }
}
