/* Modern Services Section Styles */

:root {
  --primary-color: #3447ec;
  --primary-light: #4a6bfd1a;
  --secondary-color: #72a6f5;
  --text-dark: #333;
  --text-medium: #666;
  --background-light: #ffffff;
  --background-medium: #ffffff; 
  --white: #ffffff;
  --shadow-light: #0000000d;
  --shadow-medium: #0000001a;
}

.services {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--background-medium) 100%);
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: center;
}

.services .col-lg-6 {
  padding: 15px;
  width: 100%;
  max-width: calc(50% - 30px);
}

.services .service-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow-light);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--shadow-medium);
}

.services .service-item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s ease;
  z-index: -1;
}

.services .service-item:hover:before {
  transform: scaleX(1);
}

.services .service-item i {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  color: var(--primary-color);
  background: var(--primary-light);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.services .service-item:hover i {
  background: var(--primary-color);
  color: var(--white);
  transform: rotateY(360deg);
  transition: transform 0.8s ease;
}

.services .service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 15px;
}

.services .service-item h4:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.services .service-item:hover h4:after {
  width: 60px;
}

.services .service-item p {
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .services .col-lg-6 {
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .services .col-lg-6 {
    max-width: 100%;
  }
  
  .services .service-item {
    margin-bottom: 20px;
  }
} 



/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--background-medium);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid var(--white-color);
  position: absolute;
  background-color: var(--background-medium);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}

