
body {
  font-family: Arial, sans-serif;
}
.navbar {
  background-color: #f8f9fa;
}
.navbar-brand img {
  height: 50px;
}
.section {
  padding: 60px 0;
}
.bg-light-grey {
  background-color: #f8f9fa;
}
.bg-gold {
  background-color: #ffd700;
}
.text-blue {
  color: #007bff;
}
.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-title {
  color: #007bff;
}
.card-text {
  color: #555;
}
.map-container {
  height: 300px;
  background-color: #e9ecef;
}
.carousel-item img {
  height: 400px;
  object-fit: cover;
}
.card img {
  height: 200px;
  object-fit: cover;
}
.thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.subscribe-section {
  background-color: #007bff;
  color: white;
  padding: 40px 0;
}
.subscribe-section .btn {
  background-color: #ffd700;
  color: #007bff;
  font-weight: bold;
}

/* Modal Styles */
.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}

.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border: 1px solid #888;
width: 90%;
max-width: 500px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close {
color: #aaa;
float: right;
font-size: 24px;
font-weight: bold;
cursor: pointer;
}

.close:hover {
color: #000;
}

/* Form Styles */
.form-group {
margin-bottom: 15px;
}

label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}

input, select, textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
}

textarea {
resize: vertical;
}

.btn-primary {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}

.btn-primary:hover {
background-color: #0056b3;
}
.modal {
display: none; /* Hidden by default */
}

