/* Center the h1, make it bolder, and style the navigation bar */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

nav {
  background: #333;
  height: 70px; /* Increased height */
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
  padding-bottom: 10px;
}

nav ul li {
  display: inline;
  padding-bottom: 7px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 12px 18px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  border-radius: 6px;
}

/* Transition effect on hover */
nav ul li a:hover {
  background: #fff;
  color: #333;
  transform: translateY(-4px) scale(1.08) rotate(-2deg);
}

/* Center h1 and make it extra bold */
h1 {
  text-align: center;
  font-weight: 900; /* More bold */
  margin-top: 60px;
  letter-spacing: 2px;
  font-size: 2.6rem;
}

/* Back to top arrow styling */
#backToTop {
  position: fixed;
  bottom: 36px;
  right: 36px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

#backToTop.show {
  opacity: 1;
  pointer-events: all;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f8fa;
  color: #222;
  margin: 0;
  padding: 0;
}

.contact-container {
  max-width: 1100px;
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 2 4px 32px rgba(44, 62, 80, 0.09);
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 350px;
  min-width: 300px;
}

.contact-form-section h2,
.contact-info-section h2 {
  color: #086908;
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: 0.01em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #4e5d6c;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #c9ced6;
  border-radius: 7px;
  font-size: 1rem;
  background: #f7f9fb;
  transition: border 0.2s;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #5c6bc0;
  outline: none;
}

.contact-form button {
  background: linear-gradient(90deg, #5c6bc0, #8e99f3);
  color: #fff;
  border: none;
  padding: 0.9rem 0;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #3949ab, #5c6bc0);
}

.map-section {
  margin-top: 2rem;
  width: 100%;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: #3949ab;
  border-radius: 8%;
}

.chat-box {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 350px;
  max-width: 95vw;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.12);
  border: 1.5px solid #e6eaf0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 1rem;
}

.chat-header {
  background: linear-gradient(90deg, #5c6bc0, #8e99f3);
  color: #fff;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  text-align: left;
}

.chat-body {
  flex: 1;
  padding: 1rem;
  background: #f5f7fa;
  overflow-y: auto;
  max-height: 4500px;
}

.chat-message {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-end;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message .message-content {
  background: #5c6bc0;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 10px 10px 0 10px;
  max-width: 70%;
}

.chat-message.user .message-content {
  background: #8e99f3;
  border-radius: 10px 10px 10px 0;
}

.chat-input-area {
  display: flex;
  border-top: 1.5px solid #e6eaf0;
  background: #fff;
}

.chat-input-area input {
  border: none;
  padding: 1rem;
  flex: 1;
  font-size: 1rem;
  border-radius: 0;
  background: #fff;
  outline: none;
}

.chat-input-area button {
  background: #5c6bc0;
  color: #fff;
  border: none;
  padding: 0 1.2rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: ease-in-out 0.2s;
}

.chat-input-area button:hover {
  background: #3949ab;
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  .chat-box {
    right: 8px;
    bottom: 8px;
    width: 98vw;
  }
}
* {box-sizing: border-box;}

/* Slideshow container */
.scroll-container {
  max-width: 1050px;
  margin: auto;
  display:flex;
  padding-top: 6%;
}
.scoll-container {
    width: 100px;      /* Set your desired width */
    height: 30px;     /* Set your desired height */
    overflow: hidden;
    position: relative;
}

.slide img {
    width: 100%;
    height: 50%;
    object-fit: cover;   /* Ensures image covers area, cropping if needed */
    display: block;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
div.scroll-container {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 6px;
  overscroll-behavior-inline: auto;
  height: 250px;
  border-radius: 8px;

}

div.scroll-container img {
  padding: 6px;
}
* {box-sizing: 0}

/* Full-width input fields */
  input[type=text], input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 10px 0 22px 0;
  border: none;
  background: #f1f1f1;
  border-radius: 6px;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}

/* Set a style for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}

/* Extra styles for the cancel button */
.cancelbtn {
  padding: 14px 20px;
  background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
  float: left;
  width: 50%;
}

/* Add padding to container elements */
.container {
  padding: 16px;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .signupbtn {
    width: 100%;
  }
}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
/* Three columns side by side */
.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

/* Add some shadows to create a card effect */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Some left and right padding inside the container */
.container {
  padding: 0 16px;
}

/* Clear floats */
.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #555;
}

