/* Base reset & container */
* {
    box-sizing: border-box;
    margin: 50;
    padding: 10;
    font-family: 'Segoe UI', sans-serif;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

.schedule-call {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form-container {
  background-color: #f2f2f2;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

button[type="submit"] {
  padding: 12px 24px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #005fa3;
}
/* Footer Section */
  .site-footer {
    position: relative;
    height: 40vh;
    overflow: hidden;
  }
  .footer-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .footer-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    padding: 1rem 0;
  }
  .footer-logo-link {
    display: flex;
    align-items: center;
    background: transparent;
  }
  .footer-logo {
    height: 40px;
    width: auto;
    background: transparent;
    border-radius:10px;
  }
  .footer-nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    color: #ccc;
    font-size: 0.875rem;
  }