/* About Us Page Styles */

/* Page Header */
.page-header {
    padding: 60px 0;
    background-color: var(--primary);
    position: relative;
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: #fff;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Section Titles */
.section-title .title {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.title-border {
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    margin-bottom: 20px;
}

.text-center .title-border {
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Feature Boxes */
.feature-box {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.5rem;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
}

.vision-box, .mission-box {
    height: 100%;
    transition: all 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-detail-card {
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-card .d-flex {
    display: flex !important;
    align-items: center !important;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.value-card {
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon i {
    color: #0d6efd;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    transition: all 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(13, 110, 253, 0.8);
    padding: 10px 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 30px 15px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 40px 0;
    }
    
    .about-section, 
    .vision-mission-section,
    .values-section,
    .testimonials-section,
    .team-section,
    .stats-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: 10px;
        right: 10px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
}