@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  background: #030b10;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  overflow-x: hidden;
}

/* ===== HERO ===== */
/* ===== HERO SECTION (Match Gallery Banner Height & Glow) ===== */
.hero {
  background: url('../img/service.png') center/cover no-repeat;
  position: relative;
  height: 55vh; /* exact height like gallery */
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* same overlay darkness as gallery */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #00eaff;
  font-weight: 700;
  text-shadow: 0 0 20px #00eaff, 0 0 40px #007bff;
  margin-bottom: 10px;
}

.hero-content p {
  color: #b8c5d1;
  font-size: 1rem;
  margin: 0;
}

.hero-content .breadcrumb {
  color: #00eaff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-content .breadcrumb:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: 45vh;
    min-height: 300px;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}


/* ===== SERVICES ===== */
.services {
  padding: 80px 10%;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #00eaff;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #00eaff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 238, 255, 0.25);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  min-height: 470px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s forwards;
}

.service-card img {
  width: 130px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 238, 255, 0.4);
}

.service-card h3 {
  color: #00eaff;
  margin-bottom: 10px;
}

.service-card p {
  color: #c6cbd3;
  font-size: 0.95rem;
}

/* ===== PROCESS ===== */
.process {
  padding: 80px 10%;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 238, 255, 0.25);
  border-radius: 16px;
  padding: 40px 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.process-card i {
  font-size: 2rem;
  color: #00eaff;
  margin-bottom: 15px;
}

.process-card h3 {
  color: #00eaff;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(90deg, #007bff, #00eaff);
  text-align: center;
  padding: 80px 20px;
  color: #000;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: #007bff;
  background: #fff;
  border: 2px solid #fff;
  animation: colorPulse 2.5s infinite;
  transition: 0.4s;
}

.cta-button:hover {
  background: transparent;
  color: #fff;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* ===== FOOTER ===== */
footer {
  background: #060b0f;
  text-align: center;
  padding: 50px 20px;
  color: #c6cbd3;
  border-top: 1px solid rgba(0, 238, 255, 0.15);
}

.footer-info p i {
  color: #00eaff;
  margin-right: 6px;
}

.footer-social a {
  color: #00eaff;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
  text-shadow: 0 0 15px #00eaff;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 238, 255, 0.1);
  margin-top: 20px;
  padding-top: 15px;
  font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes colorPulse {
  0%, 100% { background: #fff; color: #007bff; }
  50% { background: #007bff; color: #fff; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .service-grid, .process-grid {
    grid-template-columns: 1fr;
  }
}
