/* About Page Styles — all sections use 6% horizontal padding, inner container max 1440px */

.about-hero {
    background-color: #050a1c; /* Dark blue background from design */
    color: #fff;
    padding: 65px 6% 77px;
    width: 100%;
    box-sizing: border-box;
}

.about-hero .about-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50%;
    margin-top: 17px;
}

.about-hero .hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 0.37px;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-hero .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #e5e7eb;
    opacity: 0.7;
    margin-bottom: 24px;
    max-width: 457px;
}

.hero-actions {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 24px;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background-color: #e85d2a;
    color: #ffffff;
    padding: 15px 23px 12px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: background-color 0.3s;
    min-width: 201px;
}

.btn-orange:hover {
    background-color: #d14d1f;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(187, 182, 182, 0.6);
    border-radius: 10px;
    color: #f3f4f6;
    padding: 9px;
    width: 218px;
    height: 48px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.44px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    border-radius: 20px;
    width: 601px;
    height: 420px;
    object-fit: cover;
}

/* Unique Section */
.unique-section {
    background-color: #f7f7f7;
    padding: 80px 6% 100px;
    width: 100%;
    box-sizing: border-box;
}

.unique-section .unique-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.unique-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.unique-header {
    text-align: center;
    margin-bottom: 60px;
}

.unique-header .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: 0.36px;
    color: #000000;
    margin-bottom: 12px;
}

.unique-header .section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #99a1af;
    max-width: 800px;
    margin: 0 auto;
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.unique-card {
    background-color: #050a1c;
    border: 1px solid #1e2939;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    min-height: 285px;
    transition: transform 0.3s ease;
}

.unique-card:hover {
    transform: translateY(-5px);
}

.unique-section .card-icon-wrapper {
    width: 49px;
    height: 49px;
    background-color: rgba(255, 105, 0, 0.1); /* #ff69001a */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.unique-section .card-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    object-fit: contain;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.07px;
    color: #ffffff;
    margin-bottom: 16px;
}

.card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: #99a1af;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 6%;
    background-color: #fff;
    box-sizing: border-box;
}

.mission-vision-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.mv-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.mv-block:last-child {
    margin-bottom: 0;
}

.mv-image-wrapper {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    height: 375px;
}

.mv-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    color: #0a0a0a;
    margin-bottom: 22px;
}

.mv-desc {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.34px;
    color: #656565;
}

/* Digital Revolution Section */
.digital-revolution-section {
    background-color: #050a1c;
    padding: 100px 6%;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
}

.digital-revolution-section .revolution-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.revolution-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.revolution-header {
    text-align: center;
    margin-bottom: 60px;
}

.revolution-header .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 49px;
    font-weight: 500;
    line-height: 49px;
    letter-spacing: 0.36px;
    color: #ffffff;
    margin-bottom: 24px;
}

.revolution-header .section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #99a1af;
    max-width: 900px;
    margin: 0 auto;
}

/* Tabs */
.revolution-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a1a24;
    border: 1px solid #1e2939;
    border-radius: 30px;
    padding: 3px;
    margin-bottom: 65px;
}

.rev-tab {
    background: transparent;
    border: none;
    color: #99a1af;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: all 0.3s;
}

.rev-tab.active {
    background: #ff6900;
    color: #ffffff;
    box-shadow: 0px 10px 15px -3px rgba(255, 105, 0, 0.2), 0px 4px 6px -4px rgba(255, 105, 0, 0.2);
}

.rev-tab:hover:not(.active) {
    color: #ffffff;
}

/* Tab panels */
.rev-panel {
    display: none;
    width: 100%;
}

.rev-panel.active {
    display: block;
}

/* Grid */
.revolution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

/* Card Styles */
.rev-card {
    background: #1a1a24;
    border: 1px solid #1e2939;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 240px;
}

/* Make first two cards span across differently or have different layout if needed. 
   Based on image, first row has 2 cards (Healthcare, Banking), second row has 3.
*/
.rev-card:nth-child(1),
.rev-card:nth-child(2) {
    grid-column: span 3; /* For now stack them or use flex? Design shows 2 cols then 3 cols */
}

/* Let's use flex-wrap or specific grid placement for the 2-3 layout */
.revolution-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.rev-card {
    width: calc(50% - 12px); /* 2 cards per row */
}

.rev-card:nth-child(3),
.rev-card:nth-child(4),
.rev-card:nth-child(5) {
    width: calc(33.333% - 16px); /* 3 cards per row */
}

.rev-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 27px;
}

.rev-icon {
    width: 60px;
    height: 60px;
}

.rev-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.rev-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    color: #99a1af;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 6%;
    background-color: #f7f7f7;
    width: 100%;
    box-sizing: border-box;
}

.leadership-section .leadership-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-container {
    display: flex;
    flex-direction: column;
}

.leadership-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leadership-header .eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #d1d5dc;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.6px;
    color: #4a5565;
    text-transform: uppercase;
    width: fit-content;
}

.leadership-header .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: 0.37px;
    color: #101828;
    margin: 0;
}

.header-right {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e85c29;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #d14d1f;
}

.slider-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Make sure icons are white */
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;
}

.leader-card {
    position: relative;
    border-radius: 21px;
    overflow: hidden;
    width: 389.9px;
    height: 524.97px;
    background-color: #1a1a1a;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.leader-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leader-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.4px;
    color: #e85c29;
    margin: 0;
}

.leader-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.13px;
    color: #ffffff;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 6%;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.faq-section .faq-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.faq-header {
    flex: 0 0 350px;
}

.faq-header .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 49px;
    font-weight: 700;
    line-height: 61px;
    letter-spacing: 0.36px;
    color: #101828;
    margin: 0;
}

.faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #f9fafb;
    border-radius: 10px;
    padding: 24px;
    transition: background-color 0.3s;
}

.faq-item:hover {
    background-color: #f3f4f6;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.faq-question span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #1e2939;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #e85d29;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s;
}

.faq-toggle img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4a5565;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: #101828;
}

/* CTA Section */
.cta-section {
    padding: 100px 6%;
    background-color: #f7f7f7;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.cta-section .cta-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section .cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: #101828;
    margin-bottom: 16px;
}

.cta-section .cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #667085;
    margin-bottom: 32px;
    max-width: 960px;
}

@media (min-width: 1100px) {
    .cta-desc {
        white-space: nowrap;
    }
}

.cta-btn {
    padding: 16px 28px;
    font-size: 16px;
    border-radius: 8px;
}

.cta-btn img {
    margin-left: 8px;
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        align-items: stretch;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image {
        order: -1;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-height: 360px;
    }

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

    .mv-block {
        gap: 40px;
    }

    .rev-card {
        width: 100%;
    }

    .rev-card:nth-child(3),
    .rev-card:nth-child(4),
    .rev-card:nth-child(5) {
        width: 100%;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        justify-items: center;
    }

    .leader-card {
        width: 100%;
        max-width: 389.9px;
        height: 500px;
    }

    .leader-img {
        object-position: center top;
    }

    .faq-container {
        flex-direction: column;
        gap: 40px;
    }

    .faq-header {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
    }

    .faq-header .section-title br {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-content {
        overflow-x: hidden;
    }

    /* Hero */
    .about-hero {
        padding: 40px 24px 56px;
    }

    .about-container {
        flex-direction: column;
        gap: 28px;
    }

    .about-content {
        max-width: 100%;
        margin-top: 0;
    }

    .about-hero .hero-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .about-hero .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 16px;
    }

    .btn-orange,
    .btn-outline-white {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .about-image {
        order: -1;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    /* Unique */
    .unique-section {
        padding: 48px 24px 64px;
    }

    .unique-header {
        margin-bottom: 40px;
    }

    .unique-header .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .unique-header .section-desc {
        font-size: 16px;
    }

    .unique-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .unique-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-desc {
        font-size: 15px;
    }

    /* Mission & Vision */
    .mission-vision-section {
        padding: 48px 24px 64px;
    }

    .mv-block {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 48px;
    }

    .mv-block.vision-block {
        flex-direction: column;
    }

    .mv-block.vision-block .mv-content {
        order: 1;
    }

    .mv-block.vision-block .mv-image-wrapper {
        order: 2;
    }

    .mv-image-wrapper {
        height: 240px;
    }

    .mv-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .mv-desc {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Digital Revolution */
    .digital-revolution-section {
        padding: 48px 24px 64px;
    }

    .revolution-header {
        margin-bottom: 40px;
    }

    .revolution-header .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .revolution-header .section-desc {
        font-size: 16px;
    }

    .revolution-tabs {
        flex-wrap: wrap;
        justify-content: center;
        padding: 6px;
        margin-bottom: 40px;
    }

    .rev-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .revolution-grid {
        flex-direction: column;
        gap: 20px;
    }

    .rev-card {
        width: 100% !important;
        padding: 24px 20px;
        min-height: auto;
    }

    .rev-card-header {
        margin-bottom: 16px;
    }

    .rev-icon {
        width: 48px;
        height: 48px;
    }

    .rev-card-title {
        font-size: 22px;
    }

    .rev-card-desc {
        font-size: 16px;
    }

    /* Leadership */
    .leadership-section {
        padding: 48px 24px 64px;
    }

    .leadership-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .leadership-header .section-title br {
        display: none;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }

    .leader-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        /* Was 380px — too short vs. full-width card + cover crop (heads clipped) */
        height: 520px;
    }

    .leader-img {
        object-position: center top;
    }

    /* FAQ */
    .faq-section {
        padding: 48px 24px 64px;
    }

    .faq-header .section-title {
        font-size: 28px;
        line-height: 1.25;
        overflow-wrap: break-word;
        word-wrap: break-word;
        max-width: 100%;
    }

    .faq-item {
        padding: 18px 16px;
    }

    .faq-question span {
        font-size: 16px;
    }

    /* CTA */
    .cta-section {
        padding: 48px 24px 64px;
    }

    .cta-section .cta-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .cta-section .cta-desc {
        font-size: 16px;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .faq-header .section-title {
        font-size: 22px;
        line-height: 1.3;
    }
}
