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

/* Page Hero / Breadcrumb Section */
.page-hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: #0a0e1a;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 14, 26, 0.4), #0a0e1a);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.breadcrumb-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 24px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

/* Partners Section */
.partners-section {
    background: #020617;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.partners-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.partners-text {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    max-width: 220px;
    line-height: 1.4;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.partners-logos-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scrollPartners 30s linear infinite;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-item {
    color: #64748b;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s;
}

.partner-logo-item:hover {
    color: #fff;
}

/* About Text Only Section */
.about-text-only-section {
    background: #0a0e1a;
    padding: 120px 0;
}

.about-text-content {
    max-width: 1000px;
}

.section-label {
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-title-large {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.section-title-large .text-white {
    color: #fff;
    font-weight: 600;
}

.section-desc-large {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Vision & Stats Section */
.vision-stats-section {
    background: #0f1420;
    padding: 100px 0;
}

.vision-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.stats-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats-img-placeholder {
    width: 100%;
    padding-bottom: 80%;
    /* Aspect ratio */
    background-image: url('https://images.unsplash.com/photo-1553877606-3c669a27e44c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

.stats-overlay-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 340px;
    background: rgba(6, 11, 20, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.progress-item {
    margin-bottom: 20px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #38bdf8;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}

.vision-mission-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vm-card-horizontal {
    background: #080c14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vm-card-horizontal:hover {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.vm-icon-small {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #bae6fd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(186, 230, 253, 0.1);
}

.vm-content {
    margin-top: 20px;
    padding-right: 20px;
}

.vm-title-small {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.vm-desc-small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    max-width: 95%;
}

/* Team Section */
.team-section {
    background: #020617;
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: #0f1420;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.team-img {
    width: 100%;
    padding-bottom: 100%;
    /* Square aspect ratio */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.team-info {
    text-align: center;
    padding: 0 10px 10px;
}

.team-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.team-role {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #94a3b8;
    margin: 0 0 20px;
    font-weight: 500;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #38bdf8;
    color: #0f172a;
    border-color: #38bdf8;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .page-title {
        font-size: 56px;
    }

    .section-title-large {
        font-size: 42px;
    }

    .vision-stats-grid {
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 80px;
    }

    .partners-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .partners-text {
        max-width: 100%;
    }

    .partners-logos-slider {
        width: 100%;
    }

    .vision-stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-image-wrapper {
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title-large {
        font-size: 32px;
    }
}

.btn-light-blue {
    background-color: #bae6fd;
    color: #0f172a;
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
}

.btn-light-blue:hover {
    background-color: #7dd3fc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

/* ===================================
   FAQ Section Styles
   =================================== */
.faq-section {
    background: #020617;
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* Left Column */
.faq-left-col {
    display: flex;
    flex-direction: column;
}

.faq-contact-card {
    margin-top: 50px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.faq-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.faq-contact-card:hover .faq-card-bg {
    transform: scale(1.05);
}

.faq-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.2) 100%);
    z-index: 1;
}

.faq-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.faq-card-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Right Column: Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #0f1420;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(56, 189, 248, 0.2);
}

.faq-item.active {
    background: #0f1420;
    border-color: rgba(56, 189, 248, 0.3);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-header h4 {
    color: #38bdf8;
}

.faq-icon {
    color: #64748b;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-icon {
    color: #ffffff;
    background: rgba(56, 189, 248, 0.2);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-body {
    max-height: 200px;
    /* Adjust based on content */
    transition: max-height 0.5s ease-in-out;
}

.faq-body p {
    padding: 0 30px 24px;
    margin: 0;
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-contact-card {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .faq-header {
        padding: 20px;
    }

    .faq-header h4 {
        font-size: 16px;
    }

    .faq-body p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}