/* 
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
} */
header {
  background-color: #003366;
  color: white;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: 24px;
  font-weight: bold;
}
.hero {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #f5f5f5;
}
.hero-text {
  flex: 1;
  margin: 10px;
}
.hero-image img {
  max-width: 200px;
  border-radius: 8px;
}
section {
  padding: 20px 40px;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #eee;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-content {
  flex: 1;
  padding-right: 20px;
}

.text-content h1 {
  color: #003366;
  font-size: 36px;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 18px;
  line-height: 1.6;
  /* color: #333; */
}

.image-content {
  flex: auto;
  text-align: right;
}

.image-content img {
  max-width: 100%;
  max-height: 300px;
  height: auto;
  border-radius: 8px;
}

.horizontal-list {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 10px 20px;
  list-style: none;
  padding-left: 0;
}

.horizontal-list li {
  font-size: 17px;
  display: flex;
  align-items: center;
}

.horizontal-list span {
  margin-right: 10px;
  font-size: 20px;
}

 
.contact-section {
display: flex;
flex-wrap: wrap;
background-color: #fff;
padding: 40px
border-radius: 10px;
gap: 30px;
margin: auto;
}

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

.contact-info h2 {
color: #003366;
font-size: 28px;
margin-bottom: 20px;
}

.contact-list { 
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  font-family: Arial, sans-serif;
} 

.contact-list li { 
  display: flex; 
  align-items: flex-start; 
  gap: 8px; line-height: 1.6; 
} 
.contact-list li i { 
  color: #0056b3; 
  margin-top: 4px; 
  min-width: 20px; 
} 

.contact-list a { 
  color: #333; text-decoration: none; 
} 
.contact-list a:hover { 
  text-decoration: underline; 
} 


.contact-map {
flex: 1;
min-width: 280px;
border-radius: 8px;
overflow: hidden;
}


  .image-content {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
  }

  .carousel-track {
    display: flex;
    gap: 16px; /* Space between images */
    transition: transform 0.5s ease-in-out;
    padding: 0 8px; /* Optional horizontal padding */
  }

  .carousel-track img {
    width: calc(50% - 8px); /* Subtract half the gap to maintain spacing */
    object-fit: cover;
    height: 300px;
    border-radius: 8px; /* Optional: rounded corners */
  }


@media (min-width: 320px) and (max-width: 767px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-info h2 {
    text-align: center;
  }

  .section {
    flex-direction: column;
    text-align: center;
  }
  .about, .service, header {
    display: grid;
  }

  .text-content, .image-content {
    padding: 0;
  }

  .hero-image img {
    max-width: 120px;
  }

  .carousel-track img {
    width: 100%;
  }
}