     /*service section*/
     :root {
      --primary-color: #5d5fef;
      --secondary-color: #365add;
      --Service-text-color: #333;
      --background-light: #f4f6f9;
      --white: #ffffff;
  }

  body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--Service-text-color);
  }

  /* Services Section */
  .services-section {
      padding: 60px 0;
      background-color: var(--white);
  }

  .services-container {
      width: 80%;
      max-width: 1800px;
      margin: 0 auto;
      padding: 0 15px;

  }

  .services-title {
      text-align: center;
      margin-bottom: 50px;
  }

  .services-title h2 {
      font-size: 2.5rem;

  }

  
  .services-title span {
      color: var(--primary-color);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
  }

  .service-card {
      background-color: var(--white);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }

  .service-card-image {
      width: 100%;
      height: 250px;
      overflow: hidden;
  }

  .service-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

  .service-card:hover .service-card-image img {
      transform: scale(1.1);
  }

  .service-card-content {
      padding: 25px;
      text-align: center;
      flex-grow: 1;
  }

  .service-card-content h3 {
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-size: 1.3rem;
  }

  .service-card-content p {
      color: var(--Service-text-color);
      opacity: 1;
  }

  
  /* Services Section Styling */
.service {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: #f9f9fc;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.section-title .heading {
  color: var(--primary-color);
  font-weight: bold;
}

.Services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-offer {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-offer:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-content {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-offer:hover .service-img {
  transform: scale(1.1);
}

.offerTitle {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 152, 219, 0.9);
  color: white;
  padding: 10px 15px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.service-offer > p {
  padding: 1rem;
  color: #34495e;
  line-height: 1.6;
  text-align: justify;
  font-size: 0.95rem;
}


/* Milestone Section Responsive Design */
.milestone {
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px 20px;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.metric-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.number {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.number:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px #00000026;
}

.digit {
  color: #527DF3;
  font-size: 48px;
  margin: 0;
  font-weight: 700;
}

.number p:last-child {
  color: #6c757d;
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .services-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Responsiveness */
@media screen and (max-width: 992px) {
  .metric-box {
      grid-template-columns: repeat(2, 1fr);
  }
}


@media screen and (max-width: 768px) {
  .Services {
    grid-template-columns: 1fr;
  }

  .services-grid {
        grid-template-columns: 1fr;
    }

  .services-title h2 {
      font-size: 2rem;
  }

  .service-card-image {
      height: 200px;
  }

}

/* Mobile Responsiveness */
@media screen and (max-width: 576px) {
  .milestone {
      padding: 20px 10px;
      width: 95%;
      margin: 20px auto;
  }

  .metric-box {
      grid-template-columns: 1fr;
      gap: 15px;
  }

  .digit {
      font-size: 36px;
  }

  .number p:last-child {
      font-size: 12px;
  }
}

/* Ensure full responsiveness with flexbox fallback */
@media screen and (max-width: 480px) {
  
  .services-section {
      padding: 50px 0;
  }

  .services-title {
      margin-bottom: 30px;
  }

  .services-title h2 {
      font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-content {
      padding: 15px;
  }
  
  .metric-box {
      display: flex;
      flex-direction: column;
  }
}


