@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --background-color: #f9f2e5;
    --primary-color: #05663a;
    --primary-color-dark: #034a29;
    --accent-color: #d9762e;
    --black-color: #000;
    --white-color: #fff;
    --border-color: #ddd;
    --text-muted: #555;
    --main-font: 'Inter', Arial, Helvetica, sans-serif;
    --heading-font: 'Plus Jakarta Sans', 'Inter', Arial, Helvetica, sans-serif;
    --shadow-soft: 0 10px 30px rgba(4, 40, 22, 0.08);
    --shadow-lift: 0 18px 40px rgba(4, 40, 22, 0.14);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--main-font);
    background-color: var(--white-color);
    padding: 24px 101px;
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.srcn-container {
    width: 95%;
    max-width: 1700px;
    margin: 0 auto;
}

.biologicals-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.biologicals-header-area {
    width: 100%;
    background-color: var(--background-color);
    border: 1px solid #dddddd2b;
    position: sticky;
    top: 12px;
    z-index: 9999;
    border-radius: 50px;
    padding: 16px 0px;
    transition: box-shadow 0.3s ease;
}

.biologicals-header-area.is-scrolled {
    box-shadow: var(--shadow-soft);
}

.biologicals-header-lift-col {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.biologicals-header-logo {
    display: flex;
    align-items: center;
}

.biologicals-header-logo a {
    display: inline-flex;
    align-items: center;
}

.biologicals-header-logo img {
    display: block;
    width: auto;
    max-width: max-content;
    object-fit: contain;
}


.biologicals-header-right-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 25px;
}


.biologicals-header-menu-area {
    display: block;
}

.biologicals-header-menu-navber {
    display: block;
}

.biologicals-header-menu-list {
    display: flex;
    align-items: center;
    gap: 28px;
}


.biologicals-header-menu-itme {
    position: relative;
}

.biologicals-header-menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.biologicals-header-menu-link:hover {
    color: var(--black-color);
}

.biologicals-header-menu-link.is-active {
    color: #d9762e;
}


.biologicals-header-menu-itme:has(.biologicals-header-submenu-area)>.biologicals-header-menu-link::after {

    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    margin-top: -4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition:
        transform 0.3s ease,
        margin-top 0.3s ease;
}


.biologicals-header-menu-itme:hover>.biologicals-header-menu-link::after {

    transform: rotate(225deg);
    margin-top: 4px;
}

.biologicals-header-submenu-area {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    min-width: 220px;
    padding: 14px 0 8px;
    margin-top: -6px;
    background-color: var(--white-color);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
    transition-delay: 0.15s;
    z-index: 1000;
}

.biologicals-header-menu-itme:hover .biologicals-header-submenu-area {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);

    transition-delay: 0s;
}


.biologicals-header-submenu-list {
    width: 100%;
}

.biologicals-header-submenu-itme {
    width: 100%;
}

.biologicals-header-submenu-link {
    display: block;
    width: 100%;
    padding: 12px 18px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        padding-left 0.3s ease;
}

.biologicals-header-submenu-link:hover {
    background-color: var(--background-color);
    color: var(--black-color);
    padding-left: 23px;
}


.tgaleg-btn {
    display: none;
}

.tgaleg-btn-area {
    display: flex;
    align-items: center;
    justify-content: center;
}


#menuBtn {
    width: 45px;
    height: 45px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 10001;
}

#menuBtn span {
    display: block;
    width: 27px;
    height: 2px;
    background-color: var(--primary-color);
    transform-origin: center;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* ================= Generic Page Hero (inner pages) ================= */

.biologicals-page-hero {
    text-align: left;
    background-color: var(--background-color);
    border-radius: 16px;
    margin: 30px 0 14px;
    padding: 36px 16px;
}

.biologicals-page-hero span {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: 14px;
}

.biologicals-page-hero h1 {
    font-size: 34px;
    color: var(--primary-color);
    max-width: 950px;
    width: 100%;
    height: auto;
}

.biologicals-page-hero p {
    max-width: 700px;
    margin: 18px 0 0;
    color: #444;
    line-height: 1.7;
}


/* ================= About Page: Intro / Mission ================= */

.biologicals-intro-banner {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 30px 40px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: var(--shadow-soft);
    margin: 30px 0;
}

.biologicals-duo-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 34px 0;
}

.biologicals-duo-img-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.biologicals-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 50px 0 0;
}

.biologicals-mission-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.biologicals-mission-card {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 48px 42px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.biologicals-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    background-color: var(--primary-color-dark);
}

.biologicals-mission-number {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    font-weight: 700;
    font-size: 20px;
    border-radius: 50%;
}

.biologicals-mission-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--white-color);
}

.biologicals-mission-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.biologicals-mission-img {
    border-radius: 16px;
    overflow: hidden;
}

.biologicals-mission-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ================= Manufacturing Page ================= */

.biologicals-mfg-section {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.biologicals-mfg-section h2 {
    color: var(--white-color);
    font-size: 32px;
    margin-bottom: 30px;
}

.biologicals-mfg-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 20px;
}

.gallery-card-img {
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card-img:hover img {
    transform: scale(1.05);
}

/* ================= Gallery Popup Slider ================= */

.biologicals-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10050;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
}

.biologicals-gallery-modal.is-open {
    display: flex;
}

.biologicals-gallery-modal-stage {
    width: 100%;
    max-width: 900px;
    height: 60vh;
    max-height: 500px;
    padding: 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biologicals-gallery-modal-stage img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.biologicals-gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white-color);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.biologicals-gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.biologicals-gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.biologicals-gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.biologicals-gallery-modal-nav.prev {
    left: 20px;
}

.biologicals-gallery-modal-nav.next {
    right: 20px;
}

/* Image 1 = 40% */
.gallery-card-img:nth-child(1) {
    grid-column: span 4;
}

/* Image 2 = 60% */
.gallery-card-img:nth-child(2) {
    grid-column: span 6;
}

/* Image 3 = 60% */
.gallery-card-img:nth-child(3) {
    grid-column: span 6;
}

/* Image 4 = 40% */
.gallery-card-img:nth-child(4) {
    grid-column: span 4;
}

.biologicals-slider-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.biologicals-slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
}

.biologicals-slider-dots button.active {
    background: #fff;
    transform: scale(1.25);
}

.biologicals-mfg-list {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.biologicals-mfg-list-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.biologicals-mfg-list-item h3 {
    font-size: 21px;
    color: var(--white-color);
    line-height: 1.56;
}

.biologicals-mfg-list-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}


/* ================= Career Application Form ================= */

.biologicals-career-form-wrap {
    max-width: 980px;
    margin: 0 auto;
    background: var(--gradient-primary);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.biologicals-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 26px;
}

.biologicals-form-field {
    display: flex;
    flex-direction: column;
}

.biologicals-form-field label {
    display: block;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.biologicals-form-field input[type="text"],
.biologicals-form-field input[type="email"],
.biologicals-form-field input[type="tel"],
.biologicals-form-field input[type="number"],
.biologicals-form-field select,
.biologicals-form-field textarea {
    width: 100%;
    padding: 13px 16px;
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--black-color);
    font-size: 14px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.biologicals-form-field input[type="text"]:focus,
.biologicals-form-field input[type="email"]:focus,
.biologicals-form-field input[type="tel"]:focus,
.biologicals-form-field input[type="number"]:focus,
.biologicals-form-field select:focus,
.biologicals-form-field textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.biologicals-form-field input::placeholder,
.biologicals-form-field textarea::placeholder {
    color: #8a8a8a;
}

.biologicals-form-field select {
    cursor: pointer;
}

.biologicals-form-field select option {
    color: var(--black-color);
}

.biologicals-form-field textarea {
    resize: vertical;
    font-family: inherit;
}

.biologicals-form-birthday-label {
    display: block;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.biologicals-form-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.biologicals-form-upload-btn:hover {
    background-color: var(--white-color);
    transform: translateY(-2px);
}

.biologicals-form-upload-btn input[type="file"] {
    display: none;
}

.biologicals-career-submit {
    display: block;
    margin: 10px auto 0;
    padding: 14px 44px;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.biologicals-career-submit:hover {
    background-color: var(--white-color);
    transform: translateY(-2px);
}


/* ================= Contact Page ================= */

.biologicals-contact-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.biologicals-contact-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.biologicals-contact-image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.biologicals-contact-overlay-form {
    position: relative;
    z-index: 1;
    margin: 40px;
    padding: 34px;
    background-color: rgba(10, 20, 15, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.biologicals-contact-overlay-form h3 {
    color: var(--white-color);
    font-size: 23px;
    margin-bottom: 20px;
}

.biologicals-contact-overlay-form .biologicals-form-row {
    margin-bottom: 20px;
}

.biologicals-contact-overlay-form .biologicals-form-field label {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.biologicals-contact-overlay-form .biologicals-form-field input,
.biologicals-contact-overlay-form .biologicals-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--black-color);
    font-size: 14px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.biologicals-contact-overlay-form .biologicals-form-field input::placeholder,
.biologicals-contact-overlay-form .biologicals-form-field textarea::placeholder {
    color: #8a8a8a;
}

.biologicals-contact-overlay-form .biologicals-form-field input:focus,
.biologicals-contact-overlay-form .biologicals-form-field textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.biologicals-contact-overlay-form textarea {
    resize: vertical;
}

.biologicals-contact-overlay-form button {
    margin-top: 14px;
    padding: 12px 30px;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.biologicals-contact-overlay-form button:hover {
    background-color: var(--white-color);
    transform: translateY(-2px);
}

.biologicals-contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.biologicals-contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--gradient-primary);
    border-radius: 16px;
    flex: 1;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.biologicals-contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.biologicals-contact-info-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--background-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 35px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.biologicals-contact-info-card h3 {
    font-size: 22px;
    color: var(--white-color);
    margin-bottom: 6px;
}

.biologicals-contact-info-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.biologicals-contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 0;
    width: 100%;
    height: 380px;
    display: block;
    box-shadow: var(--shadow-soft);
}


/* ================= Solutions: Intro Bullets ================= */

.biologicals-list {
    margin: 14px 0 0;
}

.biologicals-list  li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.92);
}

.biologicals-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--white-color);
}


/* ================= Solutions: Product Rows ================= */

.biologicals-product-category {
    font-size: 32px;
    color: var(--primary-color);
    margin: 43px 0 37px !important;
}

.biologicals-product-category:first-of-type {
    margin-top: 0;
}

.biologicals-product-row {
    counter-increment: biologicals-product;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
    margin-bottom: 36px;
}

.biologicals-product-row:last-child {
    margin-bottom: 0;
}

.biologicals-product-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url("../images/solutions.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: var(--shadow-soft);
    padding: 30px;
}


.biologicals-product-image img {
    width: 100%;
    height: 426px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.biologicals-product-image:hover img {
    transform: scale(1.06);
}

.biologicals-product-card {
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.biologicals-product-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-3px);
}

.biologicals-product-card h3 {
    position: relative;
    font-size: 26px;
    color: var(--white-color);
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.biologicals-product-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--accent-color);
}

.biologicals-product-card dl {
    display: flex;
    flex-direction: column;
}

.biologicals-spec-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 16px;
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.biologicals-spec-row:first-of-type {
    padding-top: 0;
}

.biologicals-spec-row:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.biologicals-spec-row dt {
    font-weight: 700;
    color: var(--white-color);
}

.biologicals-spec-row dd {
    color: rgba(255, 255, 255, 0.88);
}

.biologicals-product-row.reverse .biologicals-product-card {
    order: -1;
}


/* ================= Homepage ================= */

.biologicals-hero-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 40px;
}

.biologicals-hero-welcome {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    padding: 40px;
}

.biologicals-hero-welcome img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.biologicals-hero-welcome::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 12, 0.55);
    z-index: 0;
}

.biologicals-hero-welcome-text {
    position: relative;
    z-index: 1;
    color: var(--white-color);
}

.biologicals-hero-welcome-text span {
    display: block;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 6px;
}

.biologicals-hero-welcome-text h1 {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white-color);
}

.biologicals-hero-tech-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 370px;
}

.biologicals-hero-tech-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biologicals-hero-tech-img.biologicals-slider .biologicals-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.biologicals-hero-tech-img.biologicals-slider .biologicals-slide.active {
    opacity: 1;
}

.biologicals-hero-tech-img .biologicals-slider-dots {
    bottom: 12px;
}

.biologicals-hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.biologicals-hero-bottom-img {
    border-radius: 16px;
    overflow: hidden;
    min-height: 289px;
}

.biologicals-hero-bottom-img img {
    width: 100%;
    height: 379px;
    object-fit: cover;
    display: block;
}

.biologicals-hero-content-card {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 36px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.biologicals-hero-content-card p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 18px;
}

.biologicals-btn-light {
    align-self: flex-start;
    padding: 12px 28px;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.biologicals-btn-light:hover {
    background-color: var(--white-color);
    transform: translateY(-2px);
}

.biologicals-connect-card {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.biologicals-connect-card h2 {
    color: var(--white-color);
    font-size: 22px;
    margin-bottom: 8px;
}

.biologicals-connect-card>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 10px;
}

.biologicals-connect-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.biologicals-connect-row:last-child {
    border-bottom: 0;
}

.biologicals-connect-row h3 {
    font-size: 21px;
    color: var(--white-color);
    margin-bottom: 4px;
}

.biologicals-connect-row p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.biologicals-content-block {
    /* padding: 62px 0 0px; */
    counter-reset: biologicals-product;
}

.biologicals-content-block ul:not(.biologicals-list) {
    margin: 10px 0 20px;
}

.biologicals-content-block ul:not(.biologicals-list) li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* ================= Footer ================= */

.biologicals-footer {
    margin-top: 60px;
}

.biologicals-footer-brand {
    padding: 34px 40px;
    background-color: var(--background-color);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.biologicals-footer-brand:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.biologicals-footer-logo {
    margin-bottom: 8px;
    display: block;
}

.biologicals-footer-brand p {
    font-size: 18px;
    color: var(--accent-color);
}

.biologicals-footer-brand p:empty {
    display: none;
}

.biologicals-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    padding-bottom: 20px;
}

.biologicals-footer-col {
    padding: 34px 40px;
    background-color: var(--background-color);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.biologicals-footer-col:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.biologicals-footer-col h4 {
    position: relative;
    font-size: 16px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    color: var(--black-color);
}

.biologicals-footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--accent-color);
}


.biologicals-footer-col ul li {
    margin-bottom: 12px;
}

.biologicals-footer-col ul li a,
.biologicals-footer-col address {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    font-style: normal;
}

.biologicals-footer-col ul li a:hover {
    color: var(--primary-color);
}

.biologicals-footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.biologicals-footer-newsletter-form label {
    font-size: 13px;
    font-weight: 700;
    color: var(--black-color);
}

.biologicals-footer-newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    background-color: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--black-color);
    font-size: 14px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.biologicals-footer-newsletter-form input[type="email"]:focus {
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.biologicals-footer-newsletter-form input[type="email"]::placeholder {
    color: #8a8a8a;
}

.biologicals-footer-newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.biologicals-footer-newsletter-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.biologicals-footer-newsletter-form button {
    align-self: flex-start;
    padding: 10px 26px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 700;
    font-size: 14px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.biologicals-footer-newsletter-form button:hover {
    background-color: var(--black-color);
    transform: translateY(-2px);
}

.biologicals-footer-contact {
    display: flex;
    flex-direction: column;
}

.biologicals-footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.biologicals-footer-contact-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 27px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.biologicals-footer-contact-row p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.biologicals-footer-contact-row p a {
    color: #333;
    transition: color 0.3s ease;
}

.biologicals-footer-contact-row p a:hover {
    color: var(--primary-color);
}

.biologicals-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.biologicals-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 21px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.biologicals-footer-social a:hover {
    background-color: var(--black-color);
    transform: translateY(-2px);
}

.biologicals-footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 20px;
}

.biologicals-footer-policy a {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.biologicals-footer-policy a:hover {
    color: var(--black-color);
}

.biologicals-footer-bottom {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    gap: 10px 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-direction: column;
}

.biologicals-footer-bottom p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}



/* ================= Research Checkerboard Grid ================= */

.biologicals-research-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.biologicals-research-img {
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
}

.biologicals-research-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biologicals-research-card {
    padding: 40px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    box-shadow: var(--shadow-soft);
}

.biologicals-research-card h2 {
    font-size: 49px;
    margin-bottom: 16px;
    color: var(--white-color);
}

.biologicals-research-card ul li {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 20px;
    position: relative;

}

.biologicals-research-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--white-color);
}

.biologicals-research-row.reverse .biologicals-research-card {
    order: -1;
}

.biologicals-intro-banner p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: var(--shadow-soft);
}