

.about-banner {
    position: relative;
    padding: 120px 0;
    background: url("../img/banner1.webp") center/cover no-repeat;
    color: #fff;
}

/* Dark overlay */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Content above overlay */
.about-banner .container {
    position: relative;
    z-index: 2;
}

.about-subtitle {
    color: #ff3b5f;
    font-size: 38px;
    font-weight: 700;
}

.about-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text {
    font-size: 20px;
    max-width: 600px;
    line-height: 1.6;
}

.about-btn {
    background: #ff3b5f;
    padding: 12px 32px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    margin-top: 25px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #ff2045;
}
@media (max-width: 768px) {
    .about-banner {
        padding: 80px 20px;
        text-align: center;
    }

    .about-subtitle {
        font-size: 28px;
    }

    .about-title {
        font-size: 38px;
    }

    .about-text {
        font-size: 16px;
        margin: 0 auto;
    }

    .about-btn {
        padding: 10px 26px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 32px;
    }
}

/* page */
.about-v2 {
    background: #f9f9f9;
}

/* LEFT CARD */
.about-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.about-card .tag {
    display: inline-block;
    background: rgba(224,40,80,0.1);
    color: #e02850;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.about-card .title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #0F2C49;
}

.about-card .title span {
    color: #e02850;
}

.about-card .desc {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin-top: 15px;
}

/* SERVICES */
.service-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.service-box i {
    font-size: 22px;
    color: #e02850;
}

.service-box span {
    font-size: 16px;
    font-weight: 600;
    color: #0F2C49;
}

.service-box:hover {
    background: #e02850;
}

.service-box:hover i,
.service-box:hover span {
    color: #fff;
}

/* CTA */
.about-cta {
    display: inline-block;
    background: #e02850;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-cta:hover {
    background: #0F2C49;
    color: #fff;
}

/* RIGHT IMAGE + STATS */
.about-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.stat h3 {
    color: #e02850;
    font-size: 28px;
    margin: 0;
    font-weight: 800;
}

.stat p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-card {
        padding: 30px;
    }

    .about-card .title {
        font-size: 30px;
    }

    .stats {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}



/* .about-highlights {
    background: #f7f7f7;
} */

/* CARD */
.highlight-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.3s ease;
}

.highlight-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #e02850;
    border-radius: 14px 0 0 14px;
}

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

/* ICON */
.icon-box {
    min-width: 55px;
    height: 55px;
    background: rgba(224,40,80,0.12);
    color: #e02850;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* CONTENT */
.highlight-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0F2C49;
    margin-bottom: 6px;
}

.highlight-card p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* BOTTOM NOTE */
.about-note {
    background: #0F2C49;
    color: #fff;
    padding: 30px;
    border-radius: 14px;
}

.about-note p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-note strong {
    color: #e02850;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .highlight-card {
        flex-direction: column;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }
}
