body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: url('B1.jpg') no-repeat center/cover;
  color: #fff;
}

/* Section */
.services {
  padding: 60px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}

.services h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.services .intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #f2f2f2;
}

/* Grid */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Modern clickable cards */
.service-card {
  background: linear-gradient(145deg, #0d47a1, #1976d2);
  color: #fff;
  text-decoration: none;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Hover effect */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #42a5f5, #0d47a1);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .services h1 {
    font-size: 2rem;
  }
  .service-card {
    padding: 25px 20px;
  }
}

/* Footer */
.footer {
  background: #0d47a1;
  color: #fff;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #90caf9;
}

.footer-social .social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #90caf9;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}
