﻿/* --- Our Services Section Style --- */
.services {
  background-color: #f8fafd; /* हल्का सा सॉफ़्ट बैकग्राउंड ताकि कार्ड्स उभर कर दिखें */
}

.text-success-custom {
  color: #00bfa5 !important; /* आपके थीम का ग्रीन कलर */
  letter-spacing: 1.5px;
  font-size: 0.95rem;
}

.text-primary-dark {
  color: #07294d;
}

.heading-line {
  width: 60px;
  height: 3px;
  background-color: #3b66f5; /* ब्लू थीम लाइन */
  margin-top: 15px;
  border-radius: 2px;
}

/* Service Box Hover & Normal Layout */
.service-item-box {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-item-box h4 {
  font-size: 1.15rem;
  color: #07294d;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Round Icon Wrapper Design */
.icon-wrapper {
  width: 75px;
  height: 75px;
  background-color: #f0h4ff; /* लाइट ब्लू/ग्रे शेड */
  border: 2px solid rgba(59, 102, 245, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover Effect */
.service-item-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(59, 102, 245, 0.12) !important;
  background: linear-gradient(145deg, #ffffff, #f3v6ff);
}

.service-item-box:hover .icon-wrapper {
  background-color: #3b66f5;
  border-color: #3b66f5;
  transform: rotateY(180deg);
}

.service-item-box:hover .icon-wrapper svg {
  stroke: #ffffff; /* होवर करने पर आइकॉन का कलर वाइट हो जायेगा */
}

/* Mobile & Tablet Adaptation */
@media (max-width: 767.98px) {
  .service-item-box {
    padding: 20px !important;
  }
  .service-item-box h4 {
    font-size: 1rem;
  }
  .icon-wrapper {
    width: 65px;
    height: 65px;
  }
  .icon-wrapper svg {
    width: 32px;
    height: 32px;
  }
}





/* --- Roadmap Section Styles --- */
.roadmap-section {
  padding-bottom: 120px !important; /* बॉटम ओवरले कार्ड को स्पेस देने के लिए */
}

/* बैकग्राउंड बैनर इमेज विथ डार्क ब्लू ग्रेडिएंट ओवरले जैसा इमेज में है */
.roadmap-bg-banner {
  background: linear-gradient(to right, rgba(27, 72, 150, 0.85), rgba(7, 33, 40, 0.9)), 
              url('../img/eqpp.png') center center no-repeat;
  background-size: cover;
  padding: 60px 0 140px 0;
}

/* कंटेंट राइट साइड अलाइनमेंट */
.content-right-box {
  padding-right: 5%;
}

.header-title-text {
  font-weight: 700;
  line-height: 1.2;
}

.subtitle-text {
  font-size: 1.1rem;
  color: #e2e8f0;
}

/* फ्लोटिंग व्हाइट प्रोसेस कार्ड कंटेनर */
.floating-process-container {
  position: absolute;
  bottom: -220px; /* इसे आधा बाहर निकालने के लिए */
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}

.process-card-holder {
  border: 1px solid rgba(0,0,0,0.08);
}

/* कॉलम्स के बीच की हल्की बॉर्डर लाइन */
.divide-cols-container .process-step-item {
  border-right: 1px dashed #e2e8f0;
}
.divide-cols-container .process-step-item:last-child {
  border-right: none;
}

/* स्टेप टाइटल स्टाइल */
.step-title {
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: #333333 !important;
}

/* बॉटम डार्क ब्लू स्ट्रिप */
.process-bottom-bar {
  background-color: #1b49c4;
  font-size: 1.05rem;
  letter-spacing: 0.8px;
}

/* --- MOBILE RESPONSIVE MEDIA QUERY (जैसा आपने इमेज 2 में माँगा) --- */
@media (max-width: 767.98px) {
  .roadmap-section {
    padding-bottom: 340px !important; /* मोबाइल पर कार्ड लंबा होगा इसलिए एक्स्ट्रा स्पेस */
  }
  
  .roadmap-bg-banner {
    padding: 40px 0 100px 0;
  }

  .content-right-box {
    text-align: left !important; /* मोबाइल पर टेक्स्ट लेफ्ट अलाइन */
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-title-text {
    font-size: 2rem;
  }

  .floating-process-container {
    bottom: -320px; /* मोबाइल के हिसाब से पोजीशन सेट */
    padding: 0 15px;
  }

  /* 2x2 ग्रिड मोबाइल लेआउट सेटिंग्स (इमेज_6c00be के अनुसार) */
  .divide-cols-container .process-step-item {
    border-right: none;
    border-bottom: 1px dashed #e2e8f0;
  }
  
  /* पहले और दूसरे बॉक्स के राइट में बॉर्डर लाइन */
  .divide-cols-container .process-step-item:nth-child(1),
  .divide-cols-container .process-step-item:nth-child(3) {
    border-right: 1px dashed #e2e8f0;
  }

  /* आख़िरी दोनों बॉक्स के नीचे से बॉर्डर हटाना */
  .divide-cols-container .process-step-item:nth-child(3),
  .divide-cols-container .process-step-item:nth-child(4) {
    border-bottom: none;
  }

  .process-step-item {
    padding: 20px 10px !important;
  }

  .step-title {
    font-size: 0.75rem;
  }

  .process-bottom-bar {
    font-size: 0.88rem;
    padding: 12px 8px !important;
  }
}



@media (max-width: 767.98px) {
  .small-md-title {
    font-size: 0.88rem !important;
  }
  .xsmall-text {
    font-size: 0.72rem !important;
    display: block;
    line-height: 1.2;
  }
  .specialty-card {
    padding: 12px 8px !important;
  }
  .specialty-icon {
    font-size: 1.4rem !important;
    margin-bottom: 5px !important;
  }
}