/**
 * About Page Styles
 * 
 * @package Bombay_Beats_Studios
 */

/* Story Section */
.story__content {
    color: #fff;
}


.stats__item img, .stats__item svg {
    vertical-align: middle;
    width: 20px;
}

.story__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.facility__item img, .facility__item svg {
    vertical-align: middle;
    width: 20px;
}

/* Mission & Vision */
.mission__item,
.vision__item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mission__item:hover,
.vision__item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.mission__icon,
.vision__icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, #2690FF 0%, #1a73e8 100%);
    border-radius: 50%;
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: #fff;
}

.mission__title,
.vision__title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.mission__content p,
.vision__content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Facilities */
.facility__item {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.facility__item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.facility__icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
}

.facility__content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.facility__content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

/* Team */
.team__item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team__thumb {
    overflow: hidden;
}

.team__thumb img {
    width: 100%;
    transition: transform 0.3s ease;
}

.team__item:hover .team__thumb img {
    transform: scale(1.1);
}

.team__content {
    padding: 25px 20px;
    text-align: center;
}

.team__content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.team__designation {
    display: block;
    color: #2690FF;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team__content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team__social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team__social a:hover {
    background: #2690FF;
    color: #fff;
}

/* Statistics */
.stats__item {
    color: #fff;
}

.stats__icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 36px;
}

.stats__number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stats__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta__content {
    color: #fff;
}

.cta__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta__btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta__btn .ms-border-btn {
    padding: 15px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta__btn .ms-border-btn:hover {
    background: #fff;
    color: #667eea;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cta__title {
        font-size: 28px;
    }
    
    .cta__text {
        font-size: 16px;
    }
    
    .stats__number {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .mission__item,
    .vision__item,
    .facility__item {
        padding: 25px 20px;
    }
    
    .cta__btn {
        flex-direction: column;
        align-items: center;
    }
    
    .cta__btn .ms-border-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats__icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 28px;
    }
    
    .stats__number {
        font-size: 32px;
    }
}
