* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background: var(--bg-yellow-light);
}

:root {
    --color-beg: #aa2540a6;
    --color-beg-light: #aa2540;
    --color-main: goldenrod;
    /* --color-main-light: cadetblue; */
    --color-main-light: #057989;
    --color-black: #1A1B1E;

    --bg-beg: #e7e7e7;
    --bg-white: #f3f5f6;
    --bg-yellow-light: #ffffee;

    --color-golden: #daa520;
    --color-dark-green: #5f9ea0;
    --color-orange: orange;
    --color-orange-light: rgb(243, 173, 43);
    --color-orange-dark: rgb(242, 159, 5);
    --color-red: #fe5102;

    /* goldenrod */
    /* cadetblue */
}

input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
}

.container {
    padding-top: 5rem;
}

.subhead h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-main-light);
}

.breadcrumb-main {
    padding: 2rem 2rem;
    text-align: left;
    background: var(--color-dark-green);
    /* background: linear-gradient(to left, rgba(65, 107, 192, 0.6), rgba(15, 213, 227, 0.6)); */
    /* background-image: linear-gradient(to right top, #daa520, #9eb041, #6cb06d, #51a990, #5f9ea0); */

}

.breadcrumb-main h2 {
    font-size: 3rem;
    color: white;
}

.breadcrumb-main p {
    font-size: 1.1rem;
    color: var(--bg-white);
}

.breadcrumb-main a {
    color: white;
    transform: all 400ms ease-in;
}

.breadcrumb-main a:hover {
    color: var(--bg-white);
}



/* -------- Navbar  ----  */
.nav-logo img {
    width: 150px;
    height: 100px;
    object-fit: contain;

}

body {
    /* background: #e7f1ff; */
}

nav {
    background: #e7f1ff;
    background: var(--bg-yellow-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    /* background: white; */
    padding: 1rem 2rem;
    /* background-image: linear-gradient(to right top, #4aacae, #30c3a7, #57d789, #98e55a, #e5eb0f); */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 400ms ease-in;
    z-index: 10000;
}

nav.active {
    transition: all 400ms ease-in;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

.nav-links ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
    margin-bottom: 0rem;
}

.nav-links ul li {
    list-style: none;
}

.nav-links ul li a {
    color: var(--color-main-light);
    font-size: 1.2rem;
    font-weight: 500;
}

.nav-call a {
    background: var(--color-main-light);
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 400ms ease-in-out;
}

.nav-call a:hover {
    background: var(--color-main);
    transition: all 400ms ease-in-out;
}


/* ------------------ Numbers ------------  */
.numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 85%;
    margin: auto;
}

.numbers .single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #543e60;
    /* border-radius: 0% 21% 0% 19% / 27% 48% 27% 45%; */
    border-radius: 0% 21% 0% 19%;
}

.numbers .single .num {
    font-size: 2rem;
    color: rgb(249, 172, 28);
    font-weight: 500;
}

.numbers .single p {
    color: #5c496f;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
}

@media only screen and (max-width: 1000px) {
    .numbers {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        margin: auto;
    }

    .numbers .single {
        border: 2px solid #543e60;
        border-radius: 0% 15% 0% 15% / 0% 30% 0% 30%;
    }

    .numbers .single .num {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .numbers .single p {
        font-size: 0.6rem;
        font-weight: 500;
        margin-bottom: 0rem;
    }
}

@media only screen and (max-width: 750px) {
    .container.num-main {
        max-width: 700px !important;
    }
    .breadcrumb-main{
        padding: 1rem 1rem;
    }

    .breadcrumb-main h2 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 500px) {
    .breadcrumb-main p {
        font-size: 1rem;
    }

    .numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers .single {
        border: 2px solid #543e60;
        border-radius: 0% 15% 0% 15% / 0% 40% 0% 40%;
        padding: 0.5rem 0rem;
    }

    .numbers .single .num {
        font-size: 1.5rem;
    }

    .numbers .single p {
        font-size: 0.6rem;
        font-weight: 500;
    }
}


/* ------------------ Google ------------  */
.for-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.for-col .single {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.for-col .single img {
    width: 80%;
    /* height: 150px; */
    object-fit: contain;
}

.for-col .single small,
.for-col .single strong {
    text-align: center;
}

@media only screen and (max-width: 760px) {
    .for-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media only screen and (max-width: 400px) {
    .for-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .for-col .single strong {
        font-size: 0.9rem;
    }

    .for-col .single small {
        font-size: 0.8rem;
    }
}


/* --- About --  */
.about h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-main);
}

.about ul {
    padding-left: 1rem;
}

.about ul li {
    list-style: none;
    position: relative;
}

.about ul li i {
    color: var(--color-main-light);
    padding-right: 0.2rem;
}


.about p {
    color: var(--color-black);
    font-size: 1.1rem;
}

/* ---- products-grid ---  */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.products-grid {
    padding: 0.5rem;
}

.products-grid .single {
    /* box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px; */
    box-shadow: rgba(216, 216, 230, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 300ms ease-in;
    border-radius: 15px;
    background: white;
}

.products-grid .single:hover {
    background: rgba(218, 165, 32, 0.198);
}

.products-grid .img {
    text-align: center;
}

.products-grid img {
    width: 95%;
    height: 240px;
    object-fit: contain;
    aspect-ratio: 1/2;
}

.products-grid .single h4 {
    margin: 1rem 0rem;
    font-weight: 500;
    font-size: 1.2rem;
}

.products-grid .single p {
    color: rgb(73, 69, 69);
    font-weight: 300;
}

.products-grid .single .read-btn {
    padding: 12px 15px;
    background: var(--color-main-light);
    /* background: #057989; */
    color: white;
    border-radius: 50rem;
    text-align: center;
    width: 100%;
    display: block;
    transition: all 300ms ease-in;
}

.products-grid .single .read-btn:hover {
    background: var(--color-main);
}

/* --- Response ---  */
.response .d-flex {
    align-items: center;
    gap: 1rem;
}

.response .d-flex img {
    width: 120px;
}

.response .d-flex strong {
    font-size: 1.2rem;
}

/* ----- request_qu ---  */
.request_qu {
    /* background: var(--bg-beg);
    background: #43c4e442; */
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.457)), url("../images/product/automatic-adhesive-and-nail-machine.jpg");
    padding: 5rem 1rem;
    margin: 2rem auto;
}

.request_qu p {
    margin-bottom: 2rem !important;
    max-width: 80%;
    margin: auto;
    color: white;
}

.request_qu .subhead h2 {
    color: white;
}

.request_btn {
    background: var(--color-main-light);
    padding: 10px 15px;
    color: white;
}

.request_btn:hover {
    color: white;
}

/* -------- FAQs --------- */
.faqs {
    /* background: #f5f5f5; */
    padding-bottom: 2rem;
}

.accordion-button {
    transition: all 400ms ease-in;
    color: var(--color-dark-green);
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--color-main);
    outline: 0;
    /* box-shadow: 0 0 0 .25rem rgba(170,37,64,0.25); */
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    /* background-color: #e7f1ff; */
    background-color: var(--color-main-light);
    color: white;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-body {
    color: var(--color-main-light);
}

.accordion-button:not(.collapsed)::after {
    filter: grayscale(65%);
}

.accordion .accordion-item {
    margin-bottom: 2rem;
    border: 1px solid var(--color-dark-green);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-flush .accordion-item:first-child {
    border-top: 1px solid var(--color-dark-green);
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 1px solid var(--color-dark-green);
}

/* ---- form ---  */
.form {
    padding: 5rem 1rem;
    /* background: url('../images/background.webp') center center fixed; */
    /* background: var(--bg-white); */
}

form h4 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
}

form input {
    outline: none;
    border: 0.1px solid transparent;
    background: var(--bg-white);
}

form input:focus,
form input:hover {
    border: 0.1px solid var(--color-main-light);
}

form input[type="submit"] {
    background: var(--color-main-light);
    color: white;
}

/* ---- Footer ---  */
footer {
    border-top: 1px solid var(--color-dark-green);
    padding: 2rem 5rem;
}

footer .logo img {
    height: 60px;
    margin-bottom: 1rem !important;
    object-fit: contain;
    margin: auto;
}

footer .foot-head {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-main-light);
}

footer ul {
    padding-left: 0rem;
}

footer ul li {
    list-style: none;
    margin-left: 0rem;
    margin-bottom: 0.5rem;
}

footer ul li a,
footer a {
    color: var(--color-main);
    transition: all 300ms ease-in;
}

footer ul li a:hover,
footer a:hover {
    color: var(--color-main-light);
    text-decoration: underline;
}

footer ul li a:hover {
    margin-left: 1rem;
}

.copyright {
    border-top: 1px solid var(--color-main);
    padding-top: 1rem;
}


.foot-grid .single {
    display: grid;
    grid-template-columns: 5% 95%;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.foot-grid .single i {
    color: var(--color-main);
    font-size: 1.2rem;
}

.social-links {
    font-size: 1.5rem;
}


/* -------- Product [PAGE] -----  */
.all-pro {
    background: #e7f1ff;
    height: max-content;
    padding: 2rem 1rem;
    border-radius: 5px;
}

.product-list .single {
    display: flex;
    align-items: baseline;
    border-top: 1px solid var(--color-main);
    margin-top: 0.5rem;
}

.product-list .single i {
    margin-right: 0.2rem;
    color: var(--color-main);
}

.single-product.main img {
    width: 60%;
    margin-left: 20%;
    margin-bottom: 1rem;
}

.single-product.main .product-name {
    font-size: 2rem;
    text-align: left;
    color: var(--color-main);
}

.single-product.main .one-line h3 {
    font-weight: 600;
    color: var(--color-orange-dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.single-product.main .one-line h3::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 20%;
    background: var(--color-dark-green);
    bottom: 0;
    left: 0;
}

.product-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.pro-desc i {
    color: var(--color-main);
    font-weight: 600;
}


.pro-desc .single>li {
    font-weight: bold;
}

.pro-desc .single>ul {
    list-style: none;
}


/* ----------- About Us [PAGE] ----------  */
.about h2 span {
    color: var(--color-main);
    text-transform: uppercase;
}

.about .desc b {
    color: var(--color-main);
}

.about .desc strong {
    font-weight: 500;
    color: var(--color-main-light);
}

/* ==================== Whatsapp =================  */
.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    /* font-size: 30px; */
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;

    transform: all .5s ease;
    background-color: #25d366;
    line-height: 50px;

}

.whatsapp_float::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.whatsapp_float:focus {
    border: none;
    outline: none;
}

.whatsapp-icon {
    margin-top: 16px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 1;
    }
}


/* --- Media Queryy ----  */
@media only screen and (min-width: 870px) {
    .nav-mobile-toggle {
        display: none;
    }
}

@media only screen and (max-width: 870px) {
    .nav-call {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        height: 40px;
        width: 40px;
        background: var(--bg-white);
        border-radius: 50%;
    }

    nav {
        position: relative;
        z-index: 5;
    }

    .nav-links ul {
        background: var(--color-main-light);
        /* background-image: linear-gradient(to right top, #4aacae, #30c3a7, #57d789, #98e55a, #e5eb0f); */
        background: linear-gradient(to right, rgb(206, 208, 212), rgb(15, 213, 227));
        position: absolute;
        top: -600px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        width: 100vw;
        z-index: 2;
        padding-left: 0rem;
        gap: 0.5rem;
        transition: all 600ms ease-in-out;
    }

    .nav-links ul.active {
        top: 100px;
    }

    .nav-links ul li {
        width: 80%;
        text-align: center;
        padding: 2rem 0rem;
    }

    .nav-links ul li:hover {
        /* background: linear-gradient(to left bottom, #4aacae, #30c3a7, #57d789, #98e55a, #e5eb0f); */
        z-index: 5;
    }

    .nav-links ul li a {
        color: white;
        font-size: 1.2rem;
        font-weight: 500;
    }
}

@media only screen and (max-width: 850px) {
    .about p {
        font-size: 1rem;
    }

    .about h2 {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 720px) {
    .about h2 {
        font-size: 2.0rem;
        color: var(--color-main-light);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .form iframe {
        margin-top: 2rem;
        height: 250px !important;
    }

    .request_qu p {
        max-width: 90%;
    }
}

@media only screen and (max-width: 520px) {
    .request_qu p {
        max-width: 100%;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .products-grid h4 {
        text-align: center;
        margin: 0.5rem 0rem;
    }

    .products-grid img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        aspect-ratio: 1/2;
    }

    .subhead h2 {
        font-size: 2rem;
    }

    footer {
        background: var(--bg-beg);
        padding: 2rem 1rem;
    }

    nav {
        padding: 1rem 0.5rem;
        height: 80px;
    }

    .nav-links ul.active {
        top: 80px;
    }

    .nav-logo img {
        /* width: 80px;
        height: 60px; */
        object-fit: contain;
    }

    .nav-call a {
        background: var(--color-main-light);
        color: white;
        padding: 6px 10px;
        font-weight: 500;
        font-size: 1rem;
        transition: all 400ms ease-in-out;
    }

    .response .d-flex img {
        width: 80px;
    }

    .container {
        padding-top: 2rem;
    }

    /*------- Product [PAGE]   ----- */
    .single-product.main .product-name {
        font-size: 1.5rem;
    }

    .row.flex-row-reverse ol {
        padding-left: 1rem;
    }

    /* -------- Contact [PAGE] ----  */
    .about h2 {
        font-size: 1.2rem;
    }

    /* -------- Contact [PAGE] ----  */
    .contact-details .single {
        gap: 0.5rem;
    }

    .contact-details .single i {
        font-size: 1.5rem;
    }

    .contact-details .single a {
        font-size: 1.2rem;
        color: var(--color-main);
    }

}

.viewM {
    text-decoration: none;

}

.viewM {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0.8rem;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--color-dark-green);
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid var(--color-dark-green);
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 var(--color-dark-green);
}

.viewM:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 var(--color-dark-green);
}

.viewM:active {
    transform: scale(0.9);
}



/* ----------- Contact [PAGE] ----  */

.contact-info .social-icons {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.contact-info .h2{
    color: var(--color-dark-green);
}
.contact-info .social-icons a {
    height: 2.2rem;
    width: 2.2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--color-dark-green);
    text-decoration: none;
    color: var(--color-dark-green);
    transition: var(--transition-3);
}

.contact-info .social-icons a:hover {
    background: var(--color-dark-green);
    color: white;
}

.contact-info .list-unstyled li {
    padding-bottom: 1rem;
    font-weight: 500;
}

.contact-info .list-unstyled a {
    text-decoration: none;
    color: var(--color-dark-green);
    transition: var(--transition-3);
    font-weight: 400;
}

.contact-info .list-unstyled a:hover {
    text-decoration: underline;
    color: var(--color-dark-green);
    transition: var(--transition-3);
}


.contact-form input,
.contact-form textarea {
    padding: 0.4rem 0.8rem;
    background: var(--color-main-light);
    background: transparent;
    margin-bottom: 1rem;
    width: 100%;
    border: 1px solid var(--color-dark-green);
    outline: none;
    border-radius: 5px;
}
.contact-form input:focus,
.contact-form textarea:focus{
    border-color: transparent;
    border: 2px solid var(--color-dark-green);
}

.contact-form button[type="submit"] {
    background: var(--color-dark-green) !important;
    border: none;
    outline: none;
}