/* Profile Hero */
.profile-hero {
    background: url('ceo.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.profile-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.profile-hero h1,
.profile-hero p {
    position: relative;
    z-index: 2;
}

.profile-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.profile-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

/* Profile Section */
.profile-section {
    background-color: #fff;
    padding: 60px 20px;
}

.profile-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.profile-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.profile-values ul {
    list-style: none;
    padding-left: 0;
}

.profile-values ul li {
    padding: 8px 0;
    font-weight: 500;
    color: #333;
}

.profile-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-hero h1 {
        font-size: 2rem;
    }

    .profile-hero p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 14px;
    }
}
/* CEO Section */
.ceo-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.ceo-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ceo-image {
    flex: 1;
    max-width: 300px;
}

.ceo-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ceo-info {
    flex: 2;
}

.ceo-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.ceo-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.ceo-info h3 {
    font-style: italic;
    color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .ceo-container {
        flex-direction: column;
        text-align: center;
    }

    .ceo-info h2 {
        font-size: 1.5rem;
    }

    .ceo-info h3 {
        font-size: 1rem;
    }
}


/* Counter Section */
.counter-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.counter-box {
    text-align: center;
}

.counter-box h3 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 1rem;
    color: #555;
}


