:root {
    --primary-color: #1f4755;
    --text-color: #060606;
    --hover-color: #9a6a39;
    --hover-text: #faf1ed;
}

.process-card {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.process-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease-out;
}

.process-card:hover img {
    transform: scale(1.05);
}

.process-number {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.process-content {
    position: absolute;
    padding: 10px;
    border-radius: 15px;
    bottom: 0;
    left: 40%;
    background-color: var(--hover-text);
}

.process-content p {
    font-size: 1em;
    font-weight: bold;
}


.care-service-card i {
    color: var(--hover-color) !important;
}

.care-service-card h5 {
    color: var(--primary-color);
}

/* Mission & Vision Section */
.mission-vision-section {
    background-position: center 50%;
    background-repeat: no-repeat;
}

.mv-box {
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mission-box {
    border-left: 5px solid var(--primary-color);
}

.vision-box {
    border-left: 5px solid var(--hover-color);
}

.mv-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #113f67;
}

.mv-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
}

/* Department Page Style */
.department-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.department-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#stats-section {
  /* position: relative; */
  background: rgb(50, 59, 145);
  background: linear-gradient(
    90deg,
    rgba(50, 59, 145, 1) 40%,
    rgba(35, 162, 219, 1) 100%
  );
}

#stats-section .container {
  z-index: 2;
}

.stat-card {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background-color: rgba(0, 0, 0, 0.7);
}

.stat-card .counter {
  display: inline-block;
  color: white;
}

.stat-card span {
  margin-left: -10px;
}

/* Card */
#card-content {
  margin-top: 0 !important;
}

.card-body p {
  font-size: 1.1rem !important;
}

/* service */
.service-img {
  width: 300px;
  height: 300px;
  border: 2px solid var(--secondary-color);
  border-radius: 20px 0 20px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Feature faq*/
#feature-qestion-section {
      background: rgb(50, 59, 145);
  background: linear-gradient(360deg, #323b91 40%, #23a2db 100%);
}
