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

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

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #007bff49;
  
}

.blue-text {
  color: #007bff;
}

ul{
list-style: none;
display: flex;
gap: 30px;

}


.home {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #007bff49;
}

.content {
  flex: 1;
  min-width: 280px;
}

.content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #007bff;
}

.content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background-color: #ff8800;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.image img {
  max-width: 100%;
  height: auto;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  .content h1 {
    font-size: 28px;
  }

  .btn {
    width: 100%;
  }
}
.services-section {
  display: flex;
  top: -100px;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 9999;
}

.service-card {
  background-color: #f9f9f9;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex: 1;
  max-width: 400px;
  height: 200px;
  
}

.service-card i {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card p {
  font-weight: bold;
}

.service-card.active {
  background: linear-gradient(to right, #ff6600, #ff9933);
  color: white;
}

.service-card:hover {
  transform: translateY(-5px);

}
.about{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  gap: 30px;
  background-color: white;
}
.aboutus{
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about h2{
  font-size: 50px;
  color: black;
  padding: 30px;
}
.about p{
font-size: larger;
color: rgba(0, 0, 0, 0.321);
padding: 30px;

}
.readmore{
 display: flex;
  background-color: #172b8d99;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold; 
  width: 200px;
}
.imeg2 {
  flex: 1;
  min-width: 280px;
  text-align: right;
 
}
.imeg2 img {
  max-width: 100%;
  height: auto;

}
.Services{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  gap: 30px;
  background-color: rgba(110, 110, 160, 0.54);
}
.Servicesus{
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
}
.Servicesus h2{
 font-size: 30px;
 color: blue;
  padding: 30px;
}
.Servicesus p{
font-size: larger;
color: rgba(0, 0, 0, 0.536);
padding: 30px;

}
.contactus{
 background: linear-gradient(to right, #ff6600, #ff9933);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold; 
  width: 150px;
  height: 50px;
  
}
.imeg3 {
  flex: 1;
  min-width: 280px;
  text-align: left;
 
}
.imeg3 img {
  max-width: 100%;
  height: auto;

}
.contactus2 {
  text-align: center;
  padding: 50px 20px;
}

.services-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-box {
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 30px;
  width: 300px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: black;
}

.services-button {
  margin-top: 30px;
}

.services-button button {
  background-color: #007bff;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.services-button button:hover {
  background-color: #0056b3;
}
.service-box:hover{
  background-color: #ff6600;
  padding: 20px;
}
.contact-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.form-section {
  width: 40%;
  padding: 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section h2 {

  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.form-section form {
  display: flex;
  flex-direction: column;
}

.form-section input,
.form-section textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-section button {
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.form-section button:hover {
  background-color: #0056b3;
}

.map-section {
  width: 60%;
  height: 100vh;
}

footer {
  background-color: #007bff; 
  color: white;
  text-align: center;
  padding: 15px;
}