/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  margin: 0;
  /* padding: 20px; */
  color: #333;
}

h1 {
  color: #2e7d32;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

form {
  max-width: 90%;
  margin: 0 auto;
  background-color: #f9f9f9;
  border: 2px solid #2e7d32;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #2e7d32;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2e7d32;
}

input[type="password"],
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #2e7d32;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #66bb6a;
  box-shadow: 0 0 5px #a5d6a7;
}

/* Submit Button */
button[type="submit"] {
  background-color: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  width: 100%;
  margin-top: 20px;
}

button[type="submit"]:hover {
  background-color: #1b5e20;
}

/* Responsive Styles */
@media (max-width: 768px) {
  form {
    padding: 20px;
  }

  h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  form {
    padding: 15px;
  }

  h1 {
    font-size: 20px;
  }

  .section-title {
    font-size: 16px;
    padding: 8px 10px;
  }

  input,
  textarea,
  select {
    font-size: 14px;
    padding: 10px;
  }

  button[type="submit"] {
    font-size: 14px;
    padding: 10px;
  }
}


@media only screen and (max-width:800px) {
    .sec-input{
        width: 95% !important;
    }
}
@media only screen and (max-width:500px) {
    .sec-input{
        width: 93% !important;
    }
}

.loader__plane {
  fill: #dcbb87;
}

.footer {
  background-color: #0f1923;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 20px 20px;
  margin-top: 50px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col h4 {
  color: #3eb549;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-col ul li a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #3eb549;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-text {
  margin: 20px 0;
  font-size: 15px;
  color: #e0e0e0;
  max-width: 400px;
  line-height: 1.7;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-socials a {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  margin-right: 10px;
  color: #3eb549;
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  background: #3eb549;
  color: #0f1923;
}

.footer-bottom {
  text-align: center;
  color: #3eb549;
  margin-top: 40px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.address-col ul li {
  max-width: 250px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col {
    margin-bottom: 30px;
    padding-left: 30px
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-socials {
    margin-top: 10px;
  }

  .footer-socials a {
    margin-bottom: 10px;
  }

  .footer-col ul li {
    font-size: 14px;
  }

  .footer-col ul li a {
    display: inline-block;
    word-break: break-word;
  }
}

.footer-logo:hover{
  transform: scale(1.08);
  transition: 1s all;
}

.visa-banner {
  background: linear-gradient(135deg, #145232e4, #013c20ec);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visa-banner-content {
  max-width: 900px;
  margin: 0 auto;
}

.visa-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.visa-banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #c5d1c6;
}

.apply-btn {
  background-color: #3eb549;
  color: #0f1923;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #34a03d;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .visa-banner h1 {
    font-size: 2rem;
  }

  .visa-banner p {
    font-size: 1rem;
  }

  .apply-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .visa-banner {
    padding: 40px 15px;
  }

  .visa-banner h1 {
    font-size: 1.7rem;
  }

  .visa-banner p {
    font-size: 0.95rem;
  }
}
