/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header Styles */
header {
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.8));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
  padding: 15px 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.5s ease-in-out;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-section, .footer-logo-section {
  display: flex;
  align-items: center;
}

.logo, .footer-logo {
  width: 90px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.logo-section span, .footer-logo-section span {
  font-size: 24px;
  font-weight: bold;
  color: #4CAF50;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  font-size: 16px;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: black;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  color: #4CAF50;
  transform: scale(1.1);
}

/* Main Content */
.main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.center-logo {
  width: 500px;
  height: auto;
  margin-bottom: 20px;
  margin-left: 35px; 
}

h1 {
  font-size: 48px;
  color: #4CAF50;
  margin-bottom: 10px;
}

.tagline {
  font-size: 24px;
  color: white;
  margin-bottom: 15px;
}

.description {
  font-size: 18px;
  margin-bottom: 30px;
  color: white;
}

/* Button Container */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-main {
  padding: 15px 30px;
  font-size: 18px;
  color: white;
  text-decoration: none;
  border: 2px solid #4CAF50;
  border-radius: 50px;
  background: transparent;
  transition: background 0.5s, transform 0.3s ease;
}

.btn-main:hover {
  background: #4CAF50;
  transform: scale(1.05);
}

/* login style */
.login-container {
  margin-top: 250px; /* Adds space from the top */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  max-width: 100%;
  height: auto;
  z-index: 2;
}

.login-container h2 {
  color: white; /* Make the Login form title white */
  z-index: 2;

}

.login-container form {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  background-color: rgba(0, 0, 0, 0.7); /* Transparent black background */
  color: white; /* White font color for the form contents */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.login-container form input {
  width: calc(100% - 20px); /* Adjust width to allow for margin */
  padding: 10px;
  margin: 10px 0; /* Adds space above and below */
  margin-right: 20px; /* Adds space on the right */
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box; /* Ensure padding and border are included in width */
}

.login-button {
  width: 200px;
  padding: 12px;
  margin-top: 10px;
  background-color: transparent;
  border: 2px solid #4CAF50;
  color: #4CAF50;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 2;

}

/* Hover effect for the login button */
.login-button:hover {
  background-color: #4CAF50;
  color: white;
}

/* Footer Styles */
footer {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), white);
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-item-left,
.footer-item-right {
  width: 30%;
  text-align: center;
}

.footer-item-center {
  width: 40%;
  text-align: center;
  font-size: 16px;
  color: #333;
}

.footer-item-right a {
  text-decoration: none;
  color: #4CAF50;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-item-right a:hover {
  color: #3a9c41;
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Video */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
