* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #07131f 0%, #10273d 100%);
  color: #eef5fb;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 4.5%;
  background: rgba(6, 16, 26, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.home-link,
.call-link {
  display: inline-block;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #f2c94c;
  color: #07111a;
  font-weight: 700;
  transition: 0.25s ease;
}

.call-link {
  justify-self: end;
}

.home-link:hover,
.call-link:hover,
.whatsapp-btn:hover {
  transform: translateY(-3px);
}

.header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: center;
}

.page-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  padding: 3px;
}

.header-title h1 {
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.header-title p {
  color: #a9bfd2;
  font-size: 0.76rem;
}

.hero-section {
  width: min(1200px, 92%);
  margin: 2rem auto 0;
  min-height: 300px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(242,201,76,0.12), rgba(14,38,60,0.92)), url('aadhar-services.jpg') center/cover no-repeat;
  display: flex;
  align-items: end;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.24);
}

.hero-content {
  max-width: 760px;
}

.tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #f2c94c;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.hero-content p {
  color: #d8e6f0;
  font-size: 1.05rem;
  max-width: 60ch;
}

.service-section,
.info-section {
  width: min(1200px, 92%);
  margin: 2rem auto 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.2rem;
}

.section-title h2,
.info-box h2 {
  color: #f2c94c;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
}

.section-title p {
  color: #c9d8e4;
}

.service-grid,
.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.service-card,
.info-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.tile-image {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card p,
.info-box li,
.info-box p {
  color: #dce8f2;
}

.aadhar-card {
  background: linear-gradient(180deg, rgba(32,83,123,0.65), rgba(255,255,255,0.05));
}

.info-box ul {
  list-style: none;
  margin-top: 1rem;
}

.info-box li {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
}

.whatsapp-btn {
  display: inline-block;
  width: fit-content;
  background: #25D366;
  color: #03120a;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

@media (max-width: 768px) {
  .page-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.6rem;
    padding: 0.7rem 4%;
  }

  .home-link,
  .call-link {
    justify-self: center;
    padding: 0.62rem 0.9rem;
  }

  .page-logo {
    width: 34px;
    height: 34px;
  }

  .header-title h1 {
    font-size: 0.96rem;
  }

  .header-title p {
    font-size: 0.68rem;
  }

  .hero-section {
    padding: 1.2rem;
    min-height: 260px;
  }
}