@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk&family=Poppins&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden !important; 
}

/* Logo */

#title{

    font-size: 32px;
    font-weight: bold;
    margin-left: 100px;
}

/* Navigation Bar */

nav ul {
    padding: 0;
    margin: auto;
    float: right;
    margin-right: 230px;
}

nav ul li {
    position: relative;
    list-style: none;
    display: inline-block;
}

nav ul li a {
    display: block;
    padding: 0 15px;
    color: #000;
    text-decoration: none;
    line-height: 70px;
    font-size: 20px;
}

nav ul li a:hover {
     background: rgb(222, 222, 222);
    }

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
  }

/* Section-1 Carousel */

.section-1{
    width: 95%;
    margin-left: 36px;
}

.carousel-inner img{
    height: 450px;
}

.section-1 p{
    font-size: 40px;
    color:#000000;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    padding: 30px;

}

/*Section-2 About Us */

.section-2 {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin-top: 70px;
}

.section-2 .part-2 img {
    width: 600px;
    height: auto;
    margin-left: 40px;
}

.section-2 .about{
    color: #63de47;
    font-weight: bolder;
    font-size: 40px;
}

.box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 5px solid #63de47;
    height: 100px;
}

.box h2 {
    color: #000;
    font-size: 55px;
    padding-left: 20px;
}

/* Section-3 Products */

.product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    margin-right: 50px;
}

.section-3 {
    width: 80%;
    margin-bottom: 50px;
    margin-left: 100px;
}

.section-3 img{

    height: 300px;
    width: 400px;
    padding: 10px;
    margin-left: 60px;
    box-shadow : 10px 10px 20px grey;
    border-radius: 20px;
}
 
/* Services */

.section-4 {
    width: 80%;
    margin-left: 100px;

}

.service {
    margin-bottom: 20px;
    font-size: 40px;
    color: #63de47;
    font-weight: bolder;
}

.boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;

}

.box-1 {
    
    margin-bottom: 20px;
    width: 400px;
    height: 300px;
    float: left;
    background-color: #fff;
    padding: 20px;
    box-shadow : 10px 10px 20px grey;
}

.box-1 p{
    padding:10px;
}

/* Section-5 Quote */

.section-5 {
    width: 100%;
    height: 150px;
    background: #63de47;
    margin-top: 50px;
    margin-bottom: 50px;
}

.quote {
    padding-top: 50px;
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: white;
}

.quote button {
    background: #fff;
    color: #000;
    width: 150px;
    height: 50px;
    border-radius: 40px;
    font-size: 25px;
    border: white;

}

.quote h1 {
    margin-right: 250px;
    font-size: 30px;
}

.quote button:hover {
    opacity: 0.8;
}

/*Section-6 Projects */

.section-6 {
    width: 80%;
    margin: auto;
    margin-left: 100px;

}

.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
   
}

.project img {
    border-radius: 20px;
    padding: 10px;
    box-shadow : 10px 10px 20px grey;
    height: 300px;
    width: 400px;
}


/*Section-7 Contact us */

.section-7 {
    width: 80%;
    margin: auto;
    margin-top: 50px;

}

.section-7 input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }

.section-7 input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }

.section-7 input[type=submit] {
    background-color: #04aa28;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    margin-top: 15px;
  }
  
.section-7 input[type=submit]:hover {
    background-color: #45a049;
  }

.container {
    border-radius: 15px;
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 30px;
  }
  
  .section-7 h2{

    font-size: 40px;
  }

/* Footer Section */

footer{
    margin-top: 30px;
    height: auto;
    width: 100%;
    background-color: #000;
    padding: 10px;
    text-align: center;
  }

footer p{
    color: #fff;
    font-size: 15px;
  }

footer a{
    text-decoration: none;
    color: #63de47;
  }

footer a:hover{
    color: darkgrey;
  }


@media screen and (max-width: 768px) {

        .header{
            position: static;
        }

        .section-1 {
        width: 100%;
        margin-right: 100px;
        }
        
        .section-2 .part-2 img {
            width: 300px;
            height: 350px;
        }
        
        .section-2 .part-1 .box {
            height: auto;
        }

        .section-3 .product {
            display: grid;
            grid-template-columns: repeat(1, 2fr);
            padding: 10px;
        }

        .section-3 .product .project img {
            width: 300px;
        }

        .section-3 h1 {
            font-size: 30px;
        }

        .section-4 .boxes .box-1 img {
            width: 100px;
        }

        .section-4 .boxes .box-1 p {
            font-size: 10px;
        }

        .section-4 .boxes .box-1 {
            width: 200px;
            height: 250px;
        }

        .section-5  {
            height: 90px;
        }
        .section-5 .quote {
            height: 30px;
        }

        .section-5 .quote button {
            font-size: 15px;
            width: 80px;
        }

        .section-6 .projects .project img {
            width: 300px;
        }
        
        .section-6 .projects {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        footer{
            width: 100%;
        }

    }

@media screen and (max-width:425px) {

        body {
            width: 100%;
        }

        .section-2 .part-1 .about {
        font-size: 20px;
        }

        .section-2 .part-1 p {
            font-size: 15px;
            margin-right: 20px;
        }

        .section-2 {
            display: block;
            width: 100%;
            float: none;
            margin-left: 60px;
        }

        .section-2 .part-2 img {
            height: 150px;
            width: 200px;
            margin-top: 10px;

        }

        .section-2  .part-1 .box  {
            width: 200px;
            margin-left: 40px;
        }

        .section-3 .product .project img {
            width: 200px;
        }
        
        .section-3 {
            margin-bottom: 200px;
        }
        
        .section-3 h1 {
            font-size: 14px;
        }
        
        .section-3 .product {
            display: inline-block;
        }
        
        .section-3 .btn button {
            margin-right: 150px;
            width: 60px;
            font-size: 8px;
        }

        .section-4 .boxes {
            display: inline-block;

        }

        .section-4 .boxes .box-1 {
            height: 240px;
        }

        .section-5  {
            display: none;
        }

        .section-5 .quote {
            height: 10px;
        }

        .section-5 .quote h1 {
            font-size: 8px;
        }

        .section-5 .quote button {
            font-size: 15px;
            width: 80px;
            margin-right: 150px;
        }

        .section-6 {
            width: 90%;
        }

        .section-6 h1 {
            font-size: 18px;
        }

        .section-6 .projects .project img {
            width: 230px;
        }

        .section-6 .projects {
            display: inline-block;
        }

        .section-6  .center button{
            width: 60px;
            font-size: 8px;
            margin-right: 150px;
            margin-bottom: 150px;
        }
        
        footer{
            width: 100%;
        }
    }
  

 