body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #081b29;
    background-size: cover;
    background-position: center;
    
    font-family: poppins;
background-color: #081b29;
}   

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 705px;
    z-index: 10px;
}

.navbar a{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
transition: .3s;
}

.navbar a:hover {
    color: #00abf0;
    
}

.logo {
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}



.wrapper{
    width: 1170px;
    margin: 5% auto;
}

.wrapper h2{
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 60px;
    color: #fff;
    margin: 0;
}

.single-service{
    position: relative;
    width: 31%;
    height: 320px;
    background: #fff;
    box-sizing: border-box;
    padding: 0 15px;
    transition: .5s;
    overflow: hidden;
    float: left;
    margin: 0 10px;
    text-align: center;
}

.line{
    width: 150px;
    height: 3px;
    background: #fff;
    margin: 0 auto 60px auto;
}

.single-service p{
    color: #262626;
    font-size: 14px;

}

.single-service h3{
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #262626;
}

.social{
    width: 60px;
    height: 60px;
    background: #262626;
    border-radius: 50%;
    margin: 5% auto; 
}

.social i{
    font-size: 30px;
    padding: 15px;
    color: #fff;
}


footer {
    background-color: #2c3e50; 
    color: #ecf0f1; 
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 500px;
    padding: 0 20px;
  }
  
  .footer-section {
    
    min-width: 250px;
    padding: 10px;
    text-align: center;
  }
  
  .footer-section p {
    margin: 10px 0;
  }
  
  .footer-section strong {
    font-size: 1.2em;
  }
  
  .footer-section a {
    color: #ecf0f1;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #3498db; 
  }
  

  .social-media a {
    margin: 0 10px;
    font-size: 24px;
    display: inline-block;
  }
  
  .social-media a i {
    transition: color 0.3s ease;
  }
  
  .social-media a i:hover {
    color: #3498db;
  }
  
