/* About Page Specific Styles */

/* 1. Page Banner */
.about-hero {
    position: relative;
    padding: 180px 0 100px;
    background: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1a1e25 0%, rgba(26, 30, 37, 0.8) 50%, rgba(26, 30, 37, 0.4) 100%);
}

.about-hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
    color: #fff;
}

.breadcrumb-area {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-area a {
    color: #fff;
    margin-right: 5px;
}

.breadcrumb-area span {
    margin-right: 5px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 18px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

/* 2. Global Reach Section */
.global-reach-section {
    padding: 100px 0;
    background: #f4f7fa;
    /* Light grey/blue tint */
}

.global-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.8fr;
    /* Images | Text | Cards */
    gap: 40px;
    align-items: center;
}

.reach-image-col {
    position: relative;
    height: 450px;
    /* Force height for overlapping images */
    width: 100%;
}

.reach-img-main {
    width: 80%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.reach-img-sub {
    width: 60%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    border: 6px solid #f4f7fa;
    /* Match bg color for cutout effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.reach-text-col .tag {
    font-size: 12px;
    font-weight: 700;
    background: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    color: var(--text-body);
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reach-text-col h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.reach-text-col p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.reach-cards-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reach-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.reach-card:hover {
    transform: translateY(-5px);
}

.reach-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
}

.reach-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* 3. Financial Control Process (Dark) */
.process-section {
    background: #11141b;
    /* Dark Bg */
    padding: 100px 0;
    color: #fff;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.tag-yellow {
    display: inline-block;
    background: var(--accent-yellow);
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
}

.process-bg-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    /* Explicitly set to white */
}

.process-desc p {
    max-width: 450px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.process-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step-item {
    position: relative;
    padding: 20px 0 20px 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.process-step-item::before {
    /* Dot for inactive items */
    content: '';
    position: absolute;
    left: -3px;
    top: 28px;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

/* Highlight for active item (Execute 04 in ref) - Change line to yellow bar */
.process-step-item:nth-child(4)::before {
    top: 10px;
    height: 40px;
    width: 2px;
    background: var(--accent-yellow);
    border-radius: 0;
    left: -1px;
    /* Align with main border */
}

.process-step-item:nth-child(4) h3 {
    color: var(--accent-yellow);
}

.process-step-item:nth-child(4) .step-num {
    color: var(--accent-yellow);
}

.step-num {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-top: 5px;
    /* Align with title */
}

/* Bullet divider between num and title? Using separate layout */
.process-step-item .step-num::after {
    content: '•';
    margin-left: 10px;
    color: var(--accent-yellow);
    display: inline-block;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.active-text {
    color: var(--accent-yellow) !important;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.6;
}

.process-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    /* Clean image without heavy shadow in this ref */
}

@media (max-width: 992px) {

    .process-header,
    .process-main-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* 4. Testimonials (Image Left) */
.about-testimonials {
    padding: 100px 0;
    background: #f8f9fc;
}

.testimonial-wrapper-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-img-col {
    position: relative;
    height: 100%;
}

.testimonial-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content-col {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-body);
    background: #f0f2f5;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-content-col h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 40px;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    display: block;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.client-details span {
    font-size: 13px;
    color: var(--text-light);
}

/* 5. Team Section */
.about-team {
    padding: 100px 0;
    background: #fff;
}

.team-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.expert-tag {
    font-size: 11px;
    font-weight: 700;
    background: #f0f2f5;
    padding: 6px 12px;
    color: var(--text-light);
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.team-header-row h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.team-desc {
    max-width: 400px;
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
}

.team-grid-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member-card {
    position: relative;
}

.team-member-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-member-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-member-card:hover .team-member-img img {
    transform: scale(1.05);
}

.social-overlay-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.member-info-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.member-info-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.member-info-box span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {

    .global-wrapper,
    .process-grid,
    .testimonial-wrapper-split {
        grid-template-columns: 1fr;
    }

    .team-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 6. Scrolling Marquee */
.marquee-section {
    background: var(--accent-yellow);
    /* Solid Yellow Background */
    padding: 24px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    border: none;
    display: flex;
    /* Ensure flex container */
    align-items: center;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-content span {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    /* Black Text exactly as requested */
    margin-right: 60px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
}

.marquee-content span i {
    color: #ffffff;
    /* White Asterisk exactly as requested */
    font-size: 14px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}