﻿/* About Page Styles */

/* General Styles */
.section-title {
    margin-bottom: 2.5rem;
}

    .section-title .subtitle {
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 600;
        color: #0d6efd;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
        letter-spacing: 1px;
    }

    .section-title .title {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        color: #212529;
    }

        .section-title .title:after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: #0d6efd;
            margin-top: 15px;
        }

    .section-title.text-center .title:after {
        margin-left: auto;
        margin-right: auto;
    }

/* Hero Section */
.hero-about-section {
    min-height: 500px;
    position: relative;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-white-outline {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

    .btn-white-outline:hover {
        background: #fff;
        color: #0d6efd;
    }

.scroll-down {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* About Section */
.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
}

    .experience-badge .inner {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #0d6efd;
    }

    .experience-badge .number {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.about-feature:hover .icon-box {
    background-color: #0d6efd;
    color: #fff;
    transform: translateY(-5px);
}

.signature {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .service-card .icon-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: rgba(13, 110, 253, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

        .service-card .icon-wrapper i {
            color: #0d6efd;
            font-size: 2rem;
        }

    .service-card:hover .icon-wrapper {
        background-color: #0d6efd;
    }

        .service-card:hover .icon-wrapper i {
            color: #fff;
        }

    .service-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .service-card p {
        color: #6c757d;
        margin-bottom: 1.5rem;
    }

.btn-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .btn-link i {
        margin-left: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-link:hover {
        color: #0a58ca;
    }

        .btn-link:hover i {
            transform: translateX(5px);
        }

/* Why Choose Us */
.why-choose-image {
    position: relative;
}

.stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 80%;
    overflow: hidden;
}

.stat-item {
    background-color: #fff;
    transition: all 0.3s ease;
}

    .stat-item:hover {
        background-color: #f8f9fa;
    }

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d6efd;
}

.stat-label {
    color: #6c757d;
    font-size: 0.875rem;
}

.number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Team Section */
.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.member-image {
    position: relative;
    overflow: hidden;
}

    .member-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: all 0.5s ease;
    }

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(13, 110, 253, 0.9);
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        transform: translateY(-3px);
    }

.member-info {
    padding: 1.5rem;
}

    .member-info .name {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .member-info .position {
        color: #0d6efd;
        font-weight: 600;
        display: block;
        margin-bottom: 1rem;
    }

    .member-info .bio {
        color: #6c757d;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

/* Achievements Section */
.achievement-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%), url('/images/about/pattern-bg.jpg');
    background-size: cover;
    background-position: center;
}

.stat-box {
    background: #fff;
    transition: all 0.3s ease;
}

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.stat-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.achievement-card {
    height: 100%;
}

.certification-icon {
    color: #0d6efd;
    font-size: 2rem;
}

/* Client Section */
.client-logo-item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .client-logo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.testimonial-card {
    position: relative;
    background: #fff;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    }
