@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    --black:rgb(20, 0, 53);
    --darkGrey: rgb(16, 0, 45);
    --green:rgb(165, 236, 0);
    --white: rgb(255, 255, 255);
    --lightGrey:rgb(225, 225, 225);
    --button:linear-gradient(30deg, rgb(60, 0, 255) 45%, rgb(111, 0, 255) 70%, rgb(166, 0, 255) 100%);
}

html{
    scroll-behavior: smooth;
}

body{
    
    background-color: var(--white);
}

a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

p{
    font-size: 16px;
    line-height: 150%;
    
}

.mobile{
    display: none;
}


.navbar{
    display: flex;
    z-index: 111;
    background-color: transparent;
    backdrop-filter: blur(5px);
    height:80px;
    border-radius: 50px;
    padding:10px 150px;
    align-items: center;
    justify-content: space-between;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
}


.logo img{
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu{
    list-style: none;
    margin: 0 50px;

    
}

.menuItem{
    text-decoration: none;
    display: flex;
    justify-content:space-between;

}

.menuLink{
    margin: 0 0.5rem;
    padding:0 1rem;
    transition: all ease 0.3s;
}

.menuLink:hover{
    color: rgb(0, 134, 49);
    transition: all ease 0.3s;
}

.NavCTA, .CTA{
    font-size: 16px;
    background: var(--button);
    border-radius: 50px;
    color: var(--white);
    padding:15px 40px;
    display: flex;
    align-items:center;
    justify-content: center;
    transition: all ease .5s;
    position: relative;
    overflow: hidden;
    
}


.NavCTA:hover, .CTA:hover{
    color: var(--white);
    background: var(--black);
    transition: all ease .3s;

    
}

.container{
    width: 1120px;
    margin: 0 auto;

}



.showcaseText{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
width: 100%;
gap:50px;
padding:100px 0 75px 0;
}

.mainHeading{
    font-size: 32px;
    text-align: center;
    font-weight: 700;

}

.tags{
    font-size: 16px;
    padding:10px 20px;
    border-radius: 10px;
    background-color: antiquewhite;
}

.desktopno{
    display: none;
}

.peach{
    background: linear-gradient(167deg, rgb(246, 218, 255) 45%, rgb(220, 149, 255) 87%, rgb(236, 187, 255) 100%);
}

.almond{
    background: linear-gradient(167deg, rgba(255,214,187,1) 45%, rgba(255,170,105,1) 87%, rgba(255,216,162,1) 100%);
}

.pistachio{
    background: linear-gradient(167deg, rgba(234,255,187,1) 45%, rgba(206,255,105,1) 87%, rgba(231,255,162,1) 100%);
}

.cashew{
    background: linear-gradient(167deg, rgba(250,255,187,1) 45%, rgba(255,233,105,1) 87%, rgba(247,255,162,1) 100%);
}

.CTA{
    padding:15px 42px;
    
}
.CTA:hover{
    background-color: var(--black);
    color: var(--white);
    transition: .5s ease all;
}



.imageColumn1{
    margin:80px 0 0 0;
    width:100%;
    height:100%;

}


.imageColumn2{
    margin-top: 25px;

}





.img{
    width:200px;
    height: 300px;
    background-color: darkgray;
    margin: 20px 0;
    border-radius: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    

}


.googleReview{
    height:35px;
}


/* project slider  */

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
}

.slider::before{
    content: '';
    width:10%;
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0) 100%);
    z-index: 11;
}

.slider::after{
    content: '';
    width:10%;
    height: 100%;
    position: absolute;
    top: 0;
    right:0;
    background: linear-gradient(270deg, rgb(255, 255, 255) 5%, rgba(255,255,255,0) 100%);
    z-index: 11;
}

.slider-container {
    display: flex;
    width: 300%;
    animation: slide 25s linear infinite;
    gap:50px;
}
.card {
    width: 20%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    
}

.card:hover .projectImage{
    scale: 1.05;
    transition: all ease 2s;
}

.projectImage {
    width: 100%;
    height: auto;
    display: block;
    transition: all ease 2s;
}
.projectTagsBox {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    gap: 10px;
}

.ProjectTag{
    padding: 5px 15px;
    border-radius: 8px;
}
@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Product Section */


.productSection{
    margin: 150px 0 80px 0;

}

.productGridBox{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 75px;
    column-gap: 25px;
    
}

.imageBox{
    overflow: hidden;
    border-radius: 12px;
    transition: all .5s ease;
    position: relative;
}

.productImage{
    overflow: hidden;
    width:100%;
    border-radius: 12px;
    transition: all .5s ease;
    transform: scale(1);
}

.productBox:hover .productImage{
    transition: all .5s ease;
    transform: scale(1.1);
}

.productDetails{
    margin-top: 20px;
}

.priceBox{
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price{
    font-size: 20px;
}
.enquiry{
    padding:10px 15px;
    background-color: var(--lightGrey);
    border-radius: 12px;
     transition: all .5s ease;
}

.productBox:hover .enquiry{
    background-color: var(--black);
    color: white;
    transition: all .5s ease;

}


/* USPSection */

.USPSection{
    background-color: rgb(255, 251, 230);
    padding:60px 0;
}

.USPGridBox{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:75px;


}

.USPItem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.USPImage{
    width:40%;
    margin-bottom: 25px;

    
}

.USPHeading, 
.USPText{
    margin-top: 10px;
    text-align: center;
    color: darkblue;
}

.Sectiondeading{
    font-size: 36px;
    color: var(--black);
    margin-bottom: 40px;
}

.buttonBox{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.button{
    font-size: 24px;
    color: var(--white);
    background: var(--button);
    padding:10px 40px;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.button:hover{
    background: linear-gradient(30deg, rgb(0, 0, 0), darkblue);
    transition: all 0.3s ease;

}


footer{
    width: 100%;
    padding: 150px;
    height: 100vh;
    background: linear-gradient(0deg, rgb(0, 0, 0), darkblue);
    position: relative;
}

.footercontent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:40px;
}

.footerlogo{
    width:200px;
}

.contactBox,
.socialMedia{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:20px; 
}

.contactBox{
        flex-direction: column;

}

.contact{
    color: var(--white);
}

.contact:hover,
.brandingText a:hover{
    color: rgb(0, 153, 255);
}

.branding{
    position: absolute;
    bottom: 10px;
    left: 50%;
    color: var(--white);
    transform: translateX(-50%);

}

.brandingText a{
    
color: var(--white);

}



.moq{
    padding:7px 15px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
}



/* ===================================== */
/* ========== RESPONSIVE CODE ========== */
/* ===================================== */

/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
    .productGridBox {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 50px;
    }
    .USPGridBox {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    .mainHeading {
        font-size: 28px;
    }
}

@media only screen and (max-width: 768px) {
    
    
    body{
        overflow-x: hidden;
    }
    
    .container {
        width:calc(100% - 40px);
    }

    .CTASection{
        height:50vh; 
    
    }
   

    .mobile{
        display:block;
    }

    .desktop{
        display: none;
    }
        

.navbar{
    top:0;
    left:0;
    background-color: var(--white);
    transform: translate(0, 0);
    width:100%;
    height:80px;
    border-radius: 0;
    padding:20px 20px;
    align-items: center;
    justify-content: space-between;


}

.logo{
    height:45px;
}
    .menu{
    width:100%;
    background-color: white;
    min-height: calc(100vh - 70px);
    padding:0 50px 50px 0;
    position: fixed;
    z-index: 1000;
    top:70px;
    right:-110%;
    overflow: hidden; 
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.5s;
    margin: 0;
    display: flex;
    align-items: end;
   justify-content: end;
   
    
    }

    .menu.open{
        right:0;
        opacity: 1;
        visibility: visible;
    }

    .menuItem{
        flex-direction: column;
        width:100%;
        height:80%;
        padding-top:40px; 
        text-align: right;
   
    }


    .menuLink{
        color:var(--black);
        font-size: 24px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        padding:24px 0;
        width: 100%;
        margin: 0 auto;
        display: inline-block;
 
    }




/*  */

    .menuToggle{
        display: block;
        background-color: transparent;
        border: 3px solid transparent;
        outline: none;
        padding: 0 5px;
        cursor: pointer;
    
    }
    
    .menuToggle span,
    .menuToggle span::before, 
    .menuToggle span::after{
    display: block;
    content: '';
    background-color: var(--black);
    height: 3px;
    width: 30px;
    border-radius: 10px;
    transition: all ease-in-out 0.3s;
    }
    .menuToggle span::before{
        transform: translateY(-8px);
    
    }
    .menuToggle span::after{
        transform: translateY(5px);
    }

    .menuToggle.open-menuToggle span
{
    background-color: transparent;
}
    .menuToggle.open-menuToggle span::before{
    transform: translateY(0px) rotate(45deg);
}
    .menuToggle.open-menuToggle span::after{
    transform: translateY(-3px) rotate(-45deg);
}

.mainHeading {
    font-size: 32px;
    
}

.margin{
    margin-bottom: 50px;
}

.slider-container {
  
    width: 800%;
    height: 400px;
    gap: 30px;
}

.productGridBox{

    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 25px;
    
}

.tags{
    font-size: 12px;
}

.productName{
    font-size: 16px;
}

.enquiry{
    font-size: 12px;
}


}