/* ABOUT PAGE STYLES */

/* Page Header */
.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.page-header p {
    font-size: 18px;
    color: #f0f0f0;
}

/* Story Section */
.story {
    padding: 80px 0;
}

.story-content {
    padding-right: 40px;
}

.story-text {
    margin-bottom: 20px;
    line-height: 1.8;
}

.signature-block {
    margin-top: 30px;
}

.signature {
    max-width: 150px;
    margin-bottom: 10px;
}

.ceo-name {
    font-weight: 600;
    color: #D4AF37;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #D4AF37;
    color: #000;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}

/* Mission Vision */
.mission-vision {
    padding: 60px 0;
    background: #f8f9fa;
}

.mission-box, .vision-box {
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: .3s;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-box i, .vision-box i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.mission-box h3, .vision-box h3 {
    margin-bottom: 15px;
}

/* Team Section */
.team {
    background: #fff;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: .3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .5s;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: .3s;
}

.team-card:hover .team-social {
    bottom: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #D4AF37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.team-social a:hover {
    transform: scale(1.1);
    background: #fff;
    color: #D4AF37;
}

.team-card h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.team-position {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-bio {
    padding: 0 20px 20px;
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
}

.testimonial-rating {
    color: #D4AF37;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #777;
    font-size: 14px;
}

/* About Stats (override) */
.about-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #0B2545, #1B3A6B);
}

/* Responsive */
@media(max-width: 992px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge .years {
        font-size: 26px;
    }
}

@media(max-width: 768px) {
    .story-content {
        padding-right: 0;
        text-align: center;
    }
    
    .experience-badge {
        right: 10px;
    }
}