/* Custom services page styles */

/* Fix readability for Our Services heading block */
.heading-block.is-service .section-heading.is-service {
  color: #14213D !important;
}

.heading-block.is-service .section-intro-text {
  color: #475569 !important;
}

/* Services page */

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.svc-hero .about-inner-hero-visual {
  position: relative;
}

.svc-floating-tags {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.svc-floating-tags span {
  background: rgba(255, 255, 255, 0.95);
  color: #14213D;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Overview strip */
.svc-overview-strip {
  background: #14213D;
  padding: 0;
  margin-top: -1px;
}

.svc-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.svc-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.svc-strip-item:last-child {
  border-right: none;
}

.svc-strip-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.svc-strip-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.svc-strip-item span {
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.4;
}

/* Main services grid */
.svc-main-grid-section {
  background: #f8f9fb;
}

.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  border: 1px solid #e8ecf0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 115, 190, 0.12);
}

.svc-card-num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(30, 115, 190, 0.12);
  line-height: 1;
  margin-bottom: 8px;
}

.svc-card-icon {
  color: #1E73BE;
  font-size: 18px;
  margin-bottom: 12px;
}

.svc-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #14213D;
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-card-text {
  font-size: 14px;
  color: #5a6270;
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-card-arrow {
  color: #F28C28;
  font-size: 20px;
  font-weight: 600;
}

/* Subsidy advisory block */
.svc-advisory-section {
  padding: 80px 0;
}

.schemes-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.scheme-card {
  border-radius: 16px;
  padding: 36px 32px;
  color: #fff;
}

.scheme-card--central {
  background: linear-gradient(135deg, #1E73BE 0%, #0D8B8B 100%);
}

.scheme-card--gujarat {
  background: linear-gradient(135deg, #14213D 0%, #1E73BE 100%);
}

.scheme-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.scheme-card p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.scheme-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.scheme-card li {
  padding: 6px 0;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.scheme-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #82B440;
}

.scheme-cta {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #F28C28;
  padding-bottom: 2px;
}

.scheme-cta:hover {
  color: #F28C28;
}

/* DPR section */
.svc-dpr-section {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.svc-dpr-section .section-heading {
  margin-bottom: 20px !important;
}

.svc-dpr-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /* Give the image column more space */
  gap: 50px;
  align-items: center;
}

/* Premium DPR Section Redesign */
.premium-image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

.premium-image-wrapper img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  /* Extra pop to make it look bigger */
}

.premium-image-wrapper .glow-backdrop {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: linear-gradient(135deg, rgba(0, 181, 98, 0.2) 0%, rgba(227, 87, 43, 0.2) 100%);
  filter: blur(40px);
  z-index: -1;
  border-radius: 50%;
  animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.dpr-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.dpr-card {
  background: #ffffff;
  border: 1px solid rgba(12, 43, 33, 0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dpr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 181, 98, 0.08);
  border-color: rgba(0, 181, 98, 0.2);
}

.dpr-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 181, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dpr-icon {
  font-size: 20px;
}

.dpr-card-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #0c2b21;
  margin-bottom: 6px;
}

.dpr-card-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .dpr-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Network section */
.svc-network-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.svc-network-section .section-heading {
  margin-bottom: 20px !important;
}

.svc-network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.svc-network-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.svc-network-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e8ecf0;
}

.svc-network-card strong {
  display: block;
  color: #14213D;
  font-size: 15px;
  margin-bottom: 8px;
}

.svc-network-card p {
  font-size: 13px;
  color: #5a6270;
  margin: 0;
  line-height: 1.5;
}

/* Process section */
.svc-process-section {
  background: #14213D;
}

.svc-process-section .section-heading,
.svc-process-section .pill-button {
  color: #fff;
}

.svc-process-section .about-process-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.svc-process-section .about-process-step h3,
.svc-process-section .about-process-step p {
  color: #fff;
}

.svc-process-section .about-process-num {
  color: #F28C28;
}

/* Clients section */
.svc-clients-section {
  padding: 80px 0;
}

.svc-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-client-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 28px 24px;
  border-top: 3px solid #1E73BE;
}

.svc-client-card h3 {
  font-size: 18px;
  color: #14213D;
  margin-bottom: 12px;
}

.svc-client-card p {
  font-size: 14px;
  color: #5a6270;
  line-height: 1.6;
  margin: 0;
}

/* Documents section */
.svc-docs-section {
  background: #f8f9fb;
  padding-top: 50px;
  padding-bottom: 50px;
}

.svc-docs-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid #e8ecf0;
}

.svc-docs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 32px 0 24px;
}

.svc-doc-item {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}

.svc-doc-item strong {
  display: block;
  color: #14213D;
  font-size: 14px;
  margin-bottom: 8px;
}

.svc-doc-item span {
  font-size: 12px;
  color: #5a6270;
  line-height: 1.5;
}

.svc-disclaimer {
  font-size: 13px;
  color: #8a919c;
  font-style: italic;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #e8ecf0;
}

.svc-cta-phone {
  margin: 16px 0;
  font-size: 18px;
  font-weight: 600;
}

.svc-cta-phone a {
  color: #F28C28;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
  .svc-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-strip-item:nth-child(2) {
    border-right: none;
  }

  .svc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schemes-split-grid,
  .svc-dpr-grid,
  .svc-network-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-network-cards {
    grid-template-columns: 1fr;
  }

  .svc-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .svc-strip {
    grid-template-columns: 1fr;
  }

  .svc-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .svc-cards-grid,
  .svc-clients-grid {
    grid-template-columns: 1fr;
  }

  .svc-docs-grid {
    grid-template-columns: 1fr;
  }

  .svc-docs-card {
    padding: 28px 20px;
  }
}