* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #e5eef6;
  background:
    radial-gradient(circle at top, rgba(20, 184, 166, 0.12), transparent 30%),
    linear-gradient(180deg, #071420 0%, #0b1f33 45%, #08111b 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 5%;
  background: linear-gradient(90deg, #071420, #0f2a46);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

.logo-area h1 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
  color: #f4fbff;
}

.logo-area p {
  font-size: 0.75rem;
  color: #a8bfd2;
  line-height: 1.3;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: #ecf7ff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.site-nav a:hover {
  background: #14b8a6;
  color: #071420;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5%;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomSlow 14s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 10, 18, 0.82), rgba(15, 42, 70, 0.52));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 2rem 1rem;
  animation: fadeUp 1s ease-out;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: #f3fbff;
}

.hero-content p {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #c9dceb;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn.primary {
  background: #D4AF37;
  color: #071420;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f3fbff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn:hover {
  transform: translateY(-3px);
}

.content-section {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 5rem 0;
}

.tinted-section {
  background: linear-gradient(180deg, rgba(10, 29, 46, 0.72), rgba(7, 20, 32, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.content-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.2rem;
  color: #EBA442;
  text-align: center;
}

.content-section p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #d8e7f2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card,
.service-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 24, 39, 0.35), rgba(13, 33, 53, 0.82));
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: #e9f7ff;
  transition: 0.35s ease;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card::before,
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.service-card > *,
.service-box > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.service-box:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 20px 38px rgba(212, 175, 55, 0.18);
}

.service-card h3,
.service-box h3 {
  color: #fff;
  margin-bottom: 0.7rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.service-card p,
.service-box p {
  text-align: center;
  color: #f2f7fb;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.loan-card { background-image: url("loan.jpg"); }
.aadhar-card { background-image: url("aadhar.jpg"); }
.esevai-card { background-image: url("esevai.jpg"); }
.sbi-card { background-image: url("sbi.jpg"); }
.jobs-card { background-image: url("jobs.jpg"); }
.ration-card { background-image: url("ration.jpg"); }
.instagram-card { background-image: url("instagram.jpg"); }
.facebook-card { background-image: url("facebook.jpg"); }
.maps-card { background-image: url("maps.jpg"); }

.contact-box {
  background: linear-gradient(180deg, rgba(8, 23, 37, 0.92), rgba(12, 31, 48, 0.98));
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-grid {
  margin-top: 1.5rem;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem 5rem;
  color: #a8bfd2;
}

.quote-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  background: #D4AF37;
  color: #071420;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.28);
  transition: 0.3s ease;
  border: 1px solid #D4AF37;
}

.quote-btn:hover {
  transform: translateY(-3px);
  background: #EBA442;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.65rem 3.5%;
    gap: 0.6rem;
  }

  .logo-area {
    gap: 0.5rem;
    align-items: center;
  }

  .site-logo {
    width: 32px;
    height: 32px;
    padding: 2px;
  }

  .logo-area h1 {
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .logo-area p {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .site-nav ul {
    gap: 0.35rem;
    justify-content: center;
  }

  .site-nav a {
    padding: 0.5rem 0.7rem;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 74vh;
    padding: 3rem 1rem;
  }

  .content-section {
    width: min(92%, 1200px);
    padding: 4rem 0;
  }

  .tinted-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card,
  .service-box {
    padding: 1.1rem;
    min-height: 160px;
  }

  .quote-btn {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}
