body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right top, #fdfbfb, #ebedee);
  color: #20303C;
  overflow-x: hidden;
}

.blurred-bg, .blurred-bg2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}
.blurred-bg { top: 80px; left: -150px; background: radial-gradient(circle, #0e49a9 0%, transparent 70%); }
.blurred-bg2 { bottom: 0; right: 10px; background: radial-gradient(circle, #0e49a9 0%, transparent 90%); }

.navbar {
  position: fixed;
  top: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  z-index: 99;
  flex-wrap: wrap;
}
.navbar .logo {
  font-size: 24px;
  font-weight: 700;
  color: #116DFF;
  animation: pulse 3s infinite;
}
.logo i { margin-right: 8px; }
.logo span { color: #000000; }
.navbar nav a {
  margin-left: 20px;
  color: #20303C;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s;
}
.navbar nav a:hover { color: #116DFF; }

.inquiry-section {
  margin-top: 130px;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}

.form-glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 40px 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-sizing: border-box;
}

.form-glass h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #0d1a26;
}

.inquiry-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inquiry-form .form-group {
  position: relative;
  width: 100%;
}

.inquiry-form i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #116DFF;
  font-size: 16px;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.inquiry-form input:focus,
.inquiry-form select:focus {
  box-shadow: 0 0 0 2px #116DFF88;
}

.submit-btn {
  background: #116DFF;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit-btn:hover {
  background: #004ecc;
}
.submit-btn i {
  margin-right: 10px;
}

@media screen and (max-width: 600px) {
  .navbar nav a {
    margin-left: 10px;
    font-size: 14px;
  }

  .form-glass {
    padding: 30px 20px;
    max-width: 90%;
  }

  .inquiry-form input,
  .inquiry-form select {
    font-size: 14px;
    padding-left: 38px;
  }

  .inquiry-form i {
    font-size: 14px;
    left: 12px;
  }
}



.site-footer {
  background: #1a1a2e;
  color: #f1f1f1;
  padding: 60px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  max-width: 100%;
  margin: auto;
}

.footer-about, .footer-links, .footer-social {
  flex: 1;
  text-align: center;
}

.footer-about h3 {
  font-size: 24px;
  color: #00aaff;
  margin-bottom: 15px;
}

.footer-about p {
  line-height: 1.6;
  font-size: 14px;
  color: #ccc;
}

.footer-links h4, .footer-social h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer-links li {
  margin: 8px 0;
}
.footer-links a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #00aaff;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}
.footer-social .social-icons a {
  color: #ffffff;
  font-size: 25px;
  transition: 0.3s;
}
.footer-social .social-icons a:hover {
  color: #00aaff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}
.footer-bottom a {
  color: #00aaff;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
