/* ===== MAIN WRAPPER ===== */
.pxl_main_wrapper {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  font-family: "Poppins", sans-serif;
}

.pxl_list {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}
.pxl_list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.pxl_list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  padding-left: 10px;
  color: #00a884;
}

/* ===== SECTION TITLE ===== */
.pxl_section_title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===== HERO ===== */
.pxl_hero_wrap {
  gap: 25px;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f8fffb);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.pxl_hero_wrap::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #00a88420;
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

/* HERO IMAGE */
.pxl_hero_img {
  width: 260px;
  border-radius: 15px;
  transition: 0.4s;
}

.pxl_hero_img:hover {
  transform: scale(1.08) rotate(1deg);
}

/* TEXT */
.pxl_title {
  font-size: 30px;
  font-weight: 700;
}

.pxl_subtitle {
  font-size: 18px;
  margin-bottom: 10px;
}

.pxl_subtitle span {
  color: #00a884;
}

@media (max-width: 992px) {
  /* HERO IMAGE */
  .pxl_hero_img {
    width: 160px;
    border-radius: 15px;
    transition: 0.4s;
  }

  .pxl_hero_img:hover {
    transform: scale(1.08) rotate(1deg);
  }

  /* TEXT */
  .pxl_title {
    font-size: 30px;
    font-weight: 700;
  }

  .pxl_subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .pxl_subtitle span {
    color: #00a884;
  }
}

/* ===== LIST ===== */

/* CARD */
.pxl_tip_card {
  display: flex;
  gap: 15px;
  padding: 20px;
  margin: 10px 0;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.pxl_tip_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ICON */
.pxl_tip_icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a884, #00c9a7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 168, 132, 0.3);
}

/* TITLE */
.pxl_tip_card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* TEXT */
.pxl_tip_card p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pxl_tips_grid {
    grid-template-columns: 1fr;
  }
}

/* ===== STEPS (TIMELINE STYLE) ===== */
.pxl_step {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  transition: 0.3s;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #00a884;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.pxl_step:hover {
  transform: translateX(5px);
}

.pxl_step img {
  width: 55px;
}

/* ===== TIPS ===== */
.pxl_tip {
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 10px;
  transition: 0.3s;
  border-left: 3px solid transparent;
}

.pxl_tip:hover {
  background: #00a88410;
  border-left: 3px solid #00a884;
}

/* ===== CARD ===== */
.pxl_card {
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.pxl_card:hover {
  transform: translateY(-6px);
}

/* ===== FAQ ===== */
.pxl_faq_box {
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 10px;
  transition: 0.3s;
  border: 1px solid #ddd;
  cursor: pointer;
}

.pxl_faq_box h6 {
  margin: 10px 0 20px 0;
  color: #00885f;
  font-weight: 700;
}

.pxl_form_fixed {
  position: fixed;
  top: 100px;
  left: calc(50% + 180px);
  width: 430px;
  padding: 35px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  z-index: 999;
}

/* optional scroll inside form */
.pxl_form_fixed {
  max-height: 85vh;
  overflow-y: auto;
}

/* TITLE */
.pxl_form_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* LABEL */
.pxl_label_text {
  font-size: 14px;
  margin: 15px 0 8px;
  color: #555;
}

/* BUTTON GROUP */
.pxl_btn_group_wrap {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.pxl_btn_option {
  flex: 1;
  padding: 10px 12px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.pxl_btn_option:hover {
  background: rgba(0, 168, 132, 0.1);
  border-color: #00a884;
}

/* ACTIVE */
.pxl_btn_option.active {
  background: linear-gradient(135deg, #00a884, #00c9a7);
  color: #fff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 168, 132, 0.3);
}

/* INPUT GROUP */
.pxl_input_group_wrap {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.pxl_input_group_wrap select {
  width: 80px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 8px;
}

.pxl_input_group_wrap input {
  flex: 1;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  outline: none;
  transition: 0.3s;
}

.pxl_input_group_wrap input:focus {
  border-color: #00a884;
  box-shadow: 0 0 0 3px rgba(0, 168, 132, 0.1);
}

/* INFO NOTE */
.pxl_info_box_note {
  font-size: 12px;
  color: #777;
  margin: 8px 0 18px;
}

/* CTA BUTTON */
.pxl_start_btn_main {
  width: 100%;
  padding: 15px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  border: 1px solid #01b86b;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pxl_start_btn_main:hover {
  /* transform: scale(1.05); */
  box-shadow: 0 8px 10px #01b86c00;
}

/* Recent Properties */
.nrp_sec_block {
  margin-top: 30px;
}

.nrp_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.nrp_slider {
  position: relative;
  max-width: 700px;
}

.nrp_slide {
  display: none;
  background: #f3f3f3;
  padding: 20px 25px;
  border-radius: 10px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nrp_slide.active {
  display: block;
}

/* Dots */
.nrp_dots {
  text-align: center;
  margin-top: 10px;
}

.nrp_dot {
  height: 8px;
  width: 8px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.nrp_dot.active {
  background: red;
}

@media (max-width: 992px) {
  .pxl_form_fixed {
    position: static;
    width: 100%;
    margin-bottom: 20px;
    left: auto;
  }

  .row {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* ===== MOBILE RESPONSIVE FIX ===== */
@media (max-width: 992px) {
  .pxl_main_wrapper {
    padding: 30px 15px;
  }

  /* COLUMN ORDER */
  .row {
    display: flex;
    flex-direction: column;
  }

  /* FORM TOP ला येईल */
  .pxl_form_fixed {
    position: static;
    width: 100%;
    margin-bottom: 20px;
    left: auto;
    top: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  /* HERO STACK */
  .pxl_hero_wrap {
    flex-direction: column;
    text-align: center;
  }

  .pxl_hero_img {
    width: 100%;
    max-width: 220px;
  }

  .pxl_title {
    font-size: 24px;
  }

  .pxl_subtitle {
    font-size: 16px;
  }

  /* TIP CARDS */
  .pxl_tip_card {
    flex-direction: column;
    align-items: flex-start;
  }

  /* STEPS */
  .pxl_step {
    flex-direction: column;
    align-items: flex-start;
  }

  .pxl_step img {
    width: 45px;
  }

  /* INPUT */
  .pxl_input_group_wrap {
    flex-direction: column;
  }

  .pxl_input_group_wrap select {
    width: 100%;
  }

  /* BUTTON GROUP */
  .pxl_btn_group_wrap {
    flex-wrap: wrap;
  }

  .pxl_btn_option {
    flex: 1 1 30%;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 576px) {
  .pxl_title {
    font-size: 20px;
  }

  .pxl_form_title {
    font-size: 18px;
  }

  .pxl_start_btn_main {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .row {
    display: flex;
    flex-direction: column;
  }

  /* 🔥 FORM FIRST (TOP ला आणण्यासाठी) */
  .col-lg-5 {
    order: -1;
  }

  .col-lg-7 {
    order: 2;
  }

  /* FORM FULL WIDTH */
  .pxl_form_fixed {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}
