.about-page-wrapper {
    background-color: #fff;
    overflow: hidden;
}

.about-feature-section {
    padding: 34px 0 28px;
}

.about-text-content h6 {
    color: #FF9712;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.about-text-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(120deg, #FF9712, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
}

/* Image Grid */
.about-image-grid {
    position: relative;
}

.img-overlap-wrapper {
    position: relative;
    height: 450px;
}

.img-main {
    width: 80%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Stats/Cards Section */
.mission-vision-section {
    background: #f8fafc;
    padding: 64px 0;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: #FF9712;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
}

/* Founder Section */
.founder-section {
    padding: 64px 0;
}

.founder-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.founder-img-wrapper {
    height: 100%;
    min-height: 340px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    padding: 42px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.founder-bio p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.motto-badge {
    display: inline-flex;
    align-items: center;
    background: #1e293b;
    padding: 12px 25px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.motto-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF9712;
    margin-right: 12px;
    letter-spacing: 1px;
}

.motto-text {
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
}

.disclosure-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 151, 18, 0.2);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.disclosure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #FF9712;
}

.disclosure-title {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: #e4405f; }
.social-btn.yt { background: #ff0000; }

.social-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.gallery-teaser {
    padding: 64px 0 56px;
}

.teaser-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.teaser-img:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .about-feature-section { padding: 24px 0; }
    .mission-vision-section,
    .founder-section,
    .gallery-teaser { padding: 42px 0; }
    .about-text-content h2 { font-size: 2.2rem; margin-bottom: 14px !important; }
    .about-description { font-size: 1rem; line-height: 1.7; }
    .img-overlap-wrapper { height: 350px; margin-top: 18px; }
    .img-main { height: 285px; }
    .img-sub { height: 220px; width: 58%; border-width: 6px; }
    .info-card { padding: 26px; border-radius: 18px; }
    .founder-info { padding: 28px; }
    .founder-bio p { font-size: 1rem; line-height: 1.65; }
    .motto-badge { padding: 10px 18px; }
    .motto-text { font-size: 0.9rem; }
    .disclosure-card { padding: 18px; border-radius: 14px; }
    .teaser-img { height: 190px; }
    .gallery-teaser h2 { margin-bottom: 24px !important; }
    .gallery-teaser .mt-5 { margin-top: 1.8rem !important; }
    .gallery-teaser .mt-4 { margin-top: 1rem !important; }
}

@media (max-width: 576px) {
    .about-feature-section { padding: 20px 0 16px; }
    .mission-vision-section,
    .founder-section,
    .gallery-teaser { padding: 30px 0; }
    .about-text-content h6 { font-size: 0.76rem; letter-spacing: 1.2px; margin-bottom: 8px !important; }
    .about-text-content h2 { font-size: 1.7rem; line-height: 1.25; }
    .img-overlap-wrapper { height: 290px; margin-top: 12px; }
    .img-main { width: 84%; height: 220px; border-radius: 14px; }
    .img-sub { height: 165px; width: 56%; border-radius: 14px; }
    .info-card { padding: 20px; }
    .icon-box { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 14px !important; }
    .founder-info { padding: 24px 18px; }
    .display-5 { font-size: 1.7rem; margin-bottom: 14px !important; }
    .founder-bio p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 10px !important; }
    .motto-badge { flex-direction: column; align-items: flex-start; gap: 5px; border-radius: 20px; margin-bottom: 20px !important; }
    .motto-label { margin-right: 0; }
    .disclosure-card { margin-bottom: 20px !important; }
    .social-links { gap: 10px; }
    .social-btn { width: 40px; height: 40px; font-size: 1rem; }
    .teaser-img { height: 140px; border-radius: 12px; }
    .gallery-teaser h6 { margin-bottom: 8px !important; }
    .gallery-teaser .btn.btn-lg { font-size: 0.92rem; padding: 0.55rem 1rem !important; }
}
