body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #ffffff;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

header {
  background: #003366;
  color: white;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  text-align: center;
}

nav {
  text-align: center;
  margin-top: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}


.hero {
  background: #e6f0ff;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  color: #003366;
  font-size: 2em;
}

.section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.section h3 {
  color: #003366;
  margin-bottom: 10px;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  margin: 8px 0;
  padding-left: 15px;
  border-left: 4px solid #003366;
}

footer {
  background: #001f3f;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9em;
}
.home-background {
  height: 100vh;
  background-image: url('C:\xampp\htdocs\Cloudy\homebackground.png'); /* Replace with your actual image file name */
  background-size: cover;      /* Make the image cover the entire area */
  background-position: center; /* Center the image */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.centered {
  background: rgba(0, 0, 0, 0.5); /* Optional: adds a dark overlay for better text visibility */
  padding: 40px;
  border-radius: 10px;
}
.info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  flex: 1 1 22%; /* 4 cards in one row */
 background: #ffffff; /* brighter background */
  color: #000000;       /* ensure dark text */
  border-left: 4px solid #003366;
  padding: 20px;
  border-radius: 6px;
  box-sizing: border-box;
}


.info-card h4 {
  color: #003366;
  margin-bottom: 8px;
}

.info-card a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.info-card a:hover {
  text-decoration: underline;
}

/* Map Styling */
.map-container {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
  }
}
.contact-form-section {
  margin: 40px 0;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.contact-form-section h3 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.form-group label {
  margin-bottom: 5px;
  color: #003366;
  font-weight: bold;
}

.services-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.services-section h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 40px;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-text {
  flex: 1 1 60%;
  order: 2;
  min-width:300px;
}

.service-text h3 {
  color: #003366;
  margin-bottom: 10px;
}

.service-text p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.service-image {
  flex: 1 1 35%;
  text-align: center;
  order:1;
}

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

@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
   
  }

  .service-image, .service-text {
    order:unset;
    flex: 1 1 100%;
  }

  .service-image img {
    max-width: 80%;
  }
}
.service-card.no-image {
  display: block;              /* Stack vertically */
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card.no-image .service-text {
  width: 100%;
}
