/* General Body Styling */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header Logo */
.logo, .global-logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 15px auto;
}

/* Facebook Button */
.facebook-btn {
  display: inline-block;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #1877f2;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}

.facebook-btn:hover {
  background-color: #145dbf;
}

/* Navigation Tabs */
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 20px;
  background-color: #0b3c5d;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  border-radius: 0 0 8px 8px;
}

nav button {
  padding: 12px 20px;
  border: none;
  background-color: #145374;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav button.active, nav button:hover {
  background-color: #1b6c91;
  transform: translateY(-2px);
}

/* Sections */
section {
  max-width: 1000px;
  margin: 30px auto;
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Section Headings */
section h1 {
  color: #0b3c5d;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
}

/* Service Boxes */
.service {
  margin-bottom: 20px;
  padding: 15px 20px;
  border-left: 5px solid #28a745;
  background-color: #f9f9f9;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service h2 {
  color: #145374;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.service p {
  margin: 0;
  line-height: 1.5;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Call Buttons */
.call-btn {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
}

.call-btn:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.gallery img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

form button {
  width: 180px;
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

form button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #28a745;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: stretch;
  }

  nav button {
    width: 100%;
  }

  .gallery img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  section h1 {
    font-size: 1.6rem;
  }

  .service h2 {
    font-size: 1.2rem;
  }
}
