.desktop-about {
    padding: 100px 80px;
}

.desktop-about-container {
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
    gap: 50px;
}

.desktop-about-left {
    max-width: 800px;
}

.about-tag {
    position: relative;
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 50px;
    color: #333;
}

.about-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #666;;
    transform: translateY(-50%);
}

.about-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #424242;
}

.about-desc {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 60px;
}

.stat h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat p {
    font-size: 16px;
    color: #666;
}

.plus {
    color: rgb(17, 89, 255);
}

.desktop-about-right img {
    width: 100%;
    height: auto;
    display: block;
    padding: 0 80px 0 0;
}

.desktop-what {
    padding: 100px 80px;
}

.desktop-what-container {
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 0;
    align-items: start;
}

.desktop-what-left {
    max-width: 1000px;
}

.what-tag {
    position: relative;
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 50px;
    color: #666;
}

.what-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #666;
    transform: translateY(-50%);
}

.what-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #555;
}

.what-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #777;
}

.desktop-what-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 60px 0 0;
}

.aboutus-feature-card-line {
    padding: 2px; /* this be border thickness */
    border-radius: 16px;
    background: linear-gradient(
        90deg,
        #1159FF 0%,
        #FFCF2A 19%,
        #FF385C 38%,
        #00A61D 60%,
        #FF9500 80%,
        #CF67FF 100%
    );
}

.aboutus-feature-card {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #ffffff; /* white inside card */
    border-radius: 14px; /* little smaller than outer */
    padding: 16px;
}

.aboutus-feature-card-line {
    /* add this too */
    margin-bottom: 2px;
}

.aboutus-feature-icon {
    flex-shrink: 0;
}

.aboutus-feature-icon img {
    width: 45px;
    height: 45px;
}

.aboutus-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.aboutus-feature-content p {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
}

.desktop-vision {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    display: flex;          
    align-items: center;
}

.desktop-vision-bg img {
    position: absolute;     
    inset: 0;
    width: 100%;
    height: 100%;           
    object-fit: cover;
    z-index: 0;             
}
/* CONTAINER */
.desktop-vision-container {
    max-width: 1440px;
    width: 100%;            
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 60px 80px;     
    position: relative;
    z-index: 1;             
    box-sizing: border-box; 
}


/* CARDS WRAPPER */
.desktop-vision-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vision-card {
    position: relative;
    border: 1px solid #ffffff;
    border-radius: 14px;
    padding: 24px 28px;
    color: #ffffff;
    overflow: hidden;
}

.vision-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #1159FF 0%,
        #00A61D 32%,
        #FFCF2A 74%,
        #FF385C 100%
    );
    opacity: 0.85; /* change number - lower = more see through */
    z-index: 0;
    border-radius: 14px;
}

.vision-card-title,
.vision-card-desc {
    position: relative;
    z-index: 1; /* text stay on top of transparent bg */
}

.vision-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vision-card-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}
