@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: #111;
    background: #fff;
}

:root {
    --primary-color: rgb(0, 0, 71);
    --blue: #0066ff;
    --light-blue: #eef5ff;
    --text-color: #111;
    --gray: #666;
    --light-bg: #f7f9fc;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.bg {
    width: 100%;
    min-height: 90vh;

    display: flex;
    flex-direction: column;

    background:
        url("/Images/bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}


/* Decorative background */

.bg::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(0, 102, 255, 0.10);

    top: -200px;
    right: -150px;

    pointer-events: none;
}

.bg::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    bottom: -150px;
    left: -120px;

    pointer-events: none;
}


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

.hero {
    width: 90%;
    max-width: 1250px;

    min-height: calc(90vh - 70px);

    margin: auto;

    display: flex;

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

    gap: 50px;

    color: white;

    position: relative;
    z-index: 2;
}


.container {
    position: relative;
}


/* LEFT */

.container1 {
    width: 58%;
}


/* Small label */

.hero-label {
    display: inline-block;

    padding: 8px 15px;

    margin-bottom: 20px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #d9e8ff;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.5px;
}


/* Heading */

.hero h1 {
    margin: 0;

    line-height: 1.12;

    font-size: clamp(2.4rem, 4.5vw, 4rem);

    font-weight: 700;
}


.first-word {
    color: #ff3131;
}

.second-word {
    color: #3da5ff;
}


/* Paragraph */

.container1 > p {
    margin-top: 22px;

    max-width: 700px;

    color: #d8dce5;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons,
.cta-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    flex-wrap: wrap;
}


.hero-btn {
    min-height: 48px;

    padding: 12px 22px;

    border-radius: 7px;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s;

    border: 1px solid transparent;
}


.primary-btn {
    background: #fff;

    color: var(--primary-color);
}


.primary-btn:hover {
    transform: translateY(-3px);

    background: #e9f2ff;

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


.secondary-btn {
    background: transparent;

    color: #fff;

    border-color: rgba(255, 255, 255, 0.45);
}


.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.10);

    transform: translateY(-3px);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.container2 {
    width: 42%;

    display: flex;

    justify-content: center;

    align-items: center;
}


.hero-img img {
    width: 100%;

    max-width: 470px;

    height: auto;

    display: block;

    border-radius: 14px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);

    transform: rotate(1deg);

    transition: 0.4s;
}


.hero-img img:hover {
    transform: rotate(0deg) scale(1.02);
}


/* =========================================================
   MOBILE VISITING CARD
========================================================= */

.visitingCard-section {
    display: none;
}


/* =========================================================
   COMMON SECTION TITLE
========================================================= */

.section-title {
    text-align: center;

    width: 100%;

    max-width: 850px;

    margin: 0 auto 50px;
}


.small-title {
    display: inline-block;

    color: #0066ff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 10px;

    text-transform: uppercase;
}


.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    color: var(--primary-color);

    margin-bottom: 12px;
}


.section-title p {
    color: #666;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   TRUST SECTION
========================================================= */

.trust-section {
    padding: 90px 7%;

    background: #fff;
}


.trust-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


.trust-card {
    padding: 30px 22px;

    text-align: center;

    background: #fff;

    border: 1px solid #e7ebf2;

    border-radius: 15px;

    transition: 0.3s;
}


.trust-card:hover {
    transform: translateY(-7px);

    border-color: #c9dcff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


.icon-box {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--light-blue);

    color: #0066ff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 25px;
}


.trust-card h3 {
    color: var(--primary-color);

    font-size: 18px;

    margin-bottom: 10px;
}


.trust-card p {
    color: #666;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   PRODUCTS
========================================================= */

.top-products {
    padding: 90px 7%;

    background: #f7f9fc;
}


.popular-section {
    background: #fff;
}


/* =========================================================
   PRODUCT CATEGORY
========================================================= */

.product-category {
    width: 100%;

    padding: 90px 7%;

    background: #f7f9fc;
}


.product-category .section-title {
    margin-bottom: 35px;
}


.heading {
    margin: 0;

    font-size: clamp(28px, 4vw, 42px);

    color: var(--primary-color);
}


.gray-box {
    width: 100%;

    max-width: 1200px;

    min-height: auto;

    margin: auto;

    padding: 25px;

    background: #e9edf3;

    border-radius: 25px;
}


.cat-container {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: repeat(2, 280px);

    gap: 20px;
}


.category {
    width: 100%;

    min-height: 0;

    border-radius: 18px;

    overflow: hidden;

    position: relative;

    background-color: #ddd;

    transition: 0.3s;
}


/* Category overlay */

.category-overlay {
    position: absolute;

    inset: 0;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    align-items: flex-start;

    background:
        linear-gradient(
            transparent 25%,
            rgba(0, 0, 0, 0.78)
        );

    color: #fff;
}


.category-overlay i {
    font-size: 25px;

    margin-bottom: 10px;
}


.category-overlay h3 {
    font-size: 22px;

    margin-bottom: 5px;
}


.category-overlay span {
    font-size: 13px;

    color: #e4e4e4;
}


.category:nth-child(3) {
    grid-column: 1 / -1;
}


.glassware {
    background-image:
        url("../Images/borosilicate page 1st image.jpg");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


.plasticware {
    background-image:
        url("../Images/Lab-plasticware.png");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


.clinicware {
    background-image:
        url("../Images/clinc.png");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    text-decoration: none;
}


.category:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    padding: 100px 8%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 70px;
}


.why-content {
    width: 50%;

    max-width: 600px;
}


.why-content h2 {
    color: var(--primary-color);

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    margin-bottom: 18px;
}


.why-content > p {
    color: #666;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 30px;
}


.why-list {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


.why-item {
    display: flex;

    gap: 15px;

    align-items: flex-start;
}


.why-item > i {
    color: #0066ff;

    font-size: 21px;

    margin-top: 3px;
}


.why-item h3 {
    color: var(--primary-color);

    font-size: 17px;

    margin-bottom: 4px;
}


.why-item p {
    color: #666;

    font-size: 13px;

    line-height: 1.6;
}


.why-image {
    width: 45%;

    display: flex;

    justify-content: center;
}


.why-image img {
    width: 100%;

    max-width: 500px;

    height: 380px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
    padding: 90px 7%;

    background: #f7f9fc;
}


.industry-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.industry-card {
    background: #fff;

    padding: 30px 20px;

    border-radius: 15px;

    text-align: center;

    border: 1px solid #e8ebf0;

    transition: 0.3s;
}


.industry-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.industry-card > i {
    font-size: 30px;

    color: #0066ff;

    margin-bottom: 18px;
}


.industry-card h3 {
    color: var(--primary-color);

    font-size: 17px;

    margin-bottom: 8px;
}


.industry-card p {
    color: #666;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    padding: 90px 7%;

    min-height: auto;

    background:
        linear-gradient(
            rgba(0, 0, 71, 0.88),
            rgba(0, 0, 71, 0.88)
        ),
        url("/Images/aboutusbg.png");

    background-size: cover;

    background-position: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    color: white;
}


.about-section .small-title {
    color: #6fb0ff;
}


.about-section h2 {
    font-size: clamp(28px, 4vw, 42px);

    margin-bottom: 30px;

    text-align: center;
}


.about-box {
    width: 100%;

    max-width: 850px;

    padding: 35px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(8px);

    color: #fff;

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.about-box p {
    color: #e2e6ef;

    font-size: 14px;

    line-height: 1.8;
}


.about-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    margin-top: 15px;
}


.about-buttons .link {
    color: #fff;

    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.4);

    padding: 10px 18px;

    border-radius: 6px;

    font-size: 14px;
}


.about-buttons .link:hover {
    background: rgba(255, 255, 255, 0.1);
}


.about-buttons .btn {
    background: #fff;

    color: var(--primary-color);
}


.about-buttons .btn:hover {
    background: #e8f1ff;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.process-section {
    padding: 90px 7%;

    background: #fff;
}


.process-grid {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


.process-card {
    text-align: center;

    padding: 30px 20px;

    border: 1px solid #e6e9ef;

    border-radius: 15px;

    position: relative;

    transition: 0.3s;

    background: #fff;
}


.process-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.process-number {
    position: absolute;

    top: 12px;

    right: 15px;

    font-size: 12px;

    font-weight: 700;

    color: #b9c4d4;
}


.process-card > i {
    font-size: 28px;

    color: #0066ff;

    margin: 20px 0 15px;
}


.process-card h3 {
    color: var(--primary-color);

    font-size: 17px;

    margin-bottom: 9px;
}


.process-card p {
    color: #666;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 90px 7%;

    background: #f7f9fc;
}


.faq-container {
    width: 100%;

    max-width: 850px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.faq-container details {
    background: #fff;

    border: 1px solid #e2e6ed;

    border-radius: 10px;

    overflow: hidden;
}


.faq-container summary {
    padding: 20px;

    cursor: pointer;

    list-style: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 600;
}


.faq-container summary::-webkit-details-marker {
    display: none;
}


.faq-container summary i {
    font-size: 12px;

    transition: 0.3s;
}


.faq-container details[open] summary i {
    transform: rotate(180deg);
}


.faq-container details p {
    padding: 0 20px 20px;

    color: #666;

    font-size: 14px;

    line-height: 1.7;
}


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

.final-cta {
    padding: 90px 7%;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(
            120deg,
            #000047,
            #003d91
        );
}


.final-cta .small-title {
    color: #8dc2ff;
}


.final-cta h2 {
    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    margin-bottom: 15px;
}


.final-cta p {
    max-width: 650px;

    margin: auto;

    color: #d9e4f4;

    font-size: 15px;

    line-height: 1.7;
}


.final-cta .cta-buttons {
    justify-content: center;
}


.final-cta .secondary-btn {
    border-color: rgba(255, 255, 255, 0.5);
}


/* =========================================================
   VIEW MORE
========================================================= */

.view-more {
    text-align: center;

    margin-top: 45px;
}


.view-more a {
    text-decoration: none;

    color: #0066ff;

    font-size: 16px;

    font-weight: 600;

    transition: 0.3s;
}


.view-more a:hover {
    color: #003d91;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero {
        width: 92%;

        gap: 30px;
    }


    .hero h1 {
        font-size: 2.8rem;
    }


    .trust-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .why-section {
        gap: 40px;
    }


    .why-image img {
        height: 330px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* HERO */

    .bg {
        min-height: auto;

        padding-bottom: 45px;
    }


    .hero {
        width: 90%;

        min-height: auto;

        padding-top: 60px;

        flex-direction: column;

        text-align: center;

        gap: 30px;
    }


    .container1 {
        width: 100%;
    }


    .container2 {
        display: none;
    }


    .hero-label {
        font-size: 11px;

        padding: 7px 12px;
    }


    .hero h1 {
        font-size: 2.15rem;

        line-height: 1.2;
    }


    .container1 > p {
        font-size: 13px;

        line-height: 1.7;

        margin-top: 18px;
    }


    .hero-buttons {
        justify-content: center;

        margin-top: 25px;
    }


    .hero-btn {
        min-height: 44px;

        padding: 10px 15px;

        font-size: 12px;
    }


    /* VISITING CARD */

    .visitingCard-section {
        display: block;

        width: 100%;

        padding: 25px 12px;

        background: #f5f7fa;
    }


    .visitingCard-section img {
        display: block;

        width: 100%;

        max-width: 420px;

        height: auto;

        margin: auto;

        border-radius: 10px;

        border: 1px solid #ddd;

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


    /* COMMON SECTIONS */

    .trust-section,
    .top-products,
    .product-category,
    .why-section,
    .industries-section,
    .about-section,
    .process-section,
    .faq-section,
    .final-cta {

        padding: 60px 15px;

    }


    .section-title {
        margin-bottom: 30px;
    }


    .section-title h2 {
        font-size: 27px;
    }


    .section-title p {
        font-size: 13px;
    }


    .small-title {
        font-size: 11px;
    }


    /* TRUST */

    .trust-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .trust-card {
        padding: 25px 18px;
    }


    /* CATEGORY */

    .gray-box {
        padding: 12px;

        border-radius: 18px;
    }


    .cat-container {
        grid-template-columns: 1fr;

        grid-template-rows: repeat(3, 190px);

        gap: 12px;
    }


    .category:nth-child(3) {
        grid-column: auto;
    }


    .category-overlay {
        padding: 18px;
    }


    .category-overlay h3 {
        font-size: 18px;
    }


    .category-overlay span {
        font-size: 11px;
    }


    /* WHY */

    .why-section {
        flex-direction: column;

        gap: 35px;

        text-align: left;
    }


    .why-content,
    .why-image {
        width: 100%;

        max-width: 100%;
    }


    .why-content h2 {
        font-size: 28px;
    }


    .why-image img {
        width: 100%;

        height: 260px;

        border-radius: 15px;
    }


    /* INDUSTRIES */

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .industry-card {
        padding: 22px 12px;
    }


    .industry-card > i {
        font-size: 24px;

        margin-bottom: 12px;
    }


    .industry-card h3 {
        font-size: 14px;
    }


    .industry-card p {
        font-size: 11px;
    }


    /* ABOUT */

    .about-box {
        padding: 22px 17px;
    }


    .about-box p {
        font-size: 13px;

        line-height: 1.7;
    }


    .about-buttons {
        flex-direction: column;

        gap: 10px;
    }


    .about-buttons .link,
    .about-buttons .btn {
        width: 100%;

        text-align: center;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .process-card {
        padding: 22px 12px;
    }


    .process-card > i {
        font-size: 24px;

        margin: 18px 0 12px;
    }


    .process-card h3 {
        font-size: 14px;
    }


    .process-card p {
        font-size: 11px;
    }


    /* FAQ */

    .faq-container summary {
        padding: 16px;

        font-size: 13px;
    }


    .faq-container details p {
        padding: 0 16px 16px;

        font-size: 12px;
    }


    /* FINAL CTA */

    .final-cta h2 {
        font-size: 27px;
    }


    .final-cta p {
        font-size: 13px;
    }


    .cta-buttons {
        flex-direction: column;

        width: 100%;
    }


    .cta-buttons .hero-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 1.9rem;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-buttons .hero-btn {
        width: 100%;
    }


    .industry-grid {
        grid-template-columns: 1fr;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }

}