/* Page Header */
.page-header {
    padding: 160px 0 100px;
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
    border: none;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 18px;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    object-fit: cover;
    height: 430px;
    transition: transform 0.5s ease;
}

.approach-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.approach-image img {
    width: 100%;
    object-fit: cover;
    height: 350px;
    transition: transform 0.5s ease;
}


.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: #25aae1;
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 170, 225, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
}

.mv-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: #f5f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #25aae1;
    font-size: 32px;
}

.mv-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.mv-item p {
    color: #666;
    text-align: center;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(37, 170, 225, 0.9);
    padding: 15px 0;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #fff;
    color: #25aae1;
    transform: translateY(-5px);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.team-info p {
    color: #25aae1;
    margin-bottom: 0;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Signature */
.signature {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.signature img {
    max-width: 120px;
    margin-right: 20px;
}

.signature-info h5 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #1a1a1a;
}

.signature-info p {
    margin-bottom: 0;
    color: #666;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .page-title {
        font-size: 36px;
    }

    .experience-badge {
        right: 15px;
        padding: 15px 20px;
    }

    .experience-badge .years {
        font-size: 32px;
    }

    .mv-item {
        margin-bottom: 30px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 70px;
    }

    .page-title {
        font-size: 20px;
    }

    .experience-badge {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }

    .signature {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .signature img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


.wp-link-share {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wp-link-share a {
    width: 45px;
    height: 45px;
    background: #25d366;
    /* WhatsApp green default */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s ease;
}

.wp-link-share a:first-child {
    background: #333;
    /* Dark color for share icon */
}

.wp-link-share a:hover {
    opacity: 0.9;
}