.section-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2.5rem;
  text-align: center;
}

#category-nav {
  background: #fff;
  padding: 3rem 0;
}

.btn-customize {
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  animation: pulseGlow 2.5s infinite;
}
.btn-customize:hover {
  transform: translateY(-2px) scale(1.03);
}
.btn-customize::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
@keyframes shine {
  0% {
    left: -120%;
  }
  40% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}
#why-vaya {
  background: #f6f8f7;
  padding: 4rem 0;
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  padding: 1rem 0.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.partner-card:hover .icon-circle {
  transform: scale(1.1);
}
.partner-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.partner-card .check-label {
  color: #006d6f;
  font-size: 0.85rem;
  font-weight: 500;
}
.partner-card .check-label i {
  margin-right: 4px;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #006d6f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
}
.icon-circle i {
  font-size: 1.6rem;
  color: #fff;
}

#gifting-occasions {
  background: #fff;
  padding: 5rem 0;
}

#grow-together {
  padding: 5rem 0;
  background: #f6f8f7;
}

.grow-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.grow-underline {
  width: 50px;
  height: 3px;
  background: #006d6f;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.grow-para {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.w-80 {
  width: 80%;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.79rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.feature-list li .fi-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #006d6f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-shrink: 0;
}
.feature-list li .fi-icon i {
  color: #006d6f;
  font-size: 0.95rem;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  border: 1px solid #dce3e2;
  width: 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.35rem;
}
.form-group label .req {
  color: #e53e3e;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #dce3e2;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: #1f2937;
  transition: all 0.35s ease;
}
.form-control:focus {
  border-color: #006d6f;
  box-shadow: 0 0 0 3px rgba(0, 109, 111, 0.15);
}

.enquiryMsg {
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
}

.input-icon-wrap {
  position: relative;
}
.input-icon-wrap .form-control {
  padding-left: 2.5rem;
}
.input-icon-wrap .field-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 0.9rem;
  pointer-events: none;
}

.btn-submit {
  background: #006d6f;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.6rem;
}
.btn-submit:hover {
  background: #005c5c;
  transform: translateY(-2px);
  color: #fff;
}

section {
  position: relative;
}

.mb-row {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .grow-heading {
    font-size: 1.65rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .decorated-heading h2 {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.1rem;
  }
}
.jCaptchaCanvas {
  float: left;
  border: 1px solid grey;
  margin-right: 10px;
}

.jCaptcha.error {
  clear: none;
}
.jCaptcha.error:focus {
  box-shadow: none;
  border-color: red;
}

.required-field {
  color: red;
}

#rlModal {
  z-index: 1050;
}
#rlModal.modal {
  padding-right: 0 !important;
}
#rlModal .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  max-width: 70%;
  height: 100%;
  max-height: 100%;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
#rlModal.show .modal-dialog {
  transform: translateX(0);
}
#rlModal .modal-content {
  height: 100%;
  border: none;
  border-radius: 0;
}
#rlModal .modal-body {
  padding: 0rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#rlModal .main {
  overflow: hidden !important;
  justify-content: center !important;
  padding: 0.5rem !important;
}
#rlModal #c {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  transform: scale(1.2) !important;
}

#tab-export input {
  width: 100%;
  padding: 6px 8px;
  margin-bottom: 4px;
  font-size: 14px;
  background: var(--s2);
  border: 1px solid var(--bor2);
  border-radius: var(--r);
  outline: none;
}
#tab-export input:focus {
  border-color: var(--acc);
}

/*# sourceMappingURL=vaya-corporate.css.map */
