/* ============================================
   About Us Page Styles
   ============================================ */

.about-hero-banner {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.about-hero-banner .hero-content {
    position: relative;
    z-index: 10;
}
.about-hero-banner .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}
.about-hero-banner .hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}
.about-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(252,80,70,0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}
.about-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100,181,246,0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.about-hero-banner .decorative-shape {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}
.about-hero-banner .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: 10%;
    animation: float 15s ease-in-out infinite;
}
.about-hero-banner .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 15%;
    animation: float 12s ease-in-out infinite reverse;
}
.about-hero-banner .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 5%;
    border-color: rgba(252,80,70,0.2);
    animation: float 10s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.about-section {
    padding: 80px 0;
}
.about-section.bg-light-gray {
    background: #f8f9fa;
}
.about-section.bg-primary-gradient {
    background: linear-gradient(135deg, #31287e 0%, #283593 100%);
    color: #fff;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fc5046 0%, #e53935 100%);
    color: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-custom {
    font-size: 2.5rem;
    font-weight: 700;
    color: #31287e;
    margin-bottom: 20px;
    position: relative;
}
.section-title-custom::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fc5046, #ffc107);
    border-radius: 2px;
}
.section-title-custom.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-title-custom.text-white {
    color: #fff;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.about-image-wrapper:hover img {
    transform: scale(1.05);
}
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fc5046, #ffc107);
    border-radius: 50%;
    z-index: -1;
}
.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #31287e, #3949ab);
    border-radius: 50%;
    z-index: -1;
}

/* Why Choose Section */
.why-choose-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}
.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-left-color: #fc5046;
}
.why-choose-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fc5046 0%, #ff7043 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.why-choose-card .icon i {
    font-size: 30px;
    color: #fff;
}
.why-choose-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #31287e;
    margin-bottom: 15px;
}
.why-choose-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Check List Items */
.about-check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.about-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.about-check-list li i {
    font-size: 24px;
    color: #fc5046;
    margin-right: 12px;
}
.about-check-list li span {
    font-size: 16px;
    color: #555;
}

/* Vision Mission Cards */
.vision-mission-card {
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    color: #fff;
}
.vision-mission-card.vision {
    background: linear-gradient(135deg, #31287e 0%, #283593 100%);
}
.vision-mission-card.mission {
    background: linear-gradient(135deg, #fc5046 0%, #e53935 100%);
}
.vision-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-bottom: 25px;
}
.vision-mission-card .icon i {
    font-size: 40px;
}
.vision-mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.vision-mission-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Mission Includes Box */
.mission-includes-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.mission-includes-box h4 {
    color: #31287e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}
.mission-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.mission-item .check-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fc5046, #ff7043);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.mission-item .check-icon i {
    font-size: 24px;
    color: #fff;
}
.mission-item p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}
