.doc-process-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
  font-size: 28px;
  position: relative;
}

.doc-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  border-top: 4px solid #1e73be;
  transform: translateY(0);
}

.doc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #1464d2;
}

.doc-card .icon-box {
  font-size: 42px;
  margin-bottom: 12px;
  color: #1e73be;
  transition: all 0.4s;
}

.doc-card:hover .icon-box {
  transform: rotate(-15deg) scale(1.15);
}

/* ==== Heading Hover Animation ==== */

.hover-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hover-heading:hover {
  color: #1e73be;
  transform: translateX(8px);
}

/* ========== Bullet Points ========== */

.bullet-points {
  padding-left: 0;
}

.bullet-points li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #555;
}

.bullet-points li i {
  color: #1e73be;
  margin-right: 8px;
  font-size: 18px;
  transition: 0.3s;
}

.doc-card:hover .bullet-points li i {
  transform: rotate(10deg);
}

/* ======= Responsive ======= */

@media (max-width: 768px) {
  .doc-card {
    margin-bottom: 20px;
  }
}

.benefit-section {
  padding: 60px 0;
}

.benefit-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

/* underline */
.benefit-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #1e73be;
  display: block;
  margin: 10px auto 0;
  border-radius: 50px;
}

.benefit-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border-top: 4px solid #1e73be;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.12);
}

/* ICON */
.benefit-card i {
  font-size: 42px;
  color: #1e73be;
  margin-bottom: 15px;
  transition: 0.4s;
}

.benefit-card:hover i {
  transform: scale(1.15) rotate(-10deg);
}

/* Heading */
.benefit-card h4 {
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.benefit-card:hover h4 {
  color: #1e73be;
}

/* Text */
.benefit-card p {
  font-size: 14px;
  color: #555;
}

/* Mobile Spacing */
@media (max-width: 768px) {
  .benefit-card {
    margin-bottom: 20px;
  }
}

.property-section .property-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  border: 1px solid #eee;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

.property-section .property-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.property-section .property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.property-section .property-card:hover img {
  transform: scale(1.08);
}

.property-section .property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
  border-color: #005ce6;
}

.property-section .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.property-section .read-more {
  margin-top: 10px;
  font-weight: 500;
  display: inline-block;
  color: #005ce6;
  transition: 0.3s;
}

.property-section .read-more:hover {
  letter-spacing: 1px;
}

.jd-popular {
    padding: 40px 0;
    background: #fff;
}

.jd-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.jd-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 15px;
}

.jd-tabs::-webkit-scrollbar {
    display: none;
}

.jd-tab {
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.jd-tab.active {
    background: #fff;
    border-color: #000;
    font-weight: 600;
}

.jd-content {
    display: none;
}

.jd-content.active {
    display: block;
}

.jd-services {
    font-size: 13px;
    line-height: 1.9;
    color: #444;
}

.jd-services a {
    color: #444;
    text-decoration: none;
}

.jd-services a:hover {
    color: #0d83fe;
    text-decoration: underline;
}
