.about-hero {
    background: linear-gradient(120deg, #071b1a, #003b36);
    padding: 55px 0;
    color: #fff;
}

.about-hero__wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
    align-items: center;
}

.about-hero__tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.about-hero__title {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.about-hero__subtitle {
    font-size: 17px;
    max-width: 720px;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-hero__card {
    display: flex;
    justify-content: flex-end;
}

.about-hero__card-box {
    width: 100%;
    max-width: 420px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 18px 18px;
    backdrop-filter: blur(6px);
}

.about-hero__card-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-hero__card-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-hero__card-box li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    font-size: 15px;
}

.about-hero__card-box li:last-child {
    border-bottom: none;
}

/* ===== Buttons ===== */
.btn-primary-custom {
    background: #ff4d4d;
    color: #000;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    background: #00e5cc;
    transform: translateY(-1px);
}

.btn-outline-custom {
    background-color:#25D366;
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-custom:hover {
    border-color: #00e5cc;
    color: #00e5cc;
    transform: translateY(-1px);
}

.btn-dark-custom {
    background: #006d6f;
    color: #fff;
    font-weight: 700;   
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-dark-custom:hover {
    background: #000;
    transform: translateY(-1px);
}

/* ================= Sections ================= */

.about-section {
    padding: 50px 0;
}

.about-section--light {
    background: #f6f8f9;
}

.section-head {
    max-width: 900px;
    margin-bottom: 25px;
}

.section-head h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0a2c2a;
}

.section-head p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* ================= Cards ================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-box {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.about-box h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0a2c2a;
}

.about-box p {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* ================= Features ================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e7e7e7;
    padding: 18px;
    transition: 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.06);
}

.feature-card h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #0a2c2a;
}

.feature-card p {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}

/* ================= Mission Vision ================= */

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mv-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.mv-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0a2c2a;
}

.mv-card p {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* ================= Solutions ================= */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.solution-item {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    color: #0a2c2a;
    text-align: center;
}

/* ================= Industries ================= */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.industry {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    color: #0a2c2a;
    text-align: center;
}

/* ================= CTA ================= */

.about-cta {
    /* padding: 55px 0; */
    background: linear-gradient(120deg, #003b36, #071b1a);
    color: #fff;
}

.about-cta__box {
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    background-color:#2e2d2d;
}

.about-cta__box h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}

.about-cta__box p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================= Responsive ================= */

@media (max-width: 992px) {
    .about-hero__wrap {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero__title {
        font-size: 34px;
    }
}

.company-info li{
  list-style: none;
  margin-bottom: 2px;
}

.company-info li b{
  display: inline-block;
  width: 140px;   /* adjust as per longest label */
}