/* service.css */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #003469, #06538e, #087388, #003366);
  color: #000000;
  min-height: 100vh;
}

.services-section {
  padding: 60px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin: 40px auto;
  max-width: 1200px;
}

.lottie-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.services-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #030032;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.service-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-link:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #080043;
}
    .cta-button {
      display: block;
      width: fit-content;
      margin: 40px auto;
      padding: 15px 30px;
      background: linear-gradient(135deg, #00d4ff, #ffffff);
      color: rgb(1, 6, 61);
      font-weight: bold;
      font-size: 18px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
      text-decoration: none;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #ffffff, #00d4ff);
    }