/* About Page Specific Styles */

/* Breadcrumb Styles */
.breadcumb-wrapper {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.breadcumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.breadcumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcumb-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.breadcumb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcumb-menu li {
    color: white;
    font-size: 16px;
}

.breadcumb-menu li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcumb-menu li a:hover {
    color: #007bff;
}

.breadcumb-menu li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #ccc;
}

/* About Features */
.about-feature-wrap {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.about-feature_icon {
    color: #28a745;
    font-size: 20px;
}

.about-feature_content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.about-feature_content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Mission & Vision Cards */
.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.mission-card_icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.mission-card_title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.mission-card_text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 16px;
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #007bff;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: 0 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 0 20px;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Value Cards */
.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.value-card_icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
}

.value-card_title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.value-card_text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
}

/* Counter Cards */
.counter-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.counter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.counter-card_icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.counter-card_number {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.counter-card_text {
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #007bff;
    color: white;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-title a:hover {
    color: #007bff;
}

.team-desig {
    color: #6c757d;
    font-size: 14px;
}

/* CTA Section */
.cta-area {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .timeline-wrapper::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }

    .timeline-year {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin-left: 0;
    }.text-white {
        color: #212529 !important;   }
}

@media (max-width: 767px) {
    .breadcumb-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 28px;
    }

    .timeline-content {
        padding: 20px;
    }

    .mission-card,
    .value-card {
        padding: 30px 20px;
    }
}