body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #1e1e1e;
}
.animated-gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #e0f0ff, #d0e0ff, #ffffff, #cce0ff);
  background-size: 400% 400%;
  animation: gradientFlow 12s ease infinite;
  z-index: -1;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header */
.header {
  padding: 20px 0;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: bounceIn 1s ease-out;
}
.site-logo {
  height: 100px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 84, 204, 0.2);
  transition: transform 0.3s ease;
}
.site-logo:hover {
  transform: scale(1.05);
}
.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #0054cc;
}

/* Animated Section */
.animated-section {
  text-align: center;
  padding: 30px 20px;
}
.animated-heading {
  font-size: 34px;
  font-weight: 700;
  color: #003c88;
  animation: fadeInDown 1s ease-out;
}
.animated-heading span {
  color: #007bff;
}
.subheading {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}
.features-box {
  display: flex;
  justify-content: center;
  gap: 60px;
  background: #0054cc;
  color: white;
  border-radius: 15px;
  padding: 20px;
  animation: fadeInUp 1s ease-in-out;
}
.feature {
  text-align: center;
}
.feature i {
  margin-bottom: 8px;
}
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Form Section */
.container {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.input-group {
  text-align: left;
}
.input-group label {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #002f6d;
}
.input-group i {
  margin-right: 6px;
  color: #007bff;
}
.input-group input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.input-group input:hover,
.input-group input:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
  outline: none;
}
.radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
}
.radio-options label {
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.full-width {
  grid-column: 1 / -1;
}
.hidden {
  display: none;
}
.submit-btn {
  background: linear-gradient(to right, #0054cc, #007bff);
  color: white;
  border: none;
  padding: 16px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.submit-btn:hover {
  background: linear-gradient(to right, #0041a8, #006de6);
}
.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-box {
  flex: 1 1 180px;
  max-width: 200px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  text-align: center;
  padding: 20px 12px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}

.feature-box i {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.feature-box h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}



