/* Reset default styles */


   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
}

.hd{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}


.container {
max-width: 960px;
margin: 0 auto;
padding: 0 20px;

}

header {
background-color: #333;
color: #fff;
padding: 20px;
background-image: url(banner.png);
}

nav {
display: flex;
align-items: center;
justify-content: space-between;
}

nav ul {
list-style-type: none;
}

nav ul li {
display: inline;
margin-left: 20px;
}

nav ul li a {
color: #fff;
text-decoration: none;
}


/* Add hover effect to menu items */
nav ul li a:hover {
    color: #ffd000; /* Replace with your desired hover color */
  }
  
  /* Add transition effect to smooth the hover transition */
  nav ul li a {
    transition: color 0.3s ease;
  }
  


  .h3{
    font-size: 50px;
    border-radius: 10px;
    background-color: bisque;
  }

.hero {
text-align: center;
padding: 100px 0;
}

.hero h2 {
font-size: 36px;
margin-bottom: 20px;
}

.hero p {
font-size: 18px;
margin-bottom: 20px;
}

.btn {
display: inline-block;
background-color: #333;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 10px;
}


/* Add hover action to the button in the hero section */
.hero .btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .hero .btn:hover {
    background-color: #ffd000;
    color: #333;
    border: 1px solid #333;
  }
  
.h4{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border-radius: 5px;
    background-color: #570505a1;
    
}

#services {
background-color: #383636;
padding: 80px 0;

}

#services h3 {
text-align: center;
margin-bottom: 40px;
}

.service {
text-align: center;
margin-bottom: 40px;
background-color:rgb(255, 145, 0);
border-radius: 20px;
}

.service img {
width: 400px;
height: auto;
margin-bottom: 20px;
border-radius: 20px;
width: 100%;
}



#projects {
background-color: #383636;
padding: 80px 0;
}

#projects h3 {
text-align: center;
margin-bottom: 40px;
}

.project {
text-align: center;
margin-bottom: 20px;
border-radius: 20px;
background-color: #ffd000;
}

.project img {
width: 100%;
height: 10px;
height: auto;
margin-bottom: 20px;

border-radius: 20px;
}

#contact {
padding: 80px 0;
text-align: center;
background-color: #383636;
}

#contact h3 {
margin-bottom: 40px;
}

form input,
form textarea {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border-radius: 4px;
}

form input[type="submit"] {
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}


/* Add hover action to the "Contact Us" button */
#contact input[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  #contact input[type="submit"]:hover {
    background-color: #ffd00f;
    color: #333;
    border: 1px solid #333;
  }
  

footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}

footer p {
margin: 0;
}

@media (max-width: 768px) {
.container {
padding: 0 10px;
}
}

@media (max-width: 768px) {
.container {
padding: 0 12px;
}
}





@media (max-width: 768px) {
    .container {
      padding: 0 10px;
    }
    
    header {
      padding: 10px;
    }
    
    nav ul li {
      margin-left: 10px;
    }
    
    .hero h2 {
      font-size: 28px;
    }
    
    .hero p {
      font-size: 12px;
    }
    
    .service img {
      width: 350px;
    }
    
    .project img {
      width: 350px;
    }
  }





































