
    header {
      background: url('../images/services.png') center/cover no-repeat;
      height: 300px;
      color: white;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(2px);
    }

    header h1 {
      position: relative;
      z-index: 2;
      font-size: 3em;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    }
    .header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.back-home {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.023);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.back-home:hover {
  background-color: rgba(255, 255, 255, 0.094);
}

.intro-section {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
}

.intro-section h2 {
  font-size: 2.5em;
  color: #002752;
  margin-bottom: 10px;
}

.intro-section p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .intro-section h2 {
    font-size: 1.8em;
  }

  .intro-section p {
    font-size: 1em;
    padding: 0 10px;
  }
}


    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 50px 30px;
      /* max-width: 1200px; */
      margin: auto;
    }

    .service-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .service-content {
      padding: 20px;
    }

    .service-content h2 {
      margin-top: 0;
      color: #004085;
    }

    .service-content p {
      color: #555;
      line-height: 1.6;
    }


    @media (max-width: 600px) {
      header h1 {
        font-size: 2em;
        text-align: center;
      }

      .service-content h2 {
        font-size: 1.3em;
      }
    }


.service-card {
  cursor: pointer;
}

    .modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

