/* ======================================
   ABOUT US PAGE STYLES
   ====================================== */

/* ===== PAGE HEADER / BREADCRUMB ===== */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,62,126,0.9), rgba(165,25,93,0.8));
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header-content {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
}

.breadcrumb-item.active {
    color: var(--primary-red);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "→";
    color: rgba(255,255,255,0.6);
}

/* ===== ABOUT INTRODUCTION ===== */
.about-intro {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(227,30,36,0.3);
    border: 5px solid var(--white);
}

.badge-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.badge-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.badge-content p {
    font-size: 0.9rem;
    margin: 5px 0 0;
}

.about-content {
    padding-left: 30px;
}

.section-subtitle-badge {
    display: inline-block;
    background: rgba(227,30,36,0.1);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-navy), #0056b3);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    margin-top: 25px;
    position: relative;
}

.highlight-box i {
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.highlight-box .highlight-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    padding-left: 40px;
}

/* ===== MISSION & VISION ===== */
.mission-card, .vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
    border-color: var(--primary-navy);
    transform: translateY(-5px);
}

.mission-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), #0056b3);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.vision-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-magenta), #d41868);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p, .vision-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-points, .vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li, .vision-points li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-points li i, .vision-points li i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* ===== CORE VALUES ===== */
.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-navy);
    transform: rotateY(360deg);
}

.value-card h4 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===== FEATURE CARDS (Why Choose Us) ===== */
.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    border-color: var(--primary-navy);
    transform: translateX(5px);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,62,126,0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-magenta), #d41868);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-navy);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===== STATISTICS COUNTER ===== */
.stats-counter {
    background: linear-gradient(135deg, var(--primary-navy), #0056b3);
    color: var(--white);
    position: relative;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.5;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 2px solid rgba(255,255,255,0.2);
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-item .counter::after {
    content: '+';
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ===== TEAM CARDS ===== */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    border-color: var(--primary-navy);
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-info .designation {
    display: block;
    color: var(--primary-magenta);
    font-weight: 500;
    margin-bottom: 5px;
}

.team-info .experience {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== CALL TO ACTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-magenta), #d41868);
    color: var(--white);
}

.cta-wrapper {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
}

.cta-wrapper h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-wrapper p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
}

.btn-white-custom {
    background: var(--white);
    color: var(--primary-magenta);
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-white-custom:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    border: 2px solid var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-magenta);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }

    .badge-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-item .counter {
        font-size: 2.5rem;
    }

    .cta-wrapper {
        padding: 30px 20px;
        text-align: center;
    }

    .cta-wrapper h2 {
        font-size: 1.5rem;
    }

    .btn-white-custom,
    .btn-outline-white {
        width: 100%;
        margin-top: 10px;
    }

    .feature-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .mission-card, .vision-card {
        padding: 30px 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Animation Script */
.counter {
    display: inline-block;
}