/* =====================================================
   ABOUT PAGE
===================================================== */

:root {
    --primary-color: rgb(0, 0, 71);
    --blue: #1d4ed8;
    --light-blue: #eef4ff;
    --text: #333;
    --muted: #666;
}


/* =====================================================
   GLOBAL BOX SIZING
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


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

.Hero-About {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 55px 35px 65px;

    display: flex;
    flex-direction: column;
}


/* HEADING */

.Hero-About .heading {
    margin: 0 0 30px;

    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;

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


/* ABOUT CONTENT */

.about-box {
    width: 100%;
    max-width: 1050px;

    color: var(--primary-color);

    font-size: 17px;
    line-height: 1.8;

    overflow-wrap: break-word;
    word-wrap: break-word;
}

.about-box p {
    margin: 0 0 22px;
}

.about-box p:last-child {
    margin-bottom: 0;
}

.about-box strong {
    font-weight: 700;
}


/* =====================================================
   IMAGE SECTION
===================================================== */

.Image-of-Table {
    width: 100%;
    height: 300px;

    background-image: url("/Images/borosilicate page 1st image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Image-of-Table img {
    display: none;
}


/* =====================================================
   ADDRESS + CONTACT CONTAINERS
===================================================== */

.adress-container,
.Contact-container {
    width: calc(100% - 40px);
    max-width: 1200px;

    margin: 70px auto;
    padding: 35px;

    display: flex;
    align-items: center;

    gap: 50px;

    background: #ffffff;

    border: 1px solid #e2e6ed;
    border-radius: 20px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);

    min-width: 0;
}


/* =====================================================
   CONTAINER CHILDREN
===================================================== */

.adress-container > *,
.Contact-container > * {
    min-width: 0;
}


/* ADDRESS CONTENT */

.adress-container .address-content {
    flex: 0 0 calc(42% - 25px);
    width: calc(42% - 25px);
    min-width: 0;
}


/* MAP */

.adress-container iframe {
    flex: 0 0 calc(58% - 25px);

    width: calc(58% - 25px);

    height: 380px;

    display: block;

    min-width: 0;

    border: 0;
    border-radius: 15px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   ICON
===================================================== */

.contact-icon {
    width: 55px;
    height: 55px;

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

    background: var(--light-blue);

    border-radius: 13px;

    margin-bottom: 15px;
}

.contact-icon svg {
    width: 27px;
    height: 27px;

    fill: var(--blue);
}


/* =====================================================
   LABEL
===================================================== */

.contact-label {
    display: block;

    color: var(--blue);

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

    letter-spacing: 2px;

    margin-bottom: 8px;
}


/* =====================================================
   HEADINGS
===================================================== */

.adress-container h2,
.Contact-container h2 {
    margin: 0 0 15px;

    color: #142f6b;

    font-size: 32px;
    line-height: 1.2;

    overflow-wrap: break-word;
}


/* =====================================================
   ADDRESS TEXT
===================================================== */

.adress-container p {
    margin: 0 0 24px;

    color: var(--muted);

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


/* =====================================================
   MAP BUTTON
===================================================== */

.map-button {
    display: inline-flex;

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

    gap: 8px;

    padding: 11px 18px;

    background: var(--primary-color);
    color: #ffffff;

    text-decoration: none;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;

    max-width: 100%;
}

.map-button svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    fill: #ffffff;
}

.map-button:hover {
    background: var(--blue);
    transform: translateY(-2px);
}


/* =====================================================
   CONTACT IMAGE
===================================================== */

.Contact-container > img {
    flex: 1 1 50%;

    width: 50%;
    max-width: 100%;

    height: 380px;

    min-width: 0;

    display: block;

    object-fit: cover;

    border-radius: 15px;
}


/* =====================================================
   CONTACT CONTENT
===================================================== */

.Contact-container .contact-content {
    flex: 1 1 50%;

    width: 50%;
    min-width: 0;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-detail {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 16px 0;

    min-width: 0;
}

.contact-detail svg {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

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

.contact-detail a {
    min-width: 0;

    color: #333;

    text-decoration: none;

    font-size: 16px;

    overflow-wrap: anywhere;
    word-break: break-word;

    transition: 0.2s;
}

.contact-detail a:hover {
    color: var(--blue);
}


/* =====================================================
   CONTACT BUTTONS
===================================================== */

.contact-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    max-width: 100%;
}

.contact-btn {
    display: inline-flex;

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

    gap: 8px;

    padding: 12px 19px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;

    max-width: 100%;
}

.contact-btn svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    fill: currentColor;
}

.call-btn {
    background: var(--primary-color);
    color: #ffffff;
}

.email-btn {
    background: var(--light-blue);
    color: var(--primary-color);
}

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


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

@media (max-width: 992px) {

    .Hero-About {
        padding: 40px 30px 45px;
    }

    .about-box {
        font-size: 16px;
    }

    .adress-container,
    .Contact-container {
        gap: 30px;
        padding: 28px;
    }

    .adress-container h2,
    .Contact-container h2 {
        font-size: 28px;
    }

    .adress-container iframe,
    .Contact-container > img {
        height: 320px;
    }
}


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

@media (max-width: 768px) {

    /* ABOUT */

    .Hero-About {
        width: 100%;
        max-width: 100%;

        padding: 35px 20px 40px;

        text-align: center;
    }

    .Hero-About .heading {
        font-size: 2.5rem;

        margin: 0 0 22px;
    }

    .about-box {
        width: 100%;
        max-width: 100%;

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

    .about-box p {
        margin-bottom: 16px;
    }


    /* IMAGE */

    .Image-of-Table {
        width: 100%;
        height: 200px;
    }


    /* ADDRESS */

    .adress-container {
        width: calc(100% - 24px);
        max-width: 100%;

        margin: 45px auto;
        padding: 25px 18px;

        flex-direction: column;

        gap: 25px;

        text-align: center;
    }

    .adress-container .address-content {
        width: 100%;
        flex: none;
    }

    .adress-container iframe {
        width: 100%;
        max-width: 100%;

        flex: none;

        height: 280px;
    }


    /* CONTACT */

    .Contact-container {
        width: calc(100% - 24px);
        max-width: 100%;

        margin: 45px auto;
        padding: 25px 18px;

        flex-direction: column-reverse;

        gap: 25px;

        text-align: center;
    }

    .Contact-container > img {
        width: 100%;
        max-width: 100%;

        height: 250px;

        flex: none;
    }

    .Contact-container .contact-content {
        width: 100%;
        flex: none;
    }


    /* ICON */

    .contact-icon {
        margin: 0 auto 14px;
    }


    /* HEADINGS */

    .adress-container h2,
    .Contact-container h2 {
        font-size: 25px;
    }


    /* ADDRESS */

    .adress-container p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* CONTACT DETAILS */

    .contact-detail {
        justify-content: center;

        text-align: left;
    }


    /* BUTTONS */

    .contact-buttons {
        justify-content: center;

        flex-wrap: wrap;
    }
}


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

@media (max-width: 480px) {

    .Hero-About {
        padding: 30px 15px 35px;
    }

    .Hero-About .heading {
        font-size: 2.2rem;
    }

    .about-box {
        font-size: 14px;
    }


    /* IMAGE */

    .Image-of-Table {
        height: 170px;
    }


    /* ADDRESS + CONTACT */

    .adress-container,
    .Contact-container {
        width: calc(100% - 20px);

        padding: 22px 15px;

        border-radius: 15px;
    }


    /* ICON */

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }


    /* HEADINGS */

    .adress-container h2,
    .Contact-container h2 {
        font-size: 22px;
    }


    /* ADDRESS */

    .adress-container p {
        font-size: 14px;
    }


    /* MAP */

    .adress-container iframe {
        height: 230px;
    }


    /* CONTACT IMAGE */

    .Contact-container > img {
        height: 210px;
    }


    /* EMAIL / PHONE */

    .contact-detail a {
        font-size: 14px;
    }


    /* BUTTONS */

    .contact-buttons {
        flex-direction: column;

        width: 100%;
    }

    .contact-btn {
        width: 100%;
    }

    .map-button {
        width: 100%;
    }
}