/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Container Wrapper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* Header & Navigation */
header {
  background-color: #0066d4;
  padding: 0px 0;
  color: #fff;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 125px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 60px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #d1d1d1;
}

/* Main Content */
main {
  padding: 40px 0;
}

/* Section Box Styling */
section {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Form Box Styling */
.contact-form {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  margin-top: 0;
  color: #0066d4;
}

/* Form Styles */
form {
  max-width: 600px;
  margin-top: 20px;
}

form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form textarea {
  resize: vertical;
}

fieldset {
  border: none;
  margin: 15px 0;
  padding: 0;
}

fieldset legend {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 10px;
}

fieldset label {
  display: inline-block;
  margin-right: 15px;
  font-weight: normal;
}

button[type="submit"] {
  background-color: #0066d4;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}
.custom-file-input {
  display: none;
}
.custom-file-label {
  background-color: #02a15f;
  display: inline-block;
  color: #fff;
  border: none;
  padding: 8px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 400;
  transition: background-color 0.3s ease;
  margin-right: 20px;
  margin-bottom: 20px;
}
.custom-file-label:hover {
  background-color: #00b66a;
}


/* Footer */
footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
  color: #777;
}

/* Hero Container for Home Page */
.hero-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container {

  max-width: 1200px;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Content & Contact Form Columns */
.hero-content,
.contact-form {
  flex: 1;
  min-width: 300px;
}

/* Hero Image Styling */
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* Welcome Message */
.welcome-message h1 {
  margin-top: -30px;
  color: #0066d4;
}

.welcome-message p {
  font-size: 1.1em;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}
.carousel-inner {
  display: flex;
  transition: transform 0.7s ease;
}
.carousel-item {
  min-width: 100%;
  position: relative;
  text-align: center;
}
.carousel-item img {
  width: 100%;
  border-radius: 8px;
  height: auto;
  display: block;
}
.carousel-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  max-width: 90%;
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 253, 253, 0.2);
  color: #5c5959;
  padding: 10px;
  cursor: pointer;
  border-radius: 20%;
  user-select: none;
  font-size: 18px;
  text-decoration: none;
}
.carousel-control.prev {
  left: 10px;
}
.carousel-control.next {
  right: 10px;
}

.contact-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff; /* Blue color, adjust as needed */
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}
