.service-hero {
  background: url('image3/ourerviceban.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  height: 40vh;
}

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.service-hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff6f61;
  color: white;
  padding: 15px 30px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e65c51;
}


/* section 1 */
.service-section-1{
  background: radial-gradient(1000px 500px at 20% -10%, #1f2937 0%, transparent 60%),
              radial-gradient(900px 450px at 110% 10%, #1f2937 0%, transparent 60%),
              var(--so-bg);
  color: var(--so-text);
  padding: clamp(48px, 6vw, 96px) 16px;
}

.service-section-1__container{ max-width:1120px; margin:0 auto; }

.service-section-1__header{ text-align:center; margin-bottom:clamp(28px,4vw,48px); }
.service-section-1__header h2{
  font-size:clamp(1.6rem,3.5vw,2.4rem); line-height:1.2; margin:0 0 10px;
}
.service-section-1__purpose{
  color:var(--so-muted); font-size:clamp(.95rem,1.4vw,1.05rem); margin:0 auto; max-width:760px;
}

.service-section-1__grid{
  display:grid; grid-template-columns:1fr; gap:16px; margin:24px 0 32px; padding:0; list-style:none;
}
@media (min-width:640px){ .service-section-1__grid{ grid-template-columns:repeat(2,1fr);} }
@media (min-width:992px){ .service-section-1__grid{ grid-template-columns:repeat(3,1fr);} }

.service-section-1__card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(148,163,184,.15);
  border-radius:16px; padding:18px; box-shadow:0 10px 24px rgba(0,0,0,.25);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-section-1__card:hover{
  transform:translateY(-4px); box-shadow:0 16px 36px rgba(0,0,0,.35); border-color:rgba(255,255,255,.25);
}
.service-section-1__card h3{ font-size:clamp(1.05rem,1.8vw,1.2rem); margin:0 0 10px; }

.service-section-1__bullets{
  margin:0; padding-left:18px; color:var(--so-muted); display:grid; gap:6px; font-size:.98rem;
}
.service-section-1__bullets li{ line-height:1.5; }

.service-section-1__cta{ display:flex; justify-content:center; margin-top:8px; }
.service-section-1__button{
  display:inline-block; text-decoration:none; color:#0b0b0b; background:var(--so-accent);
  padding:12px 18px; border-radius:999px; font-weight:600; letter-spacing:.2px;
  box-shadow:0 8px 20px var(--so-ring);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.service-section-1__button:hover{ transform:translateY(-2px); box-shadow:0 12px 28px var(--so-ring); }
.service-section-1__button:focus-visible{ outline:3px solid var(--so-accent); outline-offset:3px; }



/* ===== Service Cards (service-section-2) ===== */


.service-section-2{
  background:
    radial-gradient(900px 400px at 120% 0%, rgba(99,102,241,.12) 0%, transparent 70%),
    radial-gradient(700px 300px at -10% 20%, rgba(16,185,129,.12) 0%, transparent 70%),
    var(--ss2-bg);
  color:var(--ss2-text);

}

.service-section-2__container{ max-width:1200px; margin:0 auto; }

.service-section-2__header{ text-align:center; margin-bottom:clamp(24px,4vw,48px); }
.service-section-2__header h2{
  margin:0 0 10px; font-size:clamp(1.6rem,3.5vw,2.4rem); line-height:1.2;
}
.service-section-2__header p{
  margin:0 auto; max-width:760px; color:var(--ss2-muted); font-size:clamp(.95rem,1.4vw,1.05rem);
}

/* Grid */
.service-section-2__grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:18px;
  margin-bottom: 40px;
}

/* Card */
.service-section-2__card{
  position:relative; background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius:18px; overflow:hidden; border:1px solid var(--ss2-ring);
  box-shadow:0 12px 26px rgba(0,0,0,.35); transform:translateZ(0);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; backdrop-filter:blur(2px);
}
.service-section-2__card::before{
  content:""; position:absolute; inset:-1px;
  background:linear-gradient(135deg, rgba(255,111,97,.65), rgba(99,102,241,.55), rgba(16,185,129,.55));
  border-radius:20px; z-index:0; filter:blur(16px); opacity:0; transition:opacity .25s ease;
}
.service-section-2__card:hover{ transform:translateY(-6px); box-shadow:0 18px 40px rgba(0,0,0,.45); border-color:rgba(255,255,255,.28); }
.service-section-2__card:hover::before{ opacity:.45; }

/* Media */
.service-section-2__media{ position:relative; aspect-ratio:16/10; overflow:hidden; }
.service-section-2__media img{ width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.05); transition:transform .5s ease; }
.service-section-2__card:hover .service-section-2__media img{ transform:scale(1.1); }
.service-section-2__media::after{
  content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.05) 60%);
}

/* Badge */
.service-section-2__badge{
  position:absolute; left:12px; top:12px; z-index:2;
  background:rgba(255,255,255,.12); color:#fff; font-weight:600; font-size:.78rem; letter-spacing:.3px;
  padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.25); backdrop-filter:blur(6px);
}

/* Body */
.service-section-2__body{ padding:16px 16px 8px; position:relative; z-index:1; }
.service-section-2__body h3{ margin:0 0 6px; font-size:1.1rem; }
.service-section-2__body p{ margin:0; color:var(--ss2-muted); line-height:1.55; }

/* Footer + Button */
.service-section-2__footer{ padding:12px 16px 18px; display:flex; justify-content:flex-start; }
.service-section-2__btn{
  display:inline-flex; align-items:center; gap:8px; text-decoration:none; font-weight:700; letter-spacing:.2px;
  background:var(--ss2-accent); color:#0b0b0b; padding:10px 14px; border-radius:999px;
  box-shadow:0 10px 22px var(--ss2-glow); transition:transform .2s ease, box-shadow .2s ease;
}
.service-section-2__btn:hover{ transform:translateY(-2px); box-shadow:0 14px 30px var(--ss2-glow); }
.service-section-2__btn:focus-visible{ outline:3px solid var(--ss2-accent); outline-offset:3px; }

.service-section-2__icon{ width:18px; height:18px; flex:none; }


/* servicr section 3 */


/* ===== Service Section 3 (Market Insights) ===== */
.service-section-3 {
  background: #f5f7fa;
  padding: 40px 20px;
  text-align: center;
}

.service-section-3__header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: #333;
}

.service-section-3__header p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.service-section-3__stats {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-section-3__stat {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 30%;
  min-width: 250px;
}

.service-section-3__stat h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-section-3__stat p {
  font-size: 1rem;
  color: #777;
}

.service-section-3__graph {
  margin-top: 30px;
}

.service-section-3__graph h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.service-section-3__graph-img {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}



/* service-section-4 */

/* ===== Service Section 4 (Property Types with Static Text Below Image) ===== */
.service-section-4 {
  background: #f5f7fa;
  padding: 40px 20px;
  text-align: center;
}

.service-section-4__header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: #333;
}

.service-section-4__header p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.service-section-4__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-top: 20px;
}

.service-section-4__card {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-section-4__img-container {
  position: relative;
}

.service-section-4__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-section-4__text {
  padding: 20px;
  text-align: center;
}

.service-section-4__text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: bold;
  color: #000;
}

.service-section-4__text p {
  font-size: 1.2rem;
  margin-top: 8px;
  color: #777;
}

.service-section-4__text a {
  background-color: #ff6f61;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.service-section-4__text a:hover {
  background-color: #e55b50;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .service-section-4__header h2 {
    font-size: 2rem;
  }

  .service-section-4__header p {
    font-size: 1rem;
  }

  .service-section-4__card {
    width: 100%;
  }
}
