/* About Hero Section */
.about-hero {
    position: relative;
    padding: 50px 0 0 0;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/about/aboutbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.about-hero-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.about-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

.about-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

/* Built On Proven Swiss Fintech Infrastructure Section */
.fintech-infrastructure-section {
    padding: 100px 0;
    background: #ffffff;
}

.fintech-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 32px 0;
    text-align: center;
}

.fintech-description {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Meet Our Team Section */
.meet-team-section {
    padding: 100px 0;
    background: #1a2b3a;
}

.meet-team-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 24px 0;
    letter-spacing: 2px;
}

.meet-team-description {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 60px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 12px 12px 24px 12px;
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-name {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-role {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease 0.1s;
}

.team-card:hover .team-role {
    opacity: 1;
    max-height: 100px;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .about-hero {
        padding: 140px 0 80px 0;
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-title {
        font-size: 42px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-hero-image {
        max-width: 500px;
    }

    .fintech-infrastructure-section {
        padding: 80px 0;
    }

    .fintech-title {
        font-size: 42px;
    }

    .fintech-description {
        font-size: 16px;
    }

    .meet-team-section {
        padding: 80px 0;
    }

    .meet-team-title {
        font-size: 36px;
    }

    .meet-team-description {
        font-size: 16px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .team-name {
        font-size: 18px;
    }
}

@media screen and (max-width: 640px) {
    .about-hero {
        padding: 120px 0 60px 0;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-subtitle {
        font-size: 14px;
    }

    .about-hero-image {
        max-width: 400px;
    }

    .fintech-infrastructure-section {
        padding: 60px 0;
    }

    .fintech-title {
        font-size: 32px;
    }

    .fintech-description {
        font-size: 14px;
    }

    .meet-team-section {
        padding: 60px 0;
    }

    .meet-team-title {
        font-size: 28px;
    }

    .meet-team-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

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

    .team-card {
        padding: 20px;
    }

    .team-name {
        font-size: 16px;
    }

    .team-role {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-subtitle {
        font-size: 13px;
    }

    .about-hero-image {
        max-width: 350px;
    }

    .fintech-infrastructure-section {
        padding: 50px 0;
    }

    .fintech-title {
        font-size: 28px;
    }

    .fintech-description {
        font-size: 13px;
    }

    .meet-team-section {
        padding: 50px 0;
    }

    .meet-team-title {
        font-size: 24px;
    }

    .meet-team-description {
        font-size: 13px;
        margin-bottom: 32px;
    }

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

    .team-card {
        padding: 16px;
    }

    .team-name {
        font-size: 18px;
    }

    .team-role {
        font-size: 12px;
    }
}

/* What We Stand For Section */
.what-we-stand-for-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.stand-for-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 60px 0;
}

.stand-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.stand-for-card {
    border-radius: 24px;
    padding: 40px 24px 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-align: left;
}

.stand-for-card-1 {
    background: #E4EEF0;
}

.stand-for-card-2 {
    background: #FFEAD9;
}

.stand-for-card-3 {
    background: #E4E7F0;
}

.stand-for-icon-box {
    width: 80px;
    height: 80px;
    background: #FF6B35;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 40px;
}

.stand-for-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.stand-for-card-title {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.stand-for-card-description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for What We Stand For */
@media screen and (max-width: 968px) {
    .what-we-stand-for-section {
        padding: 80px 0;
    }

    .stand-for-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .stand-for-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stand-for-card {
        padding: 32px 24px;
    }

    .stand-for-icon-box {
        width: 70px;
        height: 70px;
    }

    .stand-for-icon {
        width: 35px;
        height: 35px;
    }

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

@media screen and (max-width: 640px) {
    .what-we-stand-for-section {
        padding: 60px 0;
    }

    .stand-for-title {
        font-size: 28px;
    }

    .stand-for-card {
        padding: 28px 20px;
    }

    .stand-for-icon-box {
        width: 60px;
        height: 60px;
    }

    .stand-for-icon {
        width: 30px;
        height: 30px;
    }

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

    .stand-for-card-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .what-we-stand-for-section {
        padding: 50px 0;
    }

    .stand-for-title {
        font-size: 24px;
    }

    .stand-for-card {
        padding: 24px 16px;
    }

    .stand-for-card-title {
        font-size: 18px;
    }

    .stand-for-card-description {
        font-size: 13px;
    }
}

/* Swiss Roots Section */
.swiss-roots-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.swiss-roots-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/about/rootbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.swiss-roots-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.swiss-roots-title {
    font-family: 'Cairo', sans-serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.swiss-roots-description {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0 0 40px 0;
    max-width: 600px;
}

.btn-contact-us {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 12px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-us:hover {
    background: #FFFFFF;
    color: #1a1a1a;
}

/* Responsive for Swiss Roots */
@media screen and (max-width: 968px) {
    .swiss-roots-section {
        padding: 100px 0;
    }

    .swiss-roots-title {
        font-size: 56px;
    }

    .swiss-roots-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .swiss-roots-section {
        padding: 80px 0;
    }

    .swiss-roots-title {
        font-size: 42px;
    }

    .swiss-roots-description {
        font-size: 15px;
    }

    .btn-contact-us {
        width: 100%;
        text-align: center;
    }
}

/* Brand Logos Section */
.brands-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.brands-slider {
    width: 100%;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive for brand logos */
@media screen and (max-width: 968px) {
    .brands-section {
        padding: 60px 0;
    }

    .brand-logo {
        height: 50px;
    }

    .brands-track {
        gap: 60px;
    }
}

@media screen and (max-width: 640px) {
    .brands-section {
        padding: 40px 0;
    }

    .brand-logo {
        height: 40px;
    }

    .brands-track {
        gap: 40px;
    }
}
