/* =========================================================
   RENVIXABIOCARE OPC PRIVATE LIMITED
   Main Website Stylesheet
   ========================================================= */


/* =========================================================
   1. DESIGN VARIABLES
   ========================================================= */

:root {

    --primary: #0d3b66;
    --primary-dark: #082c4d;
    --primary-light: #eaf3fa;

    --teal: #078b91;
    --teal-dark: #056e73;
    --teal-light: #e8f7f7;

    --heading: #102f49;
    --text: #405568;
    --muted: #708191;

    --white: #ffffff;
    --off-white: #f8fafc;
    --light: #f1f5f8;

    --border: #dce5ec;

    --shadow-light:
        0 8px 25px rgba(13, 59, 102, 0.07);

    --shadow:
        0 15px 40px rgba(13, 59, 102, 0.11);

    --shadow-hover:
        0 20px 50px rgba(13, 59, 102, 0.16);

    --container: 1180px;

    --radius-small: 8px;
    --radius: 14px;
    --radius-large: 22px;

    --transition: 0.3s ease;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--white);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
}


img {
    display: block;

    max-width: 100%;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


/* =========================================================
   3. MAIN CONTAINER
   ========================================================= */

.container {

    width: calc(100% - 48px);

    max-width: var(--container);

    margin-left: auto;
    margin-right: auto;

}


/* =========================================================
   4. SECTIONS
   ========================================================= */

.section {

    padding-top: 105px;

    padding-bottom: 105px;

}


.section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--teal);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.4;

    text-transform: uppercase;

}


.section-header {

    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;

}


.section-header h2 {

    margin: 0 0 18px;

    color: var(--heading);

    font-size: clamp(32px, 4vw, 46px);

    font-weight: 750;

    letter-spacing: -1.1px;

    line-height: 1.15;

}


.section-header > p:last-child {

    margin: 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;

}


/* =========================================================
   5. BUTTONS
   ========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.1px;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-primary {

    color: var(--white);

    background: var(--teal);

    border: 1px solid var(--teal);

    box-shadow:
        0 8px 20px rgba(7, 139, 145, 0.18);

}


.btn-primary:hover {

    background: var(--teal-dark);

    border-color: var(--teal-dark);

    box-shadow:
        0 13px 28px rgba(7, 139, 145, 0.25);

}


.btn-secondary {

    color: var(--white);

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.55);

}


.btn-secondary:hover {

    color: var(--primary);

    background: var(--white);

    border-color: var(--white);

}


/* =========================================================
   6. HEADER
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 3px 18px rgba(13, 59, 102, 0.05);

    backdrop-filter: blur(15px);

}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.site-logo {

    display: flex;

    flex-direction: column;

    flex-shrink: 0;

    line-height: 1.1;

}


.logo-name {

    color: var(--primary);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: -0.7px;

}


.logo-type {

    margin-top: 5px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 31px;

}


.main-nav > a {

    position: relative;

    color: var(--heading);

    font-size: 14px;

    font-weight: 650;

    transition: color var(--transition);

}


.main-nav > a:hover,
.main-nav > a.active {

    color: var(--teal);

}


.main-nav > a:not(.nav-cta)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 0;

    height: 2px;

    background: var(--teal);

    transition: width var(--transition);

}


.main-nav > a:hover:not(.nav-cta)::after,
.main-nav > a.active:not(.nav-cta)::after {

    width: 100%;

}


.nav-cta {

    padding: 11px 20px;

    color: var(--white) !important;

    background: var(--primary);

    border-radius: 6px;

}


.nav-cta:hover {

    background: var(--primary-dark);

}


.menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    padding: 8px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 7px;

}


.menu-toggle span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    background: var(--primary);

    transition: var(--transition);

}


/* =========================================================
   7. HERO
   ========================================================= */

.hero {

    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--primary);

}


.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(4, 30, 53, 0.96) 0%,
            rgba(4, 30, 53, 0.86) 38%,
            rgba(4, 30, 53, 0.56) 72%,
            rgba(4, 30, 53, 0.32) 100%
        );

}


.hero-inner {

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 690px;

    padding: 110px 0;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin: 0 0 22px;

    color: #a9e5e6;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.eyebrow::before {

    content: "";

    width: 32px;

    height: 2px;

    background: var(--teal);

}


.hero h1 {

    margin: 0 0 25px;

    color: var(--white);

    font-size: clamp(42px, 6vw, 70px);

    font-weight: 750;

    letter-spacing: -2px;

    line-height: 1.06;

}


.hero-text {

    max-width: 620px;

    margin: 0 0 35px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 18px;

    line-height: 1.8;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

}


/* =========================================================
   8. INTRO / ABOUT
   ========================================================= */

.intro {

    background: var(--white);

}


.intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 85px;

}


.intro-image {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-large);

    box-shadow: var(--shadow);

}


.intro-image::after {

    content: "";

    position: absolute;

    right: 18px;

    bottom: 18px;

    width: 70px;

    height: 70px;

    border-right: 4px solid var(--teal);

    border-bottom: 4px solid var(--teal);

    border-radius: 0 0 12px 0;

}


.intro-image img {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform 0.6s ease;

}


.intro-image:hover img {

    transform: scale(1.04);

}


.intro-content {

    max-width: 610px;

}


.intro-content h2 {

    margin: 0 0 22px;

    color: var(--heading);

    font-size: clamp(32px, 4vw, 46px);

    font-weight: 750;

    letter-spacing: -1px;

    line-height: 1.15;

}


.intro-content p {

    margin: 0 0 17px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;

}


.intro-content strong {

    color: var(--heading);

}


.inline-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;

    color: var(--teal);

    font-size: 14px;

    font-weight: 750;

    transition:
        gap var(--transition),
        color var(--transition);

}


.inline-link:hover {

    gap: 14px;

    color: var(--teal-dark);

}


/* =========================================================
   9. PRODUCTS
   ========================================================= */

.products {

    background:
        linear-gradient(
            180deg,
            #f5f9fb 0%,
            #eef4f7 100%
        );

    border-top: 1px solid #e8eef2;

    border-bottom: 1px solid #e8eef2;

}


.category-intro {

    max-width: 760px;

    margin-bottom: 35px;

}


.category-intro h3 {

    margin: 0 0 8px;

    color: var(--heading);

    font-size: 29px;

    line-height: 1.2;

}


.category-intro p {

    margin: 0;

    color: var(--muted);

    font-size: 16px;

}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 23px;

}


.product-card {

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-light);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);

}


.product-card:hover {

    transform: translateY(-7px);

    border-color: #c9dce7;

    box-shadow: var(--shadow-hover);

}


.product-image {

    position: relative;

    overflow: hidden;

    background: #e9f0f4;

}


.product-image img {

    width: 100%;

    aspect-ratio: 1 / 0.92;

    object-fit: cover;

    transition: transform 0.6s ease;

}


.product-card:hover .product-image img {

    transform: scale(1.06);

}


.product-content {

    padding: 23px 23px 26px;

}


.product-number {

    display: block;

    margin-bottom: 8px;

    color: var(--teal);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.product-content h4 {

    margin: 0 0 9px;

    color: var(--heading);

    font-size: 17px;

    font-weight: 700;

    line-height: 1.4;

}


.product-content p {

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   10. PREGA KIT / IVD
   ========================================================= */

.product-types {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 26px;

    margin-top: 35px;

}


.product-type-card {

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-light);

    transition:
        transform var(--transition),
        box-shadow var(--transition);

}


.product-type-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);

}


.product-type-image {

    min-height: 300px;

    background: #e9f0f4;

}


.product-type-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.product-type-content {

    padding: 36px;

}


.product-type-content h3 {

    margin: 0 0 13px;

    color: var(--heading);

    font-size: 28px;

    line-height: 1.2;

}


.product-type-content p:not(.section-label) {

    margin: 0 0 20px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   11. WHY CHOOSE US
   ========================================================= */

.why-choose-us {

    background: var(--white);

}


.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-light);

}


.benefit {

    min-height: 260px;

    padding: 36px;

    background: var(--white);

    border-right: 1px solid var(--border);

    transition:
        background var(--transition),
        transform var(--transition);

}


.benefit:last-child {

    border-right: 0;

}


.benefit:hover {

    background: var(--primary-light);

}


.benefit-number {

    display: block;

    margin-bottom: 27px;

    color: var(--teal);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.benefit h3 {

    margin: 0 0 12px;

    color: var(--heading);

    font-size: 20px;

    line-height: 1.35;

}


.benefit p {

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   12. MANUFACTURING SECTION
   ========================================================= */

.manufacturing-section {

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    background: var(--primary-dark);

}


.manufacturing-image {

    min-height: 560px;

    overflow: hidden;

}


.manufacturing-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.manufacturing-content {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding: 90px;

}


.manufacturing-content h2 {

    max-width: 530px;

    margin: 0 0 23px;

    color: var(--white);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

}


.manufacturing-content p:not(.section-label) {

    max-width: 540px;

    margin: 0 0 16px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;

    line-height: 1.8;

}


.manufacturing-content .btn {

    margin-top: 14px;

}


/* =========================================================
   13. TESTIMONIALS
   ========================================================= */

.testimonials {

    background: var(--off-white);

}


.testimonial-placeholder {

    min-height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 35px;

    background: var(--white);

    border: 1px dashed #bccbd5;

    border-radius: var(--radius);

}


.testimonial-placeholder p {

    margin: 0;

    color: var(--muted);

    font-size: 15px;

    text-align: center;

}


/* =========================================================
   14. GMP CERTIFICATE
   ========================================================= */

.certificate {

    background: var(--white);

}


.certificate-grid {

    display: grid;

    grid-template-columns:
        0.75fr
        1.25fr;

    align-items: center;

    gap: 75px;

}


.certificate-content {

    max-width: 470px;

}


.certificate-content h2 {

    margin: 0 0 20px;

}


.certificate-content p:not(.section-label) {

    margin: 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

}


.certificate-image {

    padding: 24px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-light);

}


.certificate-image img {

    width: 100%;

    height: auto;

    max-height: 620px;

    object-fit: contain;

}


/* =========================================================
   15. CONTACT CTA
   ========================================================= */

.contact-cta {

    padding: 80px 0;

    background:
        linear-gradient(
            120deg,
            #e8f7f7,
            #f1f7fb
        );

    border-top: 1px solid #dbecef;

}


.contact-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}


.contact-cta h2 {

    max-width: 720px;

    margin: 0 0 12px;

}


.contact-cta p:not(.section-label) {

    max-width: 700px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;

}


/* =========================================================
   16. FOOTER
   ========================================================= */

.site-footer {

    color: rgba(255, 255, 255, 0.72);

    background: #072a47;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        0.7fr
        0.7fr
        1.2fr;

    gap: 55px;

    padding-top: 75px;

    padding-bottom: 65px;

}


.footer-logo {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--white);

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -0.5px;

}


.footer-company p {

    max-width: 380px;

    margin: 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 14px;

    line-height: 1.8;

}


.footer-column h3 {

    margin: 0 0 22px;

    color: var(--white);

    font-size: 15px;

}


.footer-column > a {

    display: block;

    width: fit-content;

    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.64);

    font-size: 14px;

    transition:
        color var(--transition),
        transform var(--transition);

}


.footer-column > a:hover {

    color: var(--white);

    transform: translateX(4px);

}


.footer-contact p {

    margin: 0 0 17px;

    color: rgba(255, 255, 255, 0.64);

    font-size: 14px;

    line-height: 1.7;

}


.footer-contact strong {

    color: var(--white);

}


.footer-contact a {

    color: rgba(255, 255, 255, 0.72);

}


.footer-contact a:hover {

    color: #9fe1e2;

}


.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, 0.09);

}


.footer-bottom .container {

    padding-top: 20px;

    padding-bottom: 20px;

}


.footer-bottom p {

    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;

    text-align: center;

}


/* =========================================================
   17. TABLET — BELOW 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .main-nav {

        gap: 21px;

    }


    .product-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }


    .benefits-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .benefit:nth-child(2) {

        border-right: 0;

    }


    .benefit:nth-child(3) {

        border-top: 1px solid var(--border);

    }


    .benefit:nth-child(4) {

        border-top: 1px solid var(--border);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
   18. TABLET — BELOW 900px
   ========================================================= */

@media (max-width: 900px) {

    .section {

        padding-top: 80px;

        padding-bottom: 80px;

    }


    .menu-toggle {

        display: block;

    }


    .main-nav {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 14px 24px 22px;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow);

    }


    .main-nav.menu-open {

        display: flex;

    }


    .main-nav > a {

        padding: 13px 4px;

    }


    .main-nav > a:not(.nav-cta)::after {

        display: none;

    }


    .nav-cta {

        margin-top: 8px;

        text-align: center;

    }


    .intro-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .intro-image {

        max-width: 700px;

    }


    .intro-content {

        max-width: 700px;

    }


    .product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .product-types {

        grid-template-columns: 1fr;

    }


    .manufacturing-section {

        grid-template-columns: 1fr;

    }


    .manufacturing-image {

        min-height: 430px;

    }


    .manufacturing-content {

        padding: 75px 40px;

    }


    .certificate-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .certificate-content {

        max-width: 700px;

    }


    .contact-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   19. MOBILE — BELOW 600px
   ========================================================= */

@media (max-width: 600px) {

    .container {

        width: calc(100% - 30px);

    }


    .section {

        padding-top: 62px;

        padding-bottom: 62px;

    }


    .header-inner {

        min-height: 70px;

    }


    .logo-name {

        font-size: 21px;

    }


    .logo-type {

        font-size: 8px;

    }


    .hero {

        min-height: 650px;

    }


    .hero-content {

        padding: 80px 0;

    }


    .eyebrow {

        font-size: 10px;

        letter-spacing: 1.4px;

    }


    .hero h1 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .hero-text {

        font-size: 16px;

        line-height: 1.7;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-actions .btn {

        width: 100%;

    }


    .section-header {

        margin-bottom: 42px;

    }


    .section-header h2 {

        font-size: 31px;

    }


    .intro-content h2 {

        font-size: 31px;

    }


    .intro-content p {

        font-size: 15px;

    }


    .intro-image img {

        aspect-ratio: 1 / 0.9;

    }


    .product-grid {

        grid-template-columns: 1fr;

    }


    .category-intro h3 {

        font-size: 25px;

    }


    .product-type-card {

        grid-template-columns: 1fr;

    }


    .product-type-image {

        min-height: 250px;

    }


    .product-type-content {

        padding: 29px;

    }


    .product-type-content h3 {

        font-size: 25px;

    }


    .benefits-grid {

        grid-template-columns: 1fr;

    }


    .benefit {

        min-height: auto;

        padding: 29px;

        border-right: 0;

        border-bottom: 1px solid var(--border);

    }


    .benefit:nth-child(2),
    .benefit:nth-child(3),
    .benefit:nth-child(4) {

        border-top: 0;

    }


    .benefit:last-child {

        border-bottom: 0;

    }


    .manufacturing-image {

        min-height: 310px;

    }


    .manufacturing-content {

        padding: 60px 25px;

    }


    .manufacturing-content h2 {

        font-size: 31px;

    }


    .certificate-image {

        padding: 12px;

    }


    .contact-cta {

        padding: 60px 0;

    }


    .contact-cta h2 {

        font-size: 31px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 38px;

        padding-top: 55px;

        padding-bottom: 45px;

    }

}


/* =========================================================
   20. SMALL MOBILE — BELOW 400px
   ========================================================= */

@media (max-width: 400px) {

    .container {

        width: calc(100% - 24px);

    }


    .hero h1 {

        font-size: 36px;

    }


    .hero-content {

        padding: 70px 0;

    }


    .btn {

        padding-left: 22px;

        padding-right: 22px;

    }

}


/* =========================================================
   21. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

    }

}


/* =========================================================
   22. MOBILE MENU ANIMATION
   ========================================================= */

.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   ABOUT PAGE
========================================================= */


/* ---------------------------------------------------------
   ABOUT PAGE HERO
--------------------------------------------------------- */

.page-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #082f52 0%,
            #0d486d 55%,
            #087e83 100%
        );

    overflow: hidden;

}


.page-hero::after {

    content: "";

    position: absolute;

    right: -100px;

    bottom: -150px;

    width: 450px;

    height: 450px;

    border: 70px solid rgba(255,255,255,0.05);

    border-radius: 50%;

}


.page-hero-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    padding: 90px 0;

}


.page-hero h1 {

    margin: 0 0 20px;

    color: var(--white);

    font-size: clamp(40px, 5vw, 58px);

    font-weight: 750;

    letter-spacing: -1.5px;

    line-height: 1.1;

}


.page-hero-content > p:last-child {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.80);

    font-size: 18px;

    line-height: 1.75;

}


/* ---------------------------------------------------------
   COMPANY INTRO
--------------------------------------------------------- */

.about-company {

    background: var(--white);

}


.about-company-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 85px;

}


.about-company-image {

    min-height: 500px;

    overflow: hidden;

    border-radius: var(--radius-large);

    box-shadow: var(--shadow);

}


.about-company-image .image-placeholder {

    width: 100%;

    height: 100%;

    min-height: 500px;

}


.about-company-content {

    max-width: 610px;

}


.about-company-content h2 {

    margin: 0 0 22px;

    color: var(--heading);

    font-size: clamp(32px, 4vw, 45px);

    font-weight: 750;

    letter-spacing: -1px;

    line-height: 1.15;

}


.about-company-content p:not(.section-label) {

    margin: 0 0 17px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;

}


/* ---------------------------------------------------------
   IMAGE PLACEHOLDER
--------------------------------------------------------- */

.image-placeholder {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 400px;

    padding: 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #eaf1f5,
            #dfeaf0
        );

    border: 2px dashed #b8cbd6;

}


.image-placeholder span {

    margin-bottom: 7px;

    color: var(--heading);

    font-size: 17px;

    font-weight: 700;

}


.image-placeholder small {

    color: var(--muted);

    font-size: 13px;

}


/* ---------------------------------------------------------
   MANAGING DIRECTOR
--------------------------------------------------------- */

.director-section {

    background: var(--off-white);

}


.director-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.85fr);

    align-items: center;

    gap: 90px;

}


.director-content {

    max-width: 610px;

}


.director-content h2 {

    margin: 0 0 22px;

    color: var(--heading);

    font-size: clamp(32px, 4vw, 45px);

    font-weight: 750;

    letter-spacing: -1px;

    line-height: 1.15;

}


.director-content p:not(.section-label) {

    margin: 0 0 17px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;

}


.director-image {

    overflow: hidden;

    border-radius: var(--radius-large);

    box-shadow: var(--shadow);

}


.director-image-placeholder {

    min-height: 520px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-end;

    padding: 45px 30px;

    text-align: center;

    background:
        linear-gradient(
            160deg,
            #e7f0f4,
            #d8e5eb
        );

    border: 1px solid var(--border);

}


.director-image-placeholder span {

    margin-bottom: 7px;

    color: var(--teal);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.director-image-placeholder strong {

    color: var(--heading);

    font-size: 24px;

}


.director-image-placeholder small {

    margin-top: 6px;

    color: var(--muted);

    font-size: 13px;

}


/* ---------------------------------------------------------
   ABOUT PRODUCTS
--------------------------------------------------------- */

.about-products {

    background: var(--white);

}


.about-product-list {

    border-top: 1px solid var(--border);

}


.about-product-item {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 35px;

    padding: 32px 20px;

    border-bottom: 1px solid var(--border);

    transition:
        background var(--transition),
        padding-left var(--transition);

}


.about-product-item:hover {

    background: var(--off-white);

    padding-left: 30px;

}


.about-product-number {

    color: var(--teal);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.about-product-item h3 {

    margin: 0 0 8px;

    color: var(--heading);

    font-size: 22px;

}


.about-product-item p {

    max-width: 700px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;

}


/* ---------------------------------------------------------
   ABOUT MANUFACTURING
--------------------------------------------------------- */

.about-manufacturing {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    background: var(--primary-dark);

}


.about-manufacturing-image {

    min-height: 520px;

}


.about-manufacturing-image .image-placeholder {

    height: 100%;

    min-height: 520px;

    background:
        linear-gradient(
            135deg,
            #163f5d,
            #0c334f
        );

    border: 0;

}


.about-manufacturing-image .image-placeholder span {

    color: var(--white);

}


.about-manufacturing-image .image-placeholder small {

    color: rgba(255,255,255,0.55);

}


.about-manufacturing-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 85px;

}


.about-manufacturing-content h2 {

    max-width: 520px;

    margin: 0 0 22px;

    color: var(--white);

    font-size: clamp(31px, 4vw, 44px);

    line-height: 1.15;

}


.about-manufacturing-content p:not(.section-label) {

    max-width: 540px;

    margin: 0 0 16px;

    color: rgba(255,255,255,0.74);

    font-size: 16px;

    line-height: 1.8;

}


/* ---------------------------------------------------------
   ABOUT PAGE MOBILE
--------------------------------------------------------- */

@media (max-width: 900px) {

    .page-hero {

        min-height: 390px;

    }


    .about-company-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .about-company-image {

        max-width: 700px;

    }


    .director-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .director-image {

        max-width: 650px;

    }


    .about-manufacturing {

        grid-template-columns: 1fr;

    }


    .about-manufacturing-image {

        min-height: 380px;

    }


    .about-manufacturing-image .image-placeholder {

        min-height: 380px;

    }


    .about-manufacturing-content {

        padding: 70px 40px;

    }

}


@media (max-width: 600px) {

    .page-hero-content {

        padding: 75px 0;

    }


    .page-hero h1 {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .page-hero-content > p:last-child {

        font-size: 16px;

    }


    .about-company-image,

    .about-company-image .image-placeholder {

        min-height: 350px;

    }


    .director-image-placeholder {

        min-height: 430px;

    }


    .about-product-item {

        grid-template-columns: 50px 1fr;

        gap: 15px;

        padding: 25px 10px;

    }


    .about-product-item:hover {

        padding-left: 15px;

    }


    .about-manufacturing-content {

        padding: 60px 25px;

    }


    .about-manufacturing-image,

    .about-manufacturing-image .image-placeholder {

        min-height: 300px;

    }

}