﻿:root {
  --primary-color: #ed1b2f;
  --primary-dark: #c0392b;
  --primary-light: #ffe06a;
  --secondary-color: #3498db;
  --secondary-dark: #2980b9;
  --secondary-light: #d6eaf8;
  --accent-color: #f39c12;
  --accent-dark: #e67e22;
  --success-color: #2ecc71;
  --warning-color: #f1c40f;
  --error-color: #e74c3c;
  --dark-color: #2c3e50;
  --text-color: #333333;
  --text-light: #7f8c8d;
  --light-color: #f5f5f5;
  --white-color: #ffffff;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
      --light: #ffffff;
}

.box-ticks i{
    font-size: 1.5rem;
    margin-right: 5px;
    color: var(--primary-color);
}


/* Services Section */
.service-card {
    background-color: var(--white-color);
  border-radius: var(--border-radius);
  border: 1px solid #ffcb05ba;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-card::before{
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-light);
  transition: var(--transition);
  z-index: -1;
}


.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    border-width:1px;
    border-style:solid;
}
.service-card:hover::before{
    height:100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: rotateY(360deg);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-description {
    color: var(--gray);
    margin-bottom: 0;
}



/* Process Section */
.process-timeline {
    position: relative;
    padding: 30px 0;
}

.process-step {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-description {
    color: var(--gray);
    margin-bottom: 0;
}

