

/* about page css start */

/* ================= ABOUT WHO WE ARE ================= */
.about-who {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* TAG */
.about-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ff4d2d;
    margin-bottom: 15px;
}

/* HEADING */
.about-who h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2933;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* TEXT */
.about-who p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 18px;
}

/* FOUNDER CARD */
.founder-card {
    display: inline-block;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.founder-card img {
    width: 100%;
    max-width: 260px;
    border-radius: 14px;
}

.founder-name {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2933;
}

.founder-name span {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

/* DECORATIVE SHAPE */
.about-shape {
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    background: #fdece6;
    border-radius: 50%;
    z-index: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-who {
        padding: 70px 0;
        text-align: center;
    }

    .about-who h2 {
        font-size: 30px;
    }

    .about-who p {
        font-size: 15px;
    }

    .founder-card {
        margin-top: 30px;
    }

    .about-shape {
        display: none;
    }
}


/* ================= ABOUT COMPANY INTRO ================= */
.about-company {
    padding: 100px 0;
    background: #ffffff;
}

/* LEFT LABEL */
.about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ff4d2d;
    margin-bottom: 15px;
}

/* HEADING */
.about-heading {
    font-size: 44px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
}

/* RIGHT CONTENT */
.about-company p {
    font-size: 16px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 18px;
}

/* BOLD LINE */
.about-bold {
    font-weight: 600;
    color: #1f2937;
    font-size: 17px;
}

/* LINK */
.about-link a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.about-link a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-company {
        padding: 70px 0;
        text-align: center;
    }

    .about-heading {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .about-company p {
        font-size: 15px;
    }
}


/* ================= MISSION INFOGRAPHIC ================= */
.mission-infographic {
    background: #e5e5e5;
    padding: 90px 0;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.mission-infographic h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.subtitle {
    letter-spacing: 4px;
    font-size: 13px;
    color: #666;
    margin-bottom: 60px;
}

/* WRAPPER */
.info-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* CARD */
.info-card {
    background: #fff;
    width: 250px;
    padding: 60px 20px 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ICON CIRCLE */
.info-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

/* TITLES */
.info-card h4 {
    font-size: 22px;
    margin-top: 20px;
    font-weight: 700;
}

.info-card p {
    font-size: 14px;
    color: #555;
    margin: 15px 0 25px;
    line-height: 1.6;
}

/* STEP NUMBER */
.step {
    font-weight: 700;
    font-size: 16px;
    color: #444;
}

/* ARROW */
.arrow {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* COLORS */
.teal .icon {
    background: #2bb7a9;
}

.orange .icon {
    background: #f39c12;
}

.pink .icon {
    background: #e91e63;
}

.blue .icon {
    background: #1e88e5;
}

.teal .arrow {
    background: #2bb7a9;
}

.orange .arrow {
    background: #f39c12;
}

.pink .arrow {
    background: #e91e63;
}

/* ARROW SYMBOL */
.arrow::after {
    content: "➜";
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* REMOVE LAST ARROW */
.info-card:last-child .arrow {
    display: none;
}

@media (max-width: 768px) {
    .info-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .arrow {
        display: none;
    }

    .info-card {
        width: 90%;
        margin-bottom: 40px;
    }
}


/* ================= TRANSPARENCY & ETHICS ================= */
.ethics-section {
    padding: 90px 0;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.section-head h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-head p {
    color: #666;
    max-width: 700px;
    margin: auto;
    font-size: 15px;
}

/* GRID */
.ethics-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.ethics-card {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ethics-card:hover {
    transform: translateY(-6px);
}

/* ICON */
.ethics-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* TITLE */
.ethics-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXT */
.ethics-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ethics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ethics-grid {
        grid-template-columns: 1fr;
    }

    .ethics-section {
        padding: 60px 0;
    }
}
