/* Full-width breadcrumb section */
.breadcrumb-fluid {
    width: 100%;
    padding: 50px 0px 20px 0px;
}

/* Row */
.breadcrumb-row {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Left column (image) */
.breadcrumb-left {
    display: flex;
    flex: 0 0 50%;
    padding-left: 60px;
    justify-content: center;
}

.breadcrumb-left img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
}

/* Right column (text) */
.breadcrumb-right {
    flex: 0 0 50%;
    padding:  80px;
    text-align: left;
}

/* Breadcrumb text */
.breadcrumb-text {
    font-family: "Rockwell", serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-text span {
    /*margin: 0 10px;*/
    color: #ccc;
}

.breadcrumb-text .active {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .breadcrumb-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .breadcrumb-left,
    .breadcrumb-right {
        flex: 100%;
        padding: 0;
    }

    .breadcrumb-text {
        font-size: 24px;
    }
}


.brand-fluid {
    padding: 100px 40px;
    width: 100%;
    overflow-x: auto;
}

.brand-row {
    display: flex;
    padding: 40px 0px;
    gap: 60px;
    justify-content: center;
    align-items: center; /* ✅ IMPORTANT */
}


.brand-card {
    width: 260px;
    height: 260px;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;   /* ✅ vertical center */
    align-items: center;       /* ✅ horizontal center */

    text-align: center;
    border-radius: 4px;

    padding: 20px;            /* ✅ keep padding LOW */
}



.brand-card.yellow {
    background: #f7c41c;
    color: #000;
}

.brand-card.black {
    background: #000;
    color: #fff;
}

.brand-card.bordered {
    border: 9.15px solid transparent;   /* required */
    border-radius: 4px;

    border-image-source: linear-gradient(
        180deg,
        #FFC700 0%,
        #FFE7A4 100%
    );
    border-image-slice: 1;              /* IMPORTANT */
}


.brand-logo {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 0%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f7c41c;
}

.brand-logo img {
    width: 40px;
}

.brand-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 13px;
}

.brand-card > h4 {
    margin-top: 20px;
    display: flex;
    align-items: center;
}


.brand-card p {
    font-size: 13px;
    opacity: 0.85;
}

.brand-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 18px;
    background: #000;
    color: #f7c41c;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
}

.yellow-btn {
    background: #f7c41c;
    color: #000;
}

.brand-card,
.brand-logo,
.brand-btn {
    transition: all 0.35s ease;
}

/* Yellow → Black */
.brand-card.yellow:hover {
    background: #000;
    color: #f7c41c;
}

/* Black → Yellow */
.brand-card.black:hover {
    background: #f7c41c;
    color: #000;
}




/* Logo invert on hover */
.brand-card:hover .brand-logo {
    border-color: #000;
}

.brand-card.yellow:hover .brand-logo {
    border-color: #f7c41c;
}



/* Button invert */
.brand-card:hover .brand-btn {
    background: #f7c41c;
    color: #000;
}

/* If button was yellow initially */
.brand-card:hover .yellow-btn {
    background: #000;
    color: #f7c41c;
}


.brand-card.bordered:hover {
    box-shadow: 0 0 15px rgba(255, 199, 0, 0.5);
}


.brand-btn .arrow {
    display: inline-block;
    transform: rotate(0deg); /* default pointing upward-right */
    transition: 0.8s ease;
    margin-left: 6px;
}

/* Hover → arrow rotates like 2 o'clock */
.brand-card:hover .brand-btn .arrow {
    transform: rotate(-50deg) translateY(-2px);
}

@media (max-width: 1400px) {
    .brand-row {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .brand-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .brand-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}


.vision-heading{
    font-size: 80px;
    font-family: "Lexend", sans-serif;
    letter-spacing: 3px;
}

.vision-text h2{
    font-size: 34px;
    font-family: "Lexend", sans-serif;
}


/* Underline */
.vision-line {
    height: 4px;
    background: #fff;
    border: 0;
}

/* Image column */
.vision-image {
    display: flex;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Yellow box */
.vision-box {
    background: #ffc107;
    color: #000;
    padding: clamp(2rem, 4vw, 4rem);
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* Text */
.vision-text {
    max-width: 600px;
}

/* Treasure image */
.vision-treasure {
    position: absolute;
    bottom: 0;              
    right: -10%;
    width: clamp(120px, 15vw, 260px);
    transform: translateY(25%); /* Half outside vertically */
    z-index: 2;
    pointer-events: none;
}


/* ---------- Large desktops (≥1400px) ---------- */
@media (min-width: 1400px) {
    .vision-heading {
        font-size: 80px;
    }

    .vision-text h2 {
        font-size: 34px;
    }
}

/* ---------- Laptops / desktops (992px–1399px) ---------- */
@media (max-width: 1399px) {
    .vision-heading {
        font-size: 64px;
    }

    .vision-text h2 {
        font-size: 28px;
    }

    .vision-text {
        max-width: 550px;
    }

}

@media (max-width: 1200px) {

    
    .vision-treasure {
            bottom: -30px;
    right: -6%;
}
}

/* ---------- Tablets (768px–991px) ---------- */
@media (max-width: 991px) {
    .vision-heading {
        font-size: 48px;
    }

    .vision-text h2 {
        font-size: 24px;
    }
    
    .vision-treasure {
        bottom: -6%;
        right: -4%;
}
}

/* ---------- Mobile (≤767px) ---------- */
@media (max-width: 767px) {
    .vision-heading {
        font-size: 36px;
    }

    .vision-text h2 {
        font-size: 20px;
    }

    .vision-treasure {
        bottom: -6%;
        right: -3%;
        width: 100px;
}
}

/* ---------- Small mobile (≤480px) ---------- */
@media (max-width: 480px) {
    .vision-heading {
        font-size: 30px;
    }

    .vision-text h2 {
        font-size: 18px;
    }
}


.mission-exact {
    position: relative;
    overflow: hidden;
}

/* ===== HEADER ===== */
.mission-header {
    text-align: center;
}

.mission-title {
    font-size: 64px;
    font-family: "Lexend", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
}

.mission-underline {
    width: 260px;
    height: 3px;
    background: #fff;
    border: none;
    opacity: 1;
    margin-top: 12px;
}

/* Star */
.mission-star {
    position: absolute;
    left: 0;
    top: -10px;
    width: 150px;
}

/* ===== GRID ===== */
.mission-grid {
    row-gap: 60px;
}

.mission-col {
    display: flex;
    justify-content: center;
}

/* ===== CARD ===== */
.mission-card {
    width: 320px;
    background: #000;
    border: 1.5px solid #f7c41c;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.mission-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.mission-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.35s ease;
    will-change: transform;
}

.mission-card p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin: 10px;
    font-family: "Lexend", sans-serif;
    text-align: center;;
    letter-spacing: 10%;
}

.mission-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.75) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}


.mission-card:hover .mission-img::after {
    opacity: 1;
}

.mission-card:hover {
    box-shadow: 0 0 25px rgba(247, 196, 28, 0.4);
}


/* Left floating coins */
.floating-coins {
    position: absolute;
    left: -40px;
    bottom: 80px;
    width: 120px;
}

/* Right coin pot */
.coin-pot {
    position: absolute;
    right: -30px;
    bottom: 32px;
    width: 226px;
}

/* ============================= */
/* Large screens (≤ 1400px) */
/* ============================= */
@media (max-width: 1400px) {
    .mission-card {
        width: 300px;
    }

    .coin-pot {
        width: 200px;
        right: -20px;
    }

    .floating-coins {
        width: 110px;
    }
}

/* ============================= */
/* Tablets / small laptops (≤ 992px) */
/* ============================= */
@media (max-width: 992px) {
    .mission-star {
        width: 120px;
        top: -5px;
    }

    .mission-card {
        width: 280px;
    }

    .mission-card p {
        font-size: 14px;
    }

    .floating-coins {
        left: -30px;
        bottom: 60px;
        width: 90px;
    }

    .coin-pot {
        width: 180px;
        right: -15px;
        bottom: 20px;
    }
}

/* ============================= */
/* Mobile devices (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {
    .mission-star {
        position: static;
        margin-bottom: 20px;
        width: 100px;
    }

    .mission-col {
        justify-content: center;
    }

    .mission-card {
        width: 100%;
        max-width: 340px;
    }

    .mission-card p {
        font-size: 13px;
    }

    .floating-coins {
        display: none; /* hide clutter */
    }

    .coin-pot {
        position: static;
        display: block;
        margin: 30px auto 0;
        width: 160px;
    }
}

/* ============================= */
/* Small mobile (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {
    .mission-card {
        padding: 15px;
    }

    .mission-card p {
        font-size: 12.5px;
    }
}


/* Section */
.core-values-section {
    position: relative;
}

/* Title */
.core-badge {
    display: inline-block;
    background: #f7c41c;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
}

/* Card */
.core-card {
    position: relative;
    height: 270px;
    padding: 30px 30px;
    border-radius: 0px 0px 30px 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.15);
    text-align: left;
    overflow: hidden;
}

/* Top color strip */
.core-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 100%;
}

/* Strip colors */
.top-yellow::before { background: #FFC700; }
.top-blue::before { background: #0945DF; }
.top-green::before { background: #82C513; }

.text-yellow {
    color: #FFC700;
}

.text-blue {
    color: #0945DF;
}

.text-green {
    color: #82C513;
}

/* Icon */
.core-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0px;
}

.core-icon img {
    width: 25px;
}

/* Icon colors */
.core-icon.yellow { background: linear-gradient(180deg, #FFC700 0%, #926C2D 100%);}
.core-icon.blue { background: linear-gradient(180deg, #0945DF 0%, #17B3A9 100%);}
.core-icon.green { background: linear-gradient(180deg, #82C513 0%, #E7CE4A 100%);}

/* Text */
.core-card h5 {
    height: 25px;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1;
    font-family: "Lexend", sans-serif;
}

.core-card p {
        height: 50px;
    font-size: 17px;
    line-height: 1.5;
    opacity: 0.85;
}

/* Hover */
.core-card:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}


.coins-right-about {
    position: absolute;
    right: 62px;
    bottom: 29px;
    width: 100px;
    opacity: 0.9;
}


@media (min-width: 1601px) {
    .coins-right-about {
        right: -97px;
        bottom: 78px;
        width: 100px;
    }
}

@media (max-width: 1600px) {
    .coins-right-about {
        bottom: 50px;
        right: 1px;
    }
}

@media (max-width: 1400px) {
    .coins-right-about {
        right: 10px;
        bottom: 40px;
        width: 80px;
    }
}



/* iPads (Mini, Air, Pro) – force 2 cards per row */
@media (min-width: 768px) and (max-width: 1199px) {
    .coins-right-about {
        right: 62px;
        bottom: 70px;
        width: 70px;
    }
    .core-values-section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


@media (max-width: 768px) {

    .coins-right-about {
        width: 70px;
        opacity: 0.7;
        right: 62px;
        bottom: 70px;
    }
}

@media (max-width: 576px) {
    .coins-right-about {
        display: none;
    }
}


.people-row {
    display: flex;
    padding: 40px 20px;      /* control side breathing space */
    justify-content: space-around;
    align-items: center;
}


/* ===== CARD ===== */
.people-card {
    position: relative;
    height: 220px;
    padding: 25px 13px;
    border-radius: 16px;
    background: radial-gradient(
        120% 120% at 50% 0%,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.people-card {
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.people-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 18px 40px rgba(0,0,0,0.45),
        0 0 25px rgba(255,204,0,0.25);

    border-color: rgba(255,204,0,0.6);

    background: radial-gradient(
        120% 120% at 50% 0%,
        rgba(255,255,255,0.18),
        rgba(255,255,255,0.04)
    );
}


/* Card text */
.people-card p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    text-align: left;
    letter-spacing: 1px;
}

/* ===== RIBBON ===== */
.people-ribbon {
    position: absolute;
    top: -6px;
    left: 25px;
    width: 42px;
    z-index: 2;
}

/* Number inside ribbon */
.ribbon-number {
    position: absolute;
    top: 0px;
    left: 41px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    z-index: 3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .people-card {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .people-card {
        padding: 30px 20px;
    }
}

.csr-section {
    padding: 25px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 660px;
}

/* Center logo */
.csr-center {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, 270%);
}

.csr-center img {
    width: 140px;
}

/* Pill base */
.csr-pill {
    position: absolute;
    width: 360px;
    padding: 14px 20px;
    border-radius: 40px;
    font-size: 13px;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px;
}

/* Number */
.csr-pill span {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 400;
    min-width: 35px;
    font-size: 20px;
    text-align: center;
}

.pill-text {
    flex: 1;
    height: 100%;
    padding: 7px 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: inset 0 0 20px rgba(255,255,255,0.25);
}

/* ===== NUMBER ===== */
.csr-pill-number {
    
    color: #fff;

    font-family: "Lexend", sans-serif;
}
/* Colors */
.yellow {
    background: linear-gradient(90deg, #FFC700 0%, #82C513 100%);
    color: #000;
}

.blue {
    background: linear-gradient(90deg, #0945DF 0%, #17B3A9 100%);
    color: #fff;
}



/* POSITIONING */
.left.top { 
    left: 50%;
    transform: translateX(-135%); 
    top: 140px; 
}
.left.middle { 
    left: 50%;
    transform: translateX(-150%); 
    top: 260px; 
}
.left.bottom { 
    left: 50%;
    top: 380px; 
    transform: translateX(-140%); 
}

.right.top { 
    right: -25%; 
    transform: translateX(-130%); 
    top: 140px; 
}
.right.middle { 
    right: -25%; 
    transform: translateX(-110%);
    top: 260px; 
}
.right.bottom { 
    right: -25%; 
    transform: translateX(-115%);
    top: 380px;
}

.bottom-center {
    left: 50%;
    transform: translateX(-45%);
    top: 500px;
}

.coins-bottle {
    position: absolute;
    right: 62px;
    bottom: 29px;
    width: 100px;
    opacity: 0.9;
}

@media (min-width: 1601px) {
    .coins-bottle {
        right: 1px;
        bottom: 13px;
        width: 176px;
    }
}

@media (max-width: 1601px) {
    .coins-bottle {
        right: 1px;
        bottom: 13px;
        width: 176px;
    }
}



@media (max-width: 1399px) {

    .coins-bottle {
        right: 1px;
        bottom: 13px;
        width: 170px;
    }

    .csr-center {
        position: absolute;
        top: 50%;
        left: 52%;
        transform: translate(-70%, 270%);
    }
    /* POSITIONING */
    .left.top { 
        left: 50%;
        transform: translateX(-115%); 
        top: 140px; 
    }
    .left.middle { 
        left: 50%;
        transform: translateX(-150%); 
        top: 260px; 
    }
    .left.bottom { 
        left: 50%;
        top: 380px; 
        transform: translateX(-140%); 
    }

    .right.top { 
        right: -25%; 
        transform: translateX(-130%); 
        top: 140px; 
    }
    .right.middle { 
        right: -25%; 
        transform: translateX(-95%);
        top: 260px; 
    }
    .right.bottom { 
        right: -25%; 
        transform: translateX(-105%);
        top: 380px;
    }

    .bottom-center {
        left: 50%;
        transform: translateX(-56%);
        top: 500px;
    }
}


@media (max-width: 1199px) {

    .coins-bottle{
        right: 16px;
        top: -64px;
        width: 142px;
    }

    /* Section height auto */
    .csr-section {
        min-height: auto;
        padding: 60px 0;
    }

    /* Center logo moves to top */
    .csr-center {
        position: static;
        transform: none;
        margin: 30px auto;
        text-align: center;
    }

    /* Pills become list items */
    .csr-pill {
        position: static;
        width: 100%;
        max-width: 520px;
        margin: 20px auto;
        justify-content: space-between;
    }

    /* Reset all manual positions */
    .left.top,
    .left.middle,
    .left.bottom,
    .right.top,
    .right.middle,
    .right.bottom,
    .bottom-center {
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }

}
@media (max-width: 767px) {
    .coins-bottle{
        display: none;
    }
}
@media (max-width: 480px) {
    .csr-section {
        padding: 30px 0;
    }
}
.social-treasure {
    position: absolute;
    bottom: 0;              
    left: -12%;
    width: clamp(120px, 15vw, 230px);
    transform: translateY(25%); /* Half outside vertically */
    z-index: 2;
    pointer-events: none;
}

.social-coin {
    position: absolute;
    bottom: -15px;
    right: -9%;
    width: clamp(120px, 15vw, 120px);
    transform: translateY(25%); /* Half outside vertically */
    z-index: 2;
    pointer-events: none;
}

.suma{
    max-width: none;
    margin-left: 40px;
}

/* ---------- Mobile (≤767px) ---------- */
@media (max-width: 767px) {
    .social-treasure {
        bottom: -6%;              
        left: -15%;
    }

    .social-coin {
        bottom: -6%;              
        right: -15%;
    }

    .suma{
        max-width: none;
        margin-left: 0px;
    }
}



.ribbon-title {
    position: relative;
    width: 520px;          /* base ribbon width */
    height: 70px;          /* ribbon height */
    background-image: url("../images/about/social-media/title.png"); /* your image */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.ribbon-title span {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;

    /* 👇 THIS IS THE KEY FIX */
    position: relative;
    top: 4px;
}

@media (max-width: 768px) {
    .ribbon-title {
        width: 90%;
        height: 64px;
    }

    .ribbon-title span {
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .ribbon-title {
        height: 58px;
    }

    .ribbon-title span {
        font-size: 13px;
    }
}


/* ===== SECTION ===== */
.support-section {
    padding: 40px 0px 20px 0px;
    position: relative;
    overflow: hidden;
}



/* ===== STAR DECOR ===== */
.support-star {
    position: absolute;
    top: -9px;
    right: 9px;
    width: 150px
}

/* ===== IMAGE ===== */
.support-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== TEXT ===== */
.support-text p {
    color: #fff;
    max-width: 680px;
}

/* ===== RESPONSIVE ===== */

/* iPad Pro / Air / Mini */
@media (max-width: 1024px) {
    .support-section {
        padding: 60px 0;
    }

    .support-star {
        width: 90px;
        right: 20px;
    }

    .support-text p {
        font-size: 17px;
    }
}

@media (max-width: 1400px) {
    .support-star {
        top: -20px;
        right: 9px;
        width: 120px;
    }
}



/* iPads (Mini, Air, Pro) – force 2 cards per row */
@media (min-width: 768px) and (max-width: 1199px) {
    .support-star {
        top: -35px;
        right: 9px;
        width: 130px;
    }
}


@media (max-width: 768px) {
    .support-star {
        top: -9px;
        right: 9px;
        width: 150px
    }
}

@media (max-width: 576px) {
    .support-star {
        display: none;
    }
    .support-section {
        padding: 30px 0;
    }
}

.vision-section {
    padding-bottom: 30px;
}
