* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  nav {
    background-color: rgb(245, 239, 239);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: fixed;
    width: 100%;
  }
  
  nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  
  }
  
  
  nav ul img {
    max-width: 160px;
    margin-top: 0px;
    display: block;
  }
  
  nav li:not(:first-child) {
    height: 50px;
  }
  
  nav a {
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: red;
    font-weight: bold;
    font-size: 22px;
  
  }
  
  nav a:hover {
    background-color: rgb(202, 199, 199);
  
  }
  
  nav li:first-child {
    margin-right: auto;
  
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(163, 167, 164, 0.205);
    backdrop-filter: blur(25px);
    box-shadow: -10px 0 10px black rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
  }
  .k-img{
    max-width: 100%;
    height: auto;
    padding-top: 8px;
  
  }
  .k-img:hover{transform: scale(1.05);
    transition: transformation 0.4s ease-in-out;
  }
  
  .sidebar li {
    width: 100%;
  
  }
  
  .sidebar a {
    width: 100%;
  }
  
  @media(max-width: 800px) {
    .hideonmobile {
      display: none;
    }
  }
  
  @media(max-width: 400px) {
    .sidebar {
      width: 100%;
      background-color: black;
    }
  }/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Hero Section */
.hero-section {
  background: url('assets/images/bbbbb.JPG') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 50px 0;
  

}

/* About Us Section */
.about-us, .what-we-do {
  padding: 20px;
  background-color: #f9f9f9;
}

.about-us h2, .what-we-do h2 {
  text-align: center;
  margin-bottom: 20px;
}

.about-us .content, .what-we-do .content {
  gap: 20px;
  align-items: center;
  height: auto;
  
}

.about-us .text, .what-we-do .text {
  flex: 1;
}

.about-us .image, .what-we-do .image {
  flex: 1;
  text-align: center;
  height: auto;
}

.gallery {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.gallery img {
  width: 30%;
}
.btnnav{
  position: fixed;
  bottom: 10px;
  right: 2em;
  background-color: #eb1313;
  padding: 1em;
  border-radius: 20px;
  z-index: 10;
}
.contact-item a{
  text-decoration: none;
  color: green;
}
.contact-item{
  width: 25px;
}



/* Footer Section */
footer {
  text-align: center;
  padding: 10px;
  background: #333;
  color: white;
}
h3{
  color: #eb1313;
}


  