
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
    body {
            background-color: #faf9f6;
    }

        /* header style */
    header {
      background-color: #000000;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
           }

header .Brand{
color: aqua;

}

.Brand h1{
    font-size: 1.8rem;
  letter-spacing: 1px;
}

header .nav-main nav ul{
list-style:none ;
display: flex;
margin-right:30px;

}

header .nav-main nav ul a{
  color: aqua;
}

header h1 {margin: 0;
  font-size: 28px;
  margin-left: 30px;

}
    
nav a {
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;  
}

  a :hover{
    color: white;
  }

  /* the hero style */

  .hero {
   background:linear-gradient(rgba(187, 187, 189, 0.2),rgba(24, 55, 85, 0.9)) ,url('images/b3.jpeg') center/cover no-repeat;                                           
   height: 70vh;
   display: flex;
   align-items:center;
   justify-content: center;
   text-align: center;
   color: rgb(252, 252, 252);
   padding: 20px;
  }

  .hero h2 {
    font: 48px;
    max-width: 800px;
  }

  .hero p {
    font-size: 20px;
    margin:  20px auto;
    max-width: 600px;
  }

  .cta-btn {
  background: #06c7f2;
  color: #111;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  }
  
 /* the services style */

.section h2 {
  text-align: center;
  padding-bottom: 10px;
}

.service-box h3{
  text-align: center;
  display: flex;
  justify-content: center;
}

.service-box p{
  color: rgb(8, 7, 7);
  text-align: center;
  display: flex;
  justify-content: center;
}

/* footer style */
footer{
background-color: #111;
color: white;
text-align: center;
padding: 20px;
margin-top: 40px;
}















