   /* --- SCOPED STYLES --- */
    #service-detail-scope {
      --twilight-indigo: #2E5EA2;
      --goldenrod: #152D4E;
      --charcoal: #5B5C5B;
      --white-smoke: #F8F9FA;
      --white: #ffffff;
      --border-light: #E5E5E5;
      --overlay-dark: rgba(21, 45, 78, 0.5);

      font-family: 'Outfit', sans-serif;
      color: var(--charcoal);
      background-color: var(--white);


      --main-color-one: #2E5EA2;
    --text-dark: #1a1a1a;
    --text-gray: #777;
    --white: #ffffff;
    --bg-light: #f8f8f8;
    }

   
    /* Layout */
    .page-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 80px 20px;
      display: grid;
      grid-template-columns: 0.35fr 0.65fr;
      gap: 50px;
    }

    /* Sidebar */
    .sidebar-widget {
      background: var(--white-smoke);
      padding: 30px;
      border-radius: 8px;
      margin-bottom: 30px;
      border: 1px solid var(--border-light);
    }
    .widget-title {
      font-size: 20px;
         font-family: 'Raleway', sans-serif;
      font-weight: 700;
      color: var(--twilight-indigo);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--border-light);
      position: relative;
    }
    .widget-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--goldenrod);
    }

    .service-list { list-style: none; padding: 0; margin: 0; }
    .service-list li { margin-bottom: 10px; }
    .service-list a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 20px;
      background: var(--white);
      color: var(--twilight-indigo);
      text-decoration: none;
      font-weight: 600;
      border-radius: 5px;
      transition: 0.3s;
      border: 1px solid transparent;
    }
    .service-list a:hover, .service-list a.active {
      background: var(--twilight-indigo);
      color: var(--white);
      border-color: var(--twilight-indigo);
    }
    .service-list a i { color: var(--goldenrod); }

    .help-widget {
      background: var(--twilight-indigo);
      color: var(--white);
      text-align: center;
      padding: 130px 30px;
      border-radius: 8px;
    }
    .help-icon { font-size: 100px; color:  #ffffff; margin-bottom: 15px; }
    .help-phone { font-size: 20px; font-weight: 800; display: block; margin: 15px 0; gap: 20px; }

    /* Content */
    .main-image { width: 100%; height: 400px; border-radius: 8px; overflow: hidden; margin-bottom: 30px; }
    .main-image img { width: 100%; height: 100%; object-fit: cover; }
    .content-title {          font-family: 'Raleway', sans-serif;font-size: 32px; font-weight: 800; color: var(--twilight-indigo); margin-bottom: 20px; }
    .text-block { line-height: 1.7; margin-bottom: 30px; }

    .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 columns */
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 25px;
  border-radius: 8px;
  transition: 0.3s;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
    .feature-card:hover { border-color: var(--goldenrod); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    .f-icon { font-size: 32px; color: var(--goldenrod); flex-shrink: 0; }
    .f-title { font-size: 18px;    font-family: 'Raleway', sans-serif;font-weight: 700; color: var(--twilight-indigo); margin-bottom: 8px; }
    .f-desc { font-size: 14px; margin: 0; line-height: 1.5; }

 
    @media (max-width: 900px) {
      .page-container { grid-template-columns: 1fr; display: flex; flex-direction: column-reverse; }
      .features-grid { grid-template-columns: 1fr; }
      .hero-title { font-size: 20px; }
    }


   .benchmarks-section {
    padding: 80px 20px;
    background: #ffffff;
}

.benchmarks-section .container {
    max-width: 1200px;
    margin: 0 auto;
   font-family: 'Raleway', sans-serif;
    width: 100%;
}


.benchmarks-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    color: #004a99;
    margin-bottom: 30px;
    font-family: 'SF Pro Display', sans-serif;
}

.benchmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benchmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 16px;
      font-family: 'Lexend', sans-serif;
    color: #333333;
    line-height: 1.2;
}


.benchmark-list li::before {
    content: '▲';
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 0.8rem;
    top: 5px;
}

.benchmarks-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.benchmarks-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: 0.35s ease;
}

.benchmarks-image:hover img {
    transform: scale(1.04);
}

@media (max-width: 992px) {
    .benchmarks-section {
        padding: 60px 20px;
    }

    .benchmarks-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 22px;
        line-height: 1.2;
    }

    .benchmarks-image img {
        height: 330px;
    }
}

@media (max-width: 576px) {
    .benchmarks-section {
        padding: 45px 16px;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .benchmark-list li {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .benchmarks-image img {
        height: 260px;
    }
}


.help-phone a {
    color: inherit;
    text-decoration: none;
}

.help-phone a:hover {
    color: #ffffff;
}
.download-box {
  margin-top: 30px;
}

.download-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
  position: relative;
  padding-left: 18px;
}

.download-box h4::before {
  content: "";
  width: 3px;
  height: 14px;
  background: #0083e0;
  position: absolute;
  left: 0;
  top: 4px;
}

.download-btn {
  width: 100%;
  background: #2E5EA2;
  color: #ffffff;
  padding: 18px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: 0.3s ease;
  margin-bottom: 30px;
}

.download-btn:hover {
  background: #20477d;
  color: #ffffff;
}

.download-btn i {
  font-size: 20px;
}


/* --- Mobile View: Heading -> Image -> Text --- */
@media (max-width: 768px) {
    /* Main container fix */
    #service-detail-scope .page-container {
        display: flex;
        flex-direction: column;
        padding: 15px;
    }

    /* Content Area ko Grid banaya order change karne ke liye */
    #service-detail-scope .content-area {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 1. Heading Sabse Upar */
    #service-detail-scope .content-title:first-of-type {
        order: 1 !important;
        font-size: 26px !important;
        margin-bottom: 15px !important;
    }

    /* 2. Image Heading ke theek niche */
    #service-detail-scope .main-image {
        order: 2 !important;
        height: auto !important;
        max-height: 250px;
        margin-bottom: 20px !important;
    }

    /* 3. Text Block Image ke niche */
    #service-detail-scope .text-block {
        order: 3 !important;
        font-size: 15px;
        line-height: 1.6;
    }

    /* 4. Baaki ka content (What we offer & Features) */
    #service-detail-scope .content-title[style*="font-size: 24px"] {
        order: 4 !important;
    }

    #service-detail-scope .features-grid {
        order: 5 !important;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Sidebar ko sabse end mein bhej diya */
    #service-detail-scope .sidebar {
        order: 6 !important;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    /* 1. Main Image ki height fix karein */
    .main-image {
        height: 250px !important; /* Fixed height ke bajaye choti height */
        margin-bottom: 20px;
    }

    /* 2. Help Widget (Contact section) ki padding kam karein */
    .help-widget {
        padding: 40px 20px !important; /* Jo pehle 130px thi usay kam kar diya */
        height: auto !important; /* Height ko auto rakhein taaki content ke hisab se adjust ho */
    }

    /* 3. Help Icon ka size mobile par thoda chota karein */
    .help-icon {
        font-size: 60px !important; /* Pehle 100px tha, mobile ke liye bohot bada hai */
        margin-bottom: 10px;
    }

    /* 4. Phone numbers ki spacing */
    .help-phone {
        font-size: 16px !important;
        margin: 10px 0 !important;
        gap: 10px !important;
    }

    /* 5. Agar koi generic contact container hai toh uski min-height hatayein */
    .contact-container, .contact-wrapper {
        min-height: auto !important;
        height: auto !important;
        padding: 30px 15px !important;
    }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
    max-width: 100% !important;
  }
}
