
    /* Animation and Transition Styles */
    .service-header-section {
          padding: 5rem 0;

  position: relative;
  overflow: hidden;
 
    background: linear-gradient(135deg, #000000 0%, #3b82f6 100%);
    color: white;
}
/* Service Header Section - Global Styles */


.service-header-section .container {
  position: relative;
  z-index: 2;
}

.service-header-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #e8eaec;
}

.service-header-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f3f6f8;
}

.service-header-section .btn {
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  transition: all 0.3s ease;
}



.service-header-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.service-header-section .btn-outline-primary {
  border-width: 2px;
}

.service-header-section img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-header-section img:hover {
  transform: scale(1.02);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .service-header-section {
    padding: 4rem 0;
  }
  
  .service-header-section h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .service-header-section {
    padding: 3rem 0;
    text-align: center;
  }
  
  .service-header-section h1 {
    font-size: 2rem;
  }
  
  .service-header-section .lead {
    font-size: 1.1rem;
  }
  
  .service-header-section .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .service-header-section .d-flex {
    flex-direction: column;
  }
  
  .service-header-section img {
    margin-bottom: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .service-header-section h1 {
    font-size: 1.75rem;
  }
}
.animate__animated {
    animation-duration: 1s;
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    transform: translateY(-5px);
}

/* Process Steps */
.process-steps {
    position: relative;
    padding-left: 40px;
}

.process-step {
    position: relative;
    padding-bottom: 30px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.step-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-sidebar {
        margin-top: 40px;
    }
    
    .process-steps {
        padding-left: 30px;
    }
    
    .step-number {
        left: -30px;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}
