* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  background: #F4F1E8;
  display: flex;
  justify-content: center;
  padding: 20px;
  position: relative;

}

.container {
  width: 100%;
  max-width: 500px;
  background-image: url('../img/white-bg.png');
  overflow: hidden;
  padding: 0;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ffffff;
  background: linear-gradient(90deg, #376979 15%, #14639d 85%);
  padding: 12px;
}

.logo img {
  filter: brightness(0) invert(1);
}

.section {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}

/* 
.headingg h1 {
  font-size: 23px;
  text-align: center;
  text-transform: full-width;
  padding: 10px 0;
  color: #e02027;
  background: #fff;
  animation: headingZoom 2s ease-in-out infinite;
  letter-spacing: normal;
}

@keyframes headingZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
} */

.section:last-child {
  border-bottom: none;
}

.btn {
  font-size: 16px;
  background: #3b687d;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  margin: 6px 0;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
  text-transform: capitalize;
}

.btn:hover {
  background: #3b687d;
  color: #fff;
}

.btn-secondary {
  background: #3b687d;
}

.btn-secondary:hover {
  background: #3b687d;
  color: #fff;
}

.title {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 14px;
}

.info {
  font-size: 14px;
  color: #555;
  margin-top: 12px;
  text-align: center;
}

.chat-box textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.footer-msg {
  background: #afcce5;
  color: #000000;
  font-weight: bold;
  text-align: center;
  padding: 14px;
  font-size: 14px;
}

.footer-msg span {
  color: #c62828;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn-small {
  padding: 30px;
  font-size: 14px;
  flex: 1 1 45%;
  background: #fff;
  border: 1px solid #3b687d;
  color: #3b687d;
}

.info-banner {
  text-align: center;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #3b687d;
  color: rgb(255, 255, 255);
  padding: 14px 24px;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.5s ease-out;
}

.info-banner i {
  animation: bounce 1.2s infinite;
  font-size: 1.1rem;
}

a {
  text-decoration: none;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px) scale(1.2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form1 {
  margin-top: 10px;
}

.form_title {
  font-size: 20px;
  font-weight: 600;
  color: #3b687d;
  margin-bottom: 20px;
}

.form_section {
  text-align: center;
}

.mb-4 {
  margin-bottom: 16px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #3b687d;
  box-shadow: 0 0 0 2px rgba(0, 122, 92, 0.15);
}

.icon-inside {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  pointer-events: none;
}

.advanced-button {
  position: relative;
}

.form1-submit-btn {
  background-color: #3b687d;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.form1-submit-btn:hover {
  background-color: #005c45;
}

.spinner-border {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.mb-4 {
  margin-bottom: 12px;
}

@media(max-width:768px) {
  body {

    padding: 0px;
  }
}