
@import url('https://fonts.google.com/specimen/Quicksand?query=quicksan');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

html,
body {
    width: 100%;
    height: 100vh;
}

:root {
    --main-clr: #00448B;
}

.home-section {
    width: 100%;
    height: 100vh;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1% 5%;
    background: #fff;
    width: 100%;
    /* position: fixed; */
    height: 50px;
    left: 0;
    top: 0;
}

.logo img {
    width: 150px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.menu{
    display: none;
}
.menu-bar{
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 20px;
    top: 0;
    right: 0;
    background: #fff;
    width: 200px;
    height: 100vh;
    padding: 20px 20px;
    z-index: 999;
    transform: translateX(100%);
    transition: all .3s ease-in;
}
.close-menu{
    margin-bottom: 10px;
}
.menu-bar a{
   text-decoration: none;
   color: var(--main-clr);
   cursor: pointer;
}
.menu-active{
    transform: translateX(0%);
}
.navbar a {
    text-decoration: none;
    color: #000;
}

.home {
    width: 100%;
    height: calc(100% - 50px);
    position: relative;
    /* padding: 5%; */
}

.home-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
}

.left-home {
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, #00438bc4, #ffffff08);
    padding: 7% 5%;
    color: #fff;
}
.left-home p{
    font-size:16px;
}
.left-home h1 {
    font-size: 5vw;
}

.left-home p:nth-child(3) {
    display: block;
    margin: 20px 0px;
}

.left-home button {
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-weight: 600;
}

.category {
    margin: 4% 3%;
    padding: 10px 2%;
    border: 1px solid var(--main-clr);
    border-radius: 30px;
}
.category h1{
    margin-left:3%;
    font-size: 2rem;
    color: var(--main-clr);
}

.category-grid {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    border-radius: 20px;
}

.category-navbar {
    width: 30%;
    border-radius: 20px 0px 0px 20px;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
}

.cat-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    height: 33%;
    padding: 0px 10px;
    border-bottom: 2px solid var(--main-clr);
    background: #fff;
    cursor: pointer;
    padding:0px 20px;
}

.cat-nav:nth-child(2) {
    border-radius: 0px 20px 0px 0px;
}
.cat-img{
    width: 70px;
    border-radius: 50%;
    background: #fff;
    height: 70px;
}
.cat-img img {
    width: 70px;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.cat-nav-active {
    background: #00438b2c;
    border-radius: 20px 0px 0px 20px !important;
    border: none;
    position: relative;
}

.category-product {
    width: 70%;
    background: #00438b2c;
    height: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-radius:0px 20px 20px 0px;
}

.product {
    width: 30%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
}

.product img {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 16/9;
}
.prod-img p{
    font-size: 14px;
    margin:5px;
}

.category-product2,
.category-product3 {
    display: none;
}

.cat-nav1-dactive {
    border-radius: 0px 0px 20px 0px !important;
    background: red;
}

.cat-nav3-dactive {
    border-radius: 0px 20px 0px 0px !important;
}

/* about section */
.about-section {
    padding: 1% 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-img {
    width: 50%;
    height: 400px;
    position: relative;
}

.about-img img {
    width: 70%;
    height: 100%;
    object-fit: cover;
}


.about-bg2 {
    position: absolute;
    bottom: -24px;
    right: 10px;
    width: 50% !important;
    height: 70% !important;
    border: 8px solid #fff;
}


.about-info {
    width: 49%;
}

.about-info h1 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--main-clr);
    font-size:2rem;
}

.about-info p {
    text-align: justify;
    font-size: 14px;
    margin-bottom: 5px;
}

.offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5%;
}

.offer img {
    width: 47%;
}

.why {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1% 5%;
    margin:15px 0px;
}

.why-info {
    width: 49%;
}

.why-img {
    width: 49%;
    /*height: 400px;*/
}

.why-img img {
    width: 100%;
     aspect-ratio:1/1;
    object-fit: cover;
    object-position: right;
    border-radius: 10px;
}

.why-info h1 {
    font-size: 2rem;
    color: var(--main-clr);
    margin-bottom: 10px;
}

.why-info-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 15px auto;
}

.why-info-icon .icon-div {
    width: 60px !important;
    height: 60px;
    min-width:60px;
    border-radius: 50%;
    background: var(--main-clr);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-info-icon .icon-div i {
    font-size: 25px;
    color: #fff;
}

/*.para-div {*/
/*    width: 60%;*/
/*}*/
.why-info p{
    font-size:14px;
}
.social-media {
    margin: 2% 5%;
    padding: 3%;
    background: var(--main-clr);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2.3rem;
}

.para p {
    color: #fff;
}

.social-media-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-media-icon p {
    color: #fff;
}

.social-media-icon div>a {
    text-decoration: none;
    font-size:1.5rem;
    color: #fff;
    margin: 0px 10px;
}

.testmonial {
    position: relative;
    padding: 5%;
    background: #00438b3e;
    /* height: 70vh; */
    margin:20px 0px;

}

.testmonial h1 {
    text-align: center;
    color: #fff;
    font-size:2rem;
}

.tbg {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -2;
}

.tbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;

}

.testmonial-box {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-radius:10px;
    gap:10px;
}

.t-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -50px;
}

.t-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review p {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 10px;
}

.Contact {
    margin: 20px;
}

.contact-us {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2% 5%;
}

.Contact h1 {
    /* width: 100%; */
    text-align: center;
    font-size: 2rem;
    color: var(--main-clr);
}

.contact-us-left {
    width: 50%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-us-right {
    width: 50%;
    height: 200px;
}

.contact-us-right iframe {
    width: 100%;
    height: 100%;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.contact-icon div:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-clr);
    color: #fff;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
}

.contact-icon div:nth-child(2) {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;

}

.contact-icon div:nth-child(2) p{
    font-size: 16px;
    font-weight: 600;
}
.contact-icon div:nth-child(2) a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 1% 5%;
    background: var(--main-clr);
    color: #fff;
    font-size: 14px;
}
footer a{
   text-decoration: none;
    color: chartreuse;
}
footer a:nth-child(2){
   width: 30px;
   min-width: 30px;
   height: 30px;
   border: 2px solid #fff;
   display: grid;
   align-content: center;
   justify-content: center;
   color:#fff!important;
}
.r-name p{
    font-weight:600;
}
.whatsbtn{
    position:fixed;
    width:60px;
    height:60px;
    bottom:20px;
    left:5%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:green;
    border-radius:50%;
}
.whatsbtn a{
    text-decoration:none;
    color:#fff;
    font-size:2rem;
}
.ourteamh1{
    text-align:center;
    margin:20px;
    font-size:2rem;
    color:var(--main-clr);
}
.ourteam{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:100px;
    padding:3% 5%;
}
.ourteam div {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
}
.ourteam div p:nth-child(1){
    font-size:1.5rem;
    color:var(--main-clr);
    font-weight:600;
}

@media (width <=768px) {
    .navbar {
        display: none;
    }
    .home-section{
        height:75vh;
    }
    .home-img img {
    object-position: center;
    }
    .category h1{
        text-align: center;
    }
    .left-home h1 {
        font-size: 7vh;
    }
    .left-home {
        width: 100%;
    }
    .menu{
        display: block;
    }

    .category-grid {
        flex-direction: column;
        gap:20px
    }

    .category-navbar {
        width: 100%;
        flex-direction: column;
    }

    .cat-nav {
        /* flex-direction: column; */
        width: 100%;
    }

    .category-product {
        width: 100%;
    }

    .product {
        width: 45%;
    }

    /* .cat-nav:nth-child(2) {
        border-radius: 0px 0px 0px 20px;
    } */

    .about-section {
        flex-direction: column;
        gap: 40px;
    }

    .about-img {
        width: 100%;
    }

    .about-img img {
        width: 100%;
    }

    .about-info {
        width: 100%;
    }

    .offer,
    .why {
        flex-direction: column;
        gap: 20px;
    }

    .offer img {
        width: 100%;
    }

    .why-info,
    .why-img {
        width: 100%;
    }

    .social-media {
        flex-direction: column;
        font-size: 1.2rem;
        gap: 10px;
    }

    .testimonials-grid {
        flex-direction: column;
        gap: 50px;
    }

    .testmonial-box {
        width: 100%;
    }

    .contact-us {
        flex-direction: column;
        gap: 20px;
    }

    .contact-us-left,
    .contact-us-right {
        width: 100%;
    }
    .para p{
        text-align:center;
    }
    .ourteam{
        flex-direction:column;
        gap:30px
    }
}