* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --color-beg: #aa2540a6;
    --color-beg-light: #aa2540;
    --color-main: #01b0db;
    --color-main-light: #01afdbbd;
    --color-black: #1A1B1E;

    /* --bg-beg: #f8eaea; */
    --bg-beg: #e7e7e7;
    --bg-white: #f3f5f6;
}

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: 3rem 1rem;
    text-align: center;
    background: linear-gradient(to left, rgba(65, 107, 192, 0.6), rgba(15, 213, 227, 0.6));
}
.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: 200px;
    /* width: 150px; */
    /* height: 100px; */
    object-fit: contain;
    
}
body{
    /* background: #e7f1ff; */
}
nav {
    background: #e7f1ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 1rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 400ms ease-in;
    z-index: 50;
}

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 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;
}
.about b {
    font-weight: 500;
}

/* ---- products-grid ---  */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 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;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    transition: all 300ms ease-in;
}
.products-grid .single:hover {
    /* background: var(--bg-white); */
    background: #e7f1ff;
}
.products-grid .img{
    /* text-align: center; */
    width: 100%;
}
.products-grid img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    aspect-ratio: 1/2;
}

.products-grid .single h4 {
    margin: 0.5rem 0rem;
    font-weight: 500;
    font-size: 1.2rem;
}
.products-grid .single p{
    color: rgb(73, 69, 69);
    font-weight: 300;
    margin-bottom: 0.2rem;
}
.products-grid .single .read-btn{
    padding: 12px 15px;
    background: var(--color-main-light);
    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;
    padding: 5rem 1rem;
    margin: 2rem auto;
}

.request_qu p {
    margin-bottom: 2rem !important;
    max-width: 80%;
    margin: auto;
}

.request_btn {
    background: var(--color-main-light);
    padding: 10px 15px;
    color: white;
}

.request_btn:hover {
    color: white;
}

/* -------- FAQs --------- */
.faqs{
    background: #f5f5f5;
    /* background: #43c4e442; */
    padding-bottom: 2rem;
}
.accordion-button{
    transition: all 400ms ease-in;
}
.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) {
    color: var(--color-main);
    background-color: #e7f1ff;
    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%);
}

/* ---- 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 {
    background: var(--bg-beg);
    padding: 2rem 5rem;
}

footer .logo img {
    height: 30px;
    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] -----  */
.product-page{
    background: var(--bg-white);
}
.single-product .img , .deta-desc , .product-desc{
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
}

.product-page>.container-fluid{
    padding: 0rem;
}
.single-product .img img {
    width: 100%;
    max-height: 35rem;
    object-fit: contain;
}

.single-product .product-desc , .img{
    margin-bottom: 1rem;
}
.product-desc h2{
    color: var(--color-main);
}
.product-desc h5{
    color: var(--color-main-light);
}

.product-desc .table-main h4{
    font-weight: 400;
}

.product-desc .btns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.product-desc .btns a{
    display: block;
    border: 1px solid  var(--color-main);
    color: var(--color-main);
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    text-align: center;
    border-radius: 10px;
    transition: all 400ms ease-in;
}
.product-desc .btns a:hover{
    display: block;
    background: var(--color-main);
    color: white;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    text-align: center;
    border-radius: 10px;
    transition: all 400ms ease-in;
}


.single-product .deta-desc{
    margin-bottom: 1rem;
}
.single-product .deta-desc .head{
    border-bottom: 1px solid var(--bg-beg);
    padding-bottom: 0.4rem;
    font-size: 1.2rem;
    font-weight: 500;
}
.single-product .deta-desc .single th{
    font-weight: 400;
    width: 50%;
}
.single-product .deta-desc .single td{
    font-weight: 450;
}

.single-product .deta-desc .single .table > :not(caption) > * > * {
    border-bottom-width: 0px;
}


















































/* ----------- Contact [PAGE] ----  */
.contact-details{
    display: grid;
    background: rgb(231, 241, 255);
    background: linear-gradient(to right, rgba(206, 208, 212, 0.6), rgba(15, 213, 227, 0.6));
}
.contact-details .single {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-main);
    padding: 1rem;
}
.contact-details .single i{
    font-size: 2rem;
}
.contact-details .single a{
    font-size: 1.5rem;
    color: var(--color-main);
}

/* ----------- About Us [PAGE] ----------  */
.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;
    }

    .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);
    }
    
}

@media only screen and (max-width: 450px){
    /* --- Product [PAGE] ---  */
    .single-product .img img {
        object-fit: contain;
    }
    .product-desc .btns {
        grid-template-columns: repeat(1,1fr);
    }

}

.head1{
    text-align: center;
}
.imgFit{
    width: 100%;
}

.about .row .desc ul li{
    list-style: disc;
} 