/* =========================================================
   PHARMA TIPS ZONE
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 300px;

    display: flex;
    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1800&q=85")
        center / cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(17, 17, 17, .82),
            rgba(17, 17, 17, .55)
        );
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 720px;

    padding: 55px 0;
}

.about-hero-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.about-hero-content h1 {
    margin: 0 0 12px;

    color: var(--white);

    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
}

.about-hero-content h1 span {
    color: var(--primary);
}

.about-hero-content p {
    max-width: 650px;

    margin: 0 0 20px;

    color: rgba(255, 255, 255, .88);

    font-size: 16px;
    line-height: 1.6;
}

.about-breadcrumb {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, .65);

    font-size: 11px;
}

.about-breadcrumb a {
    color: var(--white);
}

.about-breadcrumb a:hover {
    color: var(--primary);
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
    background: var(--white);
}

.about-image-card {
    position: relative;

    overflow: hidden;

    border-radius: 7px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .10);
}

.about-image-card img {
    width: 100%;
    min-height: 430px;

    display: block;

    object-fit: cover;
}

.about-image-badge {
    position: absolute;

    left: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;

    padding: 14px 18px;

    background: var(--primary);

    color: var(--white);

    border-radius: 5px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .18);
}

.about-image-badge strong {
    font-size: 18px;
}

.about-image-badge span {
    margin-top: 2px;

    font-size: 10px;
}


.about-content {
    padding-left: 15px;
}

.about-section-label {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.about-content h2,
.about-section-heading h2,
.about-why-heading h2 {
    margin: 0;

    color: var(--text);

    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.about-content h2 span,
.about-section-heading h2 span,
.about-why-heading h2 span {
    color: var(--primary);
}

.about-title-line {
    width: 38px;
    height: 3px;

    display: block;

    margin: 12px 0 18px;

    background: var(--primary);
}

.about-content p {
    margin: 0 0 14px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}

.about-primary-btn {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 7px;

    padding: 12px 19px;

    background: var(--primary);

    color: var(--white);

    border-radius: 4px;

    font-size: 10px;
    font-weight: 800;

    transition:
        background-color .2s ease,
        transform .2s ease;
}

.about-primary-btn:hover {
    background: var(--primary-dark);

    color: var(--white);

    transform: translateY(-1px);
}


/* =========================================================
   SERVICES
========================================================= */

.about-services {
    background: var(--light);
}

.about-section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
}

.about-section-heading > p {
    max-width: 390px;

    margin: 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}

.about-service-card {
    height: 100%;

    padding: 24px 20px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 6px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.about-service-card:hover {
    border-color: var(--primary);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .07);

    transform: translateY(-3px);
}

.about-service-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 21px;
}

.about-service-card h3 {
    margin: 0 0 9px;

    color: var(--text);

    font-size: 16px;
    font-weight: 800;
}

.about-service-card p {
    min-height: 72px;

    margin: 0 0 15px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.65;
}

.about-service-card a {
    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
}

.about-service-card a i {
    margin-left: 4px;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.about-mission {
    background: var(--white);
}

.about-info-card {
    height: 100%;

    display: flex;

    gap: 18px;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 7px;

    background: var(--white);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.about-info-card:hover {
    border-color: var(--primary);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .06);
}

.about-info-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 20px;
}

.about-card-label {
    display: block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-info-card h3 {
    margin: 0 0 10px;

    font-size: 17px;
    line-height: 1.3;
}

.about-info-card p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   WHY PHARMATIPSZONE
========================================================= */

.about-why {
    background: var(--light);
}

.about-why-heading p {
    max-width: 430px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}

.about-feature-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.about-feature {
    display: flex;

    gap: 15px;

    padding: 16px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 6px;
}

.about-feature-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 11px;
}

.about-feature h3 {
    margin: 0 0 4px;

    font-size: 13px;
    font-weight: 800;
}

.about-feature p {
    margin: 0;

    color: var(--muted);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    padding: 42px 0;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-dark)
        );

    color: var(--white);
}

.about-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.about-cta-label {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, .75);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.about-cta h2 {
    margin: 0 0 5px;

    color: var(--white);

    font-size: 30px;
    font-weight: 800;
}

.about-cta p {
    margin: 0;

    color: rgba(255, 255, 255, .85);

    font-size: 12px;
}

.about-cta-actions {
    display: flex;

    gap: 10px;
}

.about-cta-primary,
.about-cta-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 18px;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 800;

    white-space: nowrap;
}

.about-cta-primary {
    background: var(--white);

    color: var(--primary);
}

.about-cta-primary:hover {
    color: var(--primary-dark);
}

.about-cta-secondary {
    border: 1px solid rgba(255, 255, 255, .65);

    color: var(--white);
}

.about-cta-secondary:hover {
    background: rgba(255, 255, 255, .12);

    color: var(--white);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-image-card img {
        min-height: 350px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-content h2,
    .about-section-heading h2,
    .about-why-heading h2 {
        font-size: 27px;
    }

    .about-section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }
}


@media (max-width: 767px) {

    .about-hero {
        min-height: 260px;
    }

    .about-hero-content {
        padding: 45px 15px;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .about-hero-content p {
        font-size: 13px;
    }

    .about-image-card img {
        min-height: 300px;
    }

    .about-content h2,
    .about-section-heading h2,
    .about-why-heading h2 {
        font-size: 24px;
    }

    .about-service-card p {
        min-height: auto;
    }

    .about-info-card {
        padding: 20px;
    }

    .about-cta-inner {
        flex-direction: column;

        text-align: center;
    }

    .about-cta-actions {
        justify-content: center;

        flex-wrap: wrap;
    }
}


@media (max-width: 575px) {

    .about-hero {
        min-height: 235px;
    }

    .about-hero-content {
        padding: 35px 12px;
    }

    .about-hero-content h1 {
        font-size: 29px;
    }

    .about-hero-content p {
        font-size: 12px;
    }

    .about-image-card img {
        min-height: 260px;
    }

    .about-image-badge {
        left: 12px;
        bottom: 12px;

        padding: 10px 13px;
    }

    .about-image-badge strong {
        font-size: 15px;
    }

    .about-info-card {
        flex-direction: column;
    }

    .about-cta {
        padding: 35px 0;
    }

    .about-cta h2 {
        font-size: 25px;
    }

    .about-cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
    }
}