body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #333;
  overflow: hidden;
  padding: 10px;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  margin-right: 10px; 
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

.logo {
  float: left;
  margin-right: 800px;
}

.form-container {
  display: none;
  padding: 20px;
  background-color: #f9f9f9;
  width: 300px; 
  margin: auto;
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-container label {
  display: block;
  margin-bottom: 10px;
}

.form-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.form-container button {
  background-color: #333;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.switch-form {
  text-align: center;
  margin-top: 10px;
}

.switch-form a {
  color: #333;
  text-decoration: underline;
  cursor: pointer;
}
.full-width-image {
  width: 100%;
  height: 30vh; 
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  height: 70vh; 
  overflow: hidden;
}

.mySlides {
  display: none;
}

.slideshow-container img {
  width: 100%;
  height: 100%;
}
.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; 
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  height: 70vh; 
  overflow: hidden;
  z-index: 1; 
}

.glow {
  box-shadow: 0 0 10px rgba(0, 0, 255, 0.8); 
}

.flex-container {
display: flex;
flex-wrap: wrap; 
justify-content: space-around; 
align-items: stretch; 
margin: 20px;
}

.flex-box {
flex: 1; 
width: 300px;
padding: 20px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 10px;
text-align: center;
cursor: pointer;
transition: background-color 0.3s, height 0.3s; 
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 250px; 
}


.flex-box:hover {
  background-color: #f9f9f9;
  height: 280px; 
}

.flex-box h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.flex-box p {
  color: #666;
  font-size: 1.2em;
}

.flex-box i {
  font-size: 2em;
  margin-bottom: 10px;
}


.about-us-section {
background-color: #f5f5f5;
padding: 40px;
margin: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-us-section h2 {
color: #333;
}

.about-us-section p {
font-size: 1.2em;
color: #555;
line-height: 1.5;
}

.about-us-section ul {
list-style-type: none;
padding: 0;
}

.about-us-section li {
margin-bottom: 10px;
}


.about-us-section:hover {
transform: scale(1.02);
transition: transform 0.3s ease-in-out;
}


.footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
height: 30vh;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.footer-logo a {
text-decoration: none;
color: white;
}

.footer-links a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}

.footer-bottom {
margin-top: 10px;
}




.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.modal button {
  background-color: #333;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 10px;
}