          body, html {
    overflow-x: hidden;
}section.bg-primary {
  background:
    radial-gradient(1200px circle at 10% 10%, rgba(255,255,255,0.08), transparent 35%),
    radial-gradient(1000px circle at 90% 90%, rgba(255,255,255,0.06), transparent 40%),
    linear-gradient(135deg, #7a0000, #1a0000);
  position: relative;
  overflow: hidden;
}
.breadcrumb-wrapper {
    margin-top: 130px; 
    float:right;
}

.breadcrumb {
    padding: 0; 
    background-color: transparent; 
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.breadcrumb-item {
    margin-right: 10px;
}

.breadcrumb-item.active {
    font-weight: bold; 
}

.breadcrumb a {
    color: #ffffff !important; 
    text-decoration: none; 
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .breadcrumb-wrapper {
        margin-top: 60px; 
    }

    .breadcrumb {
        justify-content: center; 
    }
}

/* ===== SECTION BACKGROUND ===== */
section.bg-primary {
  background:
    radial-gradient(1200px circle at 10% 10%, rgba(255,255,255,0.08), transparent 35%),
    radial-gradient(1000px circle at 90% 90%, rgba(255,255,255,0.06), transparent 40%),
    linear-gradient(135deg, #7a0000, #1a0000);
  position: relative;
  overflow: hidden;
}

/* ===== SERVICE CARD ===== */
.service-card {
  position: relative;
  height: 100%;
  border-radius: 22px;
  padding: 40px 35px;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  transition: all 0.5s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  isolation: isolate;
}

/* floating highlight */
.service-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255,77,77,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover::after {
  opacity: 1;
}

/* hover lift + tilt */
.service-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 45px 90px rgba(0,0,0,0.4);
}

/* ===== HEADINGS ===== */
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #111;
  margin-bottom: 14px;
  position: relative;
}

/* underline reveal */
.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #8b0000, #ff4d4d);
  transition: width 0.4s ease;
}

.service-card:hover h3::after {
  width: 80px;
}

/* ===== TEXT ===== */
.service-card p {
  font-size: 15.8px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 22px;
}

/* ===== LIST ===== */
.service-card ul {
  padding-left: 0;
  margin: 0;
}

.service-card ul li {
  list-style: none;
  padding-left: 34px;
  margin-bottom: 12px;
  font-size: 14.8px;
  color: #222;
  position: relative;
}

/* glowing check */
.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #8b0000, #ff4d4d);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 rgba(255,77,77,0.6);
  transition: box-shadow 0.4s ease;
}

.service-card:hover ul li::before {
  box-shadow: 0 0 14px rgba(255,77,77,0.8);
}

/* ===== STAGGERED FEEL ===== */
.col-lg-4:nth-child(2n) .service-card {
  margin-top: 18px;
}

.col-lg-4:nth-child(3n) .service-card {
  margin-top: 36px;
}

/* ===== MOBILE RESET ===== */
@media (max-width: 768px) {
  .col-lg-4:nth-child(2n) .service-card,
  .col-lg-4:nth-child(3n) .service-card {
    margin-top: 0;
  }

  .service-card {
    padding: 32px 26px;
  }
}


/* MOBILE POLISH */
@media (max-width: 768px) {
  .service-card {
    padding: 30px 25px;
  }
}
   
.process-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.process-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.process-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.process-step {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 40px;
  flex: 1 1 22%;
  min-width: 250px;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.process-step .step-icon {
  font-size: 50px;
  color: red;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 16px;
  color: #777;
}

@media (max-width: 768px) {
  .process-steps {
    display: block;
  }

  .process-step {
    margin-bottom: 20px;
  }
}.list-unstyled {
        list-style-type: none;     
    }
.process-step {
  position: relative;
  border-left: 4px solid #8B0000;
  text-align: left;
}
.process-step .step-icon {
  position: absolute;
  left: -30px;              /* half of width */
  top: 30px;
  width: 60px;
  height: 60px;
  background: #8B0000;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  line-height: 1;          
}
.process-step .step-icon i {
  display: block;
  line-height: 1;
}

