* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* part1 */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
    opacity: 05px;
}
.navbar h1{
    
    color: #007FFF;
  text-decoration: none;
  padding: 14px 20px;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-style: normal;

}
.brand h1{
font-size: 40px;
}
.navbar a {
    color: #007FFF;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;

}
.navbar a:hover {
   background-color: #ddd; 
   color: black;
   border-radius: 50px;
   }
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color:#007FFF;
}
.links 
{ 
  display: flex; 

}
.links a { 
  padding: 14px 20px; 
}
.menu-toggle:hover{
  background-color: #ccc;
  color: black;
  border-radius: 100px;
}

/* part2 */

.main{
margin-left: 60px;
}


.container {
    max-width: 1400px; 
    margin: 50px auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 15px;
    background-color: #f3f3f3;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.form-container {
    width: 68%; 
    padding: 30px; 
    border-radius: 8px;
}
.form-container p{
    font-size: 10px;
    font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: normal;
}
.form-container p{
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: normal;
}
.company-info{
margin-top: 40px;
}
.company-info p{
font-size: 20px;
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: normal;
}

h1 {
    color: #007FFF;
    margin-bottom: 10px;
    font-size: 70px;
    font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: normal;
}

form {
    display: flex;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 48%;
    margin-bottom: 20px;
}

.form-group:nth-child(2n+1) {
    margin-right: 4%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
font-weight: 900;
font-style: normal;
color: black;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px; 
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 870px;
}

textarea {
    height: 120px; 
}

button {
    width: 100%;
    padding: 14px; 
    background-color: #007FFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

button:hover {
    background-color: #004FC5;
}

.company-info {
    width: 28%; 
    padding: 30px; 
    border-radius: 8px;
    text-align: center;
}

.company-info p {
    margin-bottom: 10px;
}


/* part3 */


.footer-container {
    background-color: #007FFF;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .footer-content div {
    margin: 20px;
    flex: 1;
  }
  .footer-content h3 {
    background-color: #007FFF;
    color:white ;
    margin-bottom: 15px;
    border-radius: 20px;
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    
  }
  .footer-content ul {
    list-style-type: none;
    padding: 0;
    font-size: 17px;
  }
  .footer-content ul li {
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
  font-weight: 300;
  }
  .footer-content ul li a {
    text-decoration: none;
    color: #333;
  }
  .footer-content ul li a:hover {
    background-color: #33363D;
    color:white ;
    border-radius: 50px;
  }
  .footer-content .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
  }
  .footer-content .social-icons a {
    color: #fff;
    background-color: #007FFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
  }
  .footer-map {
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
  }


/* media quree */


@media (max-width: 768px) {

/* part1 */

.links {
    display: none;
    flex-direction: column;
    width: 100%;
}
.links.active { display: flex; }
.menu-toggle { display: block; }



    /* part2 */

    .main{
      margin-left: -10px;
      }
      .form-group input{
        width: 700px;
      }

    .container {
        flex-direction: column;
        align-items: center;
        width: 800px;
    }

    .form-container, .company-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-group {
        flex: 1 1 100%;
        margin-right: 0;
    }
    .menu-toggle{
width: 100px;
    }
    #question{
width: 700px;
    }
}

@media (max-width: 600px) {

/* part1 */

.overlay h1 {
    font-size: 2em;
    width: 50px;
}

.overlay p {
    font-size: 1em;
}
.overlay {
    width: 90%;
    padding: 15px;
}
.navbar h1{
  width: 400px;
  font-size: 30px;
}
.navbar{
  width: 600px;
}

    /* part2 */

    .form-group input, .form-group textarea {
        font-size: 14px;
        padding: 8px;
    }
    .form-group input{
      width: 500px;
    }

    button {
        font-size: 16px;
        padding: 10px;
    }

    h1 {
        font-size: 50px;
    }
      .form-group input{
width:500px;
      }
      #question{
width: 500px;
      }

      .container{
        width: 610px;
      }

}








































