/*banner S*/

.vs_banner_slr {
  position: relative;
  background: linear-gradient(160deg, #fffef9 0%, #f4faf6 50%, #e4f4ea 100%);
  color: #000;
  padding-block: 70px 70px;
}

.vs_bnr_sldr figure {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}


/*
.vs_bnr_sldr .vs_slide_item figure:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
      background-image: linear-gradient(90deg, #000000a3 25%, #000000a3 60%);
  opacity: 0.9;
  width: 100%;
  height: 100%;
}*/


.vs_bnr_sldr figure figcaption .vs_slide_text {
  /*padding-left: 20px;*/
  padding-top: 39px;
  position: relative;
  overflow: hidden;
  /*text-align: center;*/
}


.vs_bnr_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #a8e6b9;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a5c2e;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}


.vs_bnr_sldr figure figcaption h2 span {
  color: #2d7a47;
}

.vs_bnr_sldr figure figcaption h2 {
  font-size: calc(15px + 4vw);
  letter-spacing: 0.04em;
  color: #000;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0s;
  display: block;
  line-height: 1;
  font-weight: 600;

}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.vs_bnr_sldr figure figcaption p {
  font-size: 17px;
  color: #4a6352;
  font-weight: 300;
  line-height: 1.7;
  margin-block: 36px;
  animation: fadeUp 0.9s 0.3s ease both;
}

.vs_bnr_sldr .owl-nav,
.vs_bnr_sldr .owl-dots {
  display: none;
}

/*banner E*/

/* ── ABOUT ────────────────────────────────────────────────── */
/* ===== ABOUT SECTION ===== */
.vs_about_bg {
  background: #fff;
}


.vs_about_left p {
  color: #4a6352;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 16px;
}

/* ===== CARDS ===== */


.vs_about_card {
  background: #f4faf6;
  border: 1px solid #e8f5ec;
  border-radius: 16px;
  padding: 24px;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* subtle gradient hover glow */
.vs_about_card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(124, 212, 146, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.vs_about_card:hover::before {
  opacity: 1;
}

.vs_about_card:hover {
  background: #fff;
  border-color: #a8e6b9;
  box-shadow: 0 10px 40px rgba(45, 122, 71, 0.15);
  transform: translateY(-6px);
}

.vs_about_card_icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7cd492, #2f855a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: 0.3s;
}

.vs_about_card:hover .vs_about_card_icon {
  transform: scale(1.1) rotate(3deg);
}

.vs_about_card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  color: #0f1a0f;
  margin-bottom: 6px;
}

.vs_about_card p {
  font-size: 0.85rem;
  color: #4a6352;
  line-height: 1.6;
}

/* ===== COUNTERS ===== */
.vs_counter_band {
  background: linear-gradient(135deg, #1a5c2e, #0d3b1e);
  border-radius: 24px;
  padding: 48px 64px;
  text-align: center;
}

.vs_counter_item {
  position: relative;
  text-align: center;
  color: #fff;

}

.vs_counter_item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.vs_counter_num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}


.vs_counter_item p {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {


  .vs_counter_band {
    grid-template-columns: 1fr 1fr;
    padding: 32px;
  }
}

@media (max-width: 576px) {
  .vs_counter_band {
    grid-template-columns: 1fr;
  }
}

/* ---- WHY CHOOSE US ---- */

/* ===== CARD ===== */
.vs_why_card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(45, 122, 71, 0.12);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* subtle hover gradient */
.vs_why_card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.08), transparent);
  opacity: 0;
  transition: 0.35s ease;
}

.vs_why_card:hover::before {
  opacity: 1;
}

/* hover effect */
.vs_why_card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

/* ===== FEATURED CARD ===== */
.vs_why_card_bg {
  background: linear-gradient(135deg, #38a169, #2f855a);
  border-color: transparent;
  color: #fff;
  transform: scale(1.05);
}

/* FIX 🔥 (your bug here) */
.vs_why_card_bg a {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ===== ICON ===== */
.vs_why_icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.vs_why_card:hover .vs_why_icon {
  transform: scale(1.15) rotate(5deg);
}

/* ===== TEXT ===== */
.vs_why_card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f1a0f;
}

.vs_why_card_bg h3 {
  color: #fff;
}

.vs_why_card p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.vs_why_card_bg p {
  color: rgba(255, 255, 255, 0.85);
}

/* ===== TAG ===== */
.vs_why_card a {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: #e8f5ec;
  color: #276749;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
}


/* ---- HOW IT WORKS ---- */
/* ===== WRAPPER ===== */
.vs_steps_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===== LINE ===== */
.vs_steps_line {
  position: absolute;
  left: 40px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, #7cd492, transparent);
}

/* ===== STEP ===== */
.vs_step_box {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
}

/* dot indicator */
.vs_step_box::after {
  content: '';
  position: absolute;
  left: 32px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7cd492;
  border: 3px solid #f7fbf8;
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
  transform: translateY(-50%);
  transition: 0.3s;
}

/* hover dot effect 🔥 */
.vs_step_box:hover::after {
  box-shadow: 0 0 0 6px rgba(72, 187, 120, 0.25);
}

/* ===== NUMBER ===== */
.vs_step_num {
  min-width: 80px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #e8f5ec;
  line-height: 1;
  padding-top: 0.25rem;
}

/* ===== CONTENT ===== */
.vs_step_content {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(45, 122, 71, 0.12);
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid #48bb78;
  position: relative;
  overflow: hidden;
}

/* subtle hover glow */
.vs_step_content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(124, 212, 146, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.vs_step_content:hover::before {
  opacity: 1;
}

/* hover motion */
.vs_step_content:hover {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.15);
  transform: translateX(6px);
}

/* ===== ICON ===== */
.vs_step_icon {
  width: 48px;
  height: 48px;
  background: #f4faf6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #2f855a;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.vs_step_content:hover .vs_step_icon {
  transform: scale(1.1) rotate(5deg);
  background: #e6f7ec;
}

/* ===== TEXT ===== */
.vs_step_content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f1a0f;
}

.vs_step_content p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .vs_steps_line {
    left: 20px;
  }

  .vs_step_box {
    gap: 1rem;
  }

  .vs_step_box::after {
    left: 12px;
  }

  .vs_step_num {
    min-width: 60px;
    font-size: 2.5rem;
  }
}

/* ---- SPECIAL PROGRAMS ---- */

/* ===== CARD ===== */
.vs_special_card {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.75rem;
}

.vs_special_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}


/* ⚠️ BUG FIX HERE */
.vs_special_card .vs_special_tag {
  font-size: 0.72rem;
  margin-bottom: 0.6rem;
  background: #f0faf4;
  color: #2f855a;
  /* ❌ aapne white jaisa kar diya tha */
}

/* ===== TEXT SMALL ===== */
.vs_special_card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f1a0f;
  margin-bottom: 0.4rem;
}

.vs_special_card p {
  font-size: 0.84rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* ===== LARGE CARD ===== */
.vs_special_large {
  background: linear-gradient(135deg, #0f2e1a, #1a4a2e);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  position: relative;
}

.vs_special_overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(72, 187, 120, 0.25), transparent 60%);
}

/* ===== CONTENT ===== */
.vs_special_content {
  position: relative;
  z-index: 2;
}

.vs_special_tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(72, 187, 120, 0.2);
  color: #48bb78;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

/* ===== TEXT LARGE ===== */
.vs_special_large h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.vs_special_large p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ===== BUTTON ===== */
.vs_btn_special {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #48bb78;
  color: #0f1a0f;
  padding: 0.7rem 1.4rem;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  transition: 0.3s ease;
}

.vs_btn_special:hover {
  background: #68d391;
  transform: translateX(6px);
}

/* ===== IMAGE SIDE ===== */
.vs_special_image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  overflow: hidden;
}

/* blob animation */
.vs_special_blob {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(72, 187, 120, 0.3), transparent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: vs_blobPulse 4s ease-in-out infinite;
}

@keyframes vs_blobPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* ===== FLOAT EMOJIS ===== */
.vs_float {
  position: absolute;
  font-size: 2rem;
  animation: vs_float 4s ease-in-out infinite;
}

.vs_float.e1 {
  top: 15%;
  left: 20%;
}

.vs_float.e2 {
  top: 45%;
  left: 60%;
  animation-delay: 0.8s;
}

.vs_float.e3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 1.5s;
}

@keyframes vs_float {

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

  50% {
    transform: translateY(-12px);
  }
}

/* ===== RIGHT SIDE ===== */
.vs_special_right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== SMALL CARD ===== */

/* ===== LINK ===== */
.vs_special_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #2f855a;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.vs_special_btn:hover {
  color: #276749;
  gap: 0.7rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {


  .vs_special_image {
    display: none;
  }
}

/* ---- SERVICES ---- */

/* ===== CARD ===== */
.vs_service_card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(45, 122, 71, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* subtle shine effect */
.vs_service_card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(124, 212, 146, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.vs_service_card:hover::before {
  opacity: 1;
}

/* hover */
.vs_service_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

/* ===== IMAGE ===== */
.vs_service_img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: 0.35s ease;
}

.vs_service_card:hover .vs_service_img {
  transform: scale(1.08) rotate(2deg);
}

/* ===== BODY ===== */
.vs_service_box {
  padding: 1.5rem;
}

/* ===== TAG ===== */
.vs_service_tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: #f4faf6;
  color: #276749;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  transition: 0.3s;
}

.vs_service_card:hover .vs_service_tag {
  background: #e6f7ec;
}

/* ===== TEXT ===== */
.vs_service_box h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1a0f;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.vs_service_box p {
  font-size: 0.84rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* ===== LINK ===== */
.vs_service_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2f855a;
  text-decoration: none;
  transition: 0.3s;
}

.vs_service_btn:hover {
  gap: 0.7rem;
  color: #276749;
}


/* ---- CTA ---- */
/* ===== SECTION ===== */
.vs_cta_section {
  background: linear-gradient(135deg, #0a1f0e 0%, #1a3a20 50%, #0d2612 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}


/* ===== CONTENT ===== */
.vs_cta_content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== BADGE ===== */
.vs_cta_section .vs_subtitle {
  display: inline-block;
  background: rgba(72, 187, 120, 0.15);
  border: 1px solid rgba(72, 187, 120, 0.3);
  color: #7cd492;
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* ===== TEXT ===== */
.vs_cta_section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ===== BUTTONS ===== */
.vs_cta_btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* PRIMARY BUTTON */
.vs_btn_primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #7cd492;
  color: #0f1a0f;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* glow pulse */
.vs_btn_primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(72, 187, 120, 0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.vs_btn_primary:hover::after {
  opacity: 1;
}

.vs_btn_primary:hover {
  background: #68d391;
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(72, 187, 120, 0.6);
}

/* GHOST BUTTON */
.vs_btn_ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.35s ease;
  backdrop-filter: blur(8px);
}

.vs_btn_ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

/* ===== NOTE ===== */
.vs_cta_note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}


/*** Footer S ***/
footer {
  background-color: #0f1a0f !important;
  color: #ffffff80;
  padding-block: 20px 0;
}

footer a {
  color: #ffffff80;
  font-size: 15px;
}

footer a:hover {
  color: #68d391;
}

footer h4 {
  color: #fff;
  position: relative;
  font-size: 20px;
}

.vs_ftr_logo img {
  object-fit: contain;
    width: 110px;
    padding-bottom: 20px;
}

.vs_ftr_logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #68d391;

}

.vs_ftr_form .form-control {
  background: none;
  border: 0;
  border-bottom: 1px solid #04040433;
  border-radius: 0;
  height: 70px;
}


footer .vs_social_icon li a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cdcdcd;
  transition: .3s;
  font-size: 18px;
  color: #2d7a47;

  border-radius: 50%;
  line-height: 0;
  background-color: #f4f5f9;
}


footer .vs_ftr_list li {
  margin-bottom: 3px;
  padding: 0;
  color: #4a4a4a;
  font-size: 17px;
  font-weight: normal;
  transition: all 0.3s;
  font-weight: 500;
}

footer .vs_ftr_list li i {
  color: #dc2626;
}


footer .vs_ftr_list li:hover {
  box-shadow: none;
}


footer .copyright {
  font-size: 15px;
  /*background-color:#019ed4;*/
  padding: 20px 20px 0px 20px;
  /*border-radius: 50px;*/
  /*color: #fff;*/
}

footer .copyright a {
  /*color: #fff;*/
}

footer .copyright a:hover {
  color: #68d391;
}

footer .copyright img {
  width: 200px;
  object-fit: contain;
}

.vs_ftr_list_menu li {
  color: #787878 !important;
}


.vs_fix_btn {
  position: fixed;
  bottom: 60px;
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  padding: 0 10px;
}

.vs_fix_whatsup_btn img {
  width: 45px;
  object-fit: contain;
}

#vs_enquire_form .modal-content {
  background: #fff;
  box-shadow: 0 0 10px #22212182;
}

#vs_enquire_form form .form-control {
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #cbcbcb;
  border-radius: 0;
}


.vs_mobile_nav {
  position: fixed;
  bottom: 0;
  background-color: #000;
  width: 100%;
  padding: 8px 5px;
  z-index: 9999999999;
}

.vs_mobile_nav img {
  width: 30px;
  object-fit: contain;
}

.vs_mobile_nav a {
  color: #fff;
  font-size: 14px;
}

.vs_mobile_nav a:hover {
  color: blue;
}


.vs_enquire_form_bg .modal-header button {
  position: absolute;
  right: 12px;
  top: 14px;
  z-index: 9999;
  background-color: #ffffff85;
  padding: 4px;
  font-size: 10px;
  border-radius: 0;
}

.vs_enquire_form_bg .modal-content {
  background-color: #f9f9f9;
}

.vs_enquire_form_bg .vs_enquire_form {
  padding: 30px;
  padding-right: 10px;
}

.vs_enquire_form_bg .vs_enquire_form .form-control,
.vs_enquire_form .form-select {
  padding: 10px;
  border-radius: 0;
  font-size: 13px;
  background-color: #e5e5e5;
  margin: 2px 0;
}

.vs_enquire_form_bg .vs_enquire_form button {
  padding: 5px 8px;
  font-size: 15px;
}