/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Navigation Styles */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
}

.logo img {
  height: 50px;
}

.menu-toggle {
  display: none;
  background-color: #333;
  border: none;
  color: white;
  font-size: 24px;
}

.menu ul {
  list-style: none;
  display: flex;
}

.menu ul li {
  padding: 0 15px;
}

.menu ul li a {
  color: white;
  text-decoration: none;
}

.menu-list-login a {
  background-color: #007bff;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  .menu.show {
    display: block;
  }

  .menu ul {
    flex-direction: column;
  }

  .menu ul li {
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* Main Body and Sections */
section {
  padding: 20px;
  background-color: #f4f4f4;
}

.section1, .services {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section1 > div, .services > .headtitle {
  flex-basis: 50%;
}

.banner1 img, .servicebox1 img {
  max-width: 100%;
  height: auto;
}

/* Services Section */
.services {
  text-align: center;
}

.headtitle shahid {
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
}

.servicebox {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.servicebox1 {
  width: 45%;
  margin-bottom: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.servicebox1 a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
}

.fa {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .section1, .services {
    flex-direction: column;
  }

  .servicebox1 {
    width: 100%;
  }
}

/* Add other styles as needed for customization */
