*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;

}
body{
    background-color: rgb(255, 255, 255);
}


/* hero start */
header {
    width: 100%;
    background: white;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    z-index: 1000;
    transition: 0.3s;
    box-shadow: 0 0 4px 0 black;
  }
  
 .header-active{
    top: 0;
    width: 100%;
    border-radius: 0;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 2px 4px black;
 }
  
header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;

}
header .navbar ul li{
    margin: 0 16px;

}
header .navbar ul li a{
    font-size: 16px;
    font-weight: bolder;
    color: rgb(0, 177, 221);
    margin-right: 20px;
}
header .navbar ul li a:hover{
    color:rgb(0, 255, 170);
   transition: 0.5s ease-in-out;
}
.logo{
    font-size: 18px;
    font-weight: bolder;
    color: rgb(0, 177, 221);
    margin-left: 20px;
}
header i{
    font-size: 18px;
    color: rgb(0, 255, 170);
    margin-right: 10px;
}
#hamberger {
    font-size: 18px;
    color: rgb(0, 177, 221) ;
    cursor: pointer;
   display: none;
}

header .fa-times{
    transform: rotate(180deg);
    color:rgb(0, 255, 170) ;
}

@media (max-width:768px){
    html{
        font-size: 55%;
    }
    #hamberger {
       display: block;
    }
    header .navbar{
        position: fixed;
        top: -350px; left: 0;
        width: 100%;
        background-color: white;
        border-radius: 20px;
    }
    header .navbar ul{
        flex-flow: column;
        padding: 20px 0;
    }
    header .navbar ul li{
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }
    header .navbar ul li a{
        font-size: 16px;
        display: block;
    }
    
header .fa-times{
    transform: rotate(180deg);
    color:rgb(0, 255, 170) ;
}
header .nav-toggle{
    top: 53px; border-top: 1px solid black;

}
}

.home{
    min-height: 100vh;
    width: 100vw;
    background: url(./hero.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    overflow: hidden;
    position: relative;

    
}
.home .content{
  display: flex;
  align-items: center; justify-content: center; flex-flow: column; padding-top: 200px; padding-bottom: 40px; text-align: center;
}
.home .content h1{
    font-size: 40px; color:rgb(0, 177, 221) ;
    padding: 0 10px; text-shadow: 0 2px 1px rgb(0, 0, 0); font-weight: bolder;
}
.home .content p{
    font-size: 17px;
    color:rgb(255, 255, 255) ; padding: 10px 50px; 
}
.home .content button{
    height: 40px; width: 180px; border-radius: 30px; background-color: rgb(0, 255, 170); color: rgb(0, 0, 0);
    font-size: 16px; border: none; box-shadow: 0 3px 1px rgb(0, 0, 0); font-weight: bold;
}
.box-container{
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap; 
}
.box-container .box{
    height: 300px ; width: 300px; background-color: white; text-align: center; border-radius: 50%; box-shadow: 0 3px 1px black;
    margin: 20px; cursor: pointer;
}
.box-container .box i{
    height: 50px; width: 50px; line-height: 50px; font-size: 50px; text-align: center; border-radius: 50%; color: white;
    background-color:rgb(0, 177, 221) ; margin: 20px; padding: 20px;
} 
.box-container .box h3{
    font-size: 20px; color:  rgb(0, 255, 170); 
}
.box-container .box p{
    font-size: 10px; padding: 6px 20px; color: black;
}



/* about us start */


.about{
    min-height: 70vh;
    background: url(./hero2.png) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
    overflow: hidden;
    position: relative;
}
.heading-about{
    font-size: 50px;
    color: rgb(0, 177, 221) ;
    text-align: center;
    padding: 10px;
    padding-top: 20px;
    margin-top: 30px;
    font-weight: bolder;
    text-shadow: 0 1px 1px black;
} 

.title-about{
    padding: 5px;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    color:  rgb(0, 0, 0);
}
.container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text {
    flex: 1;
    padding: 10px;
}

.text h2 {
    font-size: 35px;
    color: rgb(0, 177, 221);
}

.text p {
    font-size: 15px;
    color: #000000;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        align-items: center;
    }

    .image,
    .text {
        flex: auto; /* Allow both elements to take full width on smaller screens */
        text-align: center;
    }

}



/* about us end */


/* Styles for larger screens (6 columns in one row) */
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.item {
    width: calc(30% - 10px); /* Adjust for four columns and spacing */
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Add box shadow */
    margin: 5px; /* Adjust for spacing */
    background-color: #ffffff;
    text-align: center;
}

.item h3 {
    margin: 10px 0;
}

.name{
    font-size: 20px; color:rgb(0, 177, 221) ;
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.buy-now:hover{
    letter-spacing: 1px; 
}
.buy-now{
    font-size:14px ;
    background-color:  rgb(0, 255, 170) ;
    border-radius: 30px; padding: 12px; text-align: center; color: #000000; box-shadow: 0 2px 1px; font-weight: bolder;
}
/* Add styles for the images within each item */
.item img {
    max-width: 100%; /* Ensure images do not exceed the width of the item */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any extra spacing around the image */
    margin: 0 auto; /* Center the image horizontally within the item */
}
/* Styles for smaller screens (2 columns in one row) */
@media (max-width: 768px) {
    .item {
        width: calc(40% - 10px); /* Display two items per row on smaller screens */
    }
}
/* about us start */



.heading-about1{
    font-size: 50px;
    color: rgb(0, 177, 221) ;
    text-align: center;
    padding: 10px;
    padding-top: 20px;
    margin-top: 30px;
    font-weight: bolder;
    text-shadow: 0 1px 1px black;
} 

.title-about1{
    padding: 5px;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    color:  rgb(0, 0, 0);
}
.container1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image1 {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.image1 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text1 {
    flex: 1;
    padding: 10px;
    margin-left: 20px;
}

.text1 h2 {
    font-size: 35px;
    color: rgb(0, 177, 221);
}

.text1 p {
    font-size: 15px;
    color: #000000;
}

@media (max-width: 768px) {
    .container1 {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        align-items: center;
    }

    .image1,
    .text1 {
        flex: auto; /* Allow both elements to take full width on smaller screens */
        text-align: center;
    }
}

/* about us end */

/* Review */
#testimonial{
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-width: 100vw;
    background: url(./hero\ 3.png); background-attachment: fixed;
}
#testimonial .heading{
    font-size: 50px;
    color: rgb(0, 177, 221) ;
    text-align: center;
    padding: 10px;
    padding-top: 20px;
    margin-top: 30px;
    font-weight: bolder;
    text-shadow: 0 1px 1px rgb(255, 255, 255);
}

#testimonial .box-containar{
    width: 90%;
}

#testimonial .box-containar .box{
    max-width: 600px;
    background: #ffffff; display: flex; align-items: center; justify-content: center;
    margin: 20px; margin-left: 60px; padding-left: 60px; position: relative; clear: both;
}
#testimonial .box-containar .box:nth-child(even){
    float: right;
}
#testimonial .box-containar .box img{
    position: absolute; top: 50%; left: -9%; transform: translateY(-50%); height: 120px; width: 120px;
    border-radius: 50%; border: 3px solid rgb(0, 177, 221); box-shadow: 0 0 10px black; object-fit: cover;
}
#testimonial .box-containar .box .info h2{
  margin-top: -25px; margin: 20px; color: #000000; text-align: right;
}
#testimonial .box-containar .box .info p{
    font-size: 16px; padding: 10px; color: #000000; margin-left: 20px; 
}
#testimonial .box-containar .box .info i{
    padding: 10px; color: rgb(0, 177, 221);
}

@media (max-width:500px){
    #testimonial .box-containar .box{
        padding: 5px; margin-top: 120px; margin-left: 0; margin-right: 0;
    }
    #testimonial .box-containar .box img{
        left: 50%; transform: translateX(-50%); top: -30%; height: 100px; width: 100px;
    }
    #testimonial .box-containar .box .info{
        text-align: center;
    }
    #testimonial .box-containar .box .info p{
        padding-top: 60px; font-size: 12px;
    }
    #testimonial .box-containar .box .info h2{
        text-align: center; margin: 10px; font-size: 12px;
    }
    #testimonial .box-containar .box:nth-child(even){
        float: none;
    }
}



@media (max-width:450px){

    .heading-about{
        font-size: 30px;
    } 
    
    .title-about{
        font-size: 14px;
    }
    .heading-about1{
        font-size: 30px;
    } 
    
    .title-about1{
        font-size: 14px;
    }
    .text h2{
        font-size: 25px;
    }
    .text p{
        font-size: 12px;
    }
    .text1 h2{
        font-size: 25px;
    }
    .text1 p{
        font-size: 12px;
    }
    #testimonial .heading{
        font-size: 30px;
    }
    .buy-now{
        font-size: 10px; padding: 7px; 
    }
    .name{
        font-size: 12px;
    }
}

.contact .row{
display: flex; align-items: center; justify-content: center; padding: 30px 0; 
}
.contact .row .image img{
    width: 50vw; height: 70vh;
}
.contact .row .form-container{
    width: 50%; padding-right: 50px;
}
.contact .row .form-container input, textarea{
    height: 40px; width: 100%; background-color: #000000; border: none; border-radius: 30px; padding: 0 10px; margin: 10px 0;
    color: rgb(0, 177, 221); font-size: 16px;
}
.contact .row .form-container input:focus, textarea:focus{
    border: 4px solid rgb(0, 255, 170);
}
.contact .row .form-container textarea{
    height: 120px; border-radius: 10px; padding: 10px; resize: none;
}
.contact .row .form-container input[type="submit"]{
    width: 160px; background:  rgb(0, 255, 170);font-size: 16px; cursor: pointer; color: #000000; font-weight: bolder; 
    box-shadow: 0 3px 1px rgb(0, 0, 0);
}
.contact .row .form-container input[type="submit"]:hover{
    box-shadow: 0 0px 1px rgb(0, 0, 0); letter-spacing: 1px;
}

@media (max-width:768px){
    .contact .row {
        flex-flow: column; 
    }
    .contact .row .image img{
        height: 50vh; width: 90vw;
    }
    .contact .row .form-container{
        width: 80%; padding: 0;
    }
    .about1{
        flex-direction: column-reverse;
    }
}
.footer{
    font-size: 12px; background-color:rgb(0, 255, 170); padding: 15px; text-align: center; color: #000000; font-weight: bolder;
}

