body {
  font-family: 'Inter', sans-serif;
}

.nav-link {
  color: #444;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: #f97316;
}

.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(10, 20, 35, 0.78),
      rgba(10, 20, 35, 0.78)
    ),
    url(" https://images.unsplash.com/photo-1519681393784-d120267933ba");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}


.btn-primary {
  background: #f97316;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 999px;
}

.btn-primary:hover {
  background: #ea580c;
}

.btn-outline {
  border: 2px solid white;
  padding: 12px 24px;
  border-radius: 999px;
}

.btn-outline-dark {
  border: 2px solid #f97316;
  color: #f97316;
  padding: 10px 22px;
  border-radius: 999px;
}

.icon-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-circle {
  background: #f97316;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}


.section-title {
  font-size: 28px;
  font-weight: 700;
}

.section-subtitle {
  margin-top: 8px;
  color: #666;
}

.service-card {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  font-weight: 500;
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 0;
}

.footer h4,
.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-input {
  width: 100%;
  padding: 10px;
  border-radius: 999px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  border-top: 1px solid #1e293b;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.services-hero {
  min-height: 80vh;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.services-section {
  background-color: #f3f4f6;
}

.service-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon img {
  width: 26px;
  height: 26px;
  filter: invert(1);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}



/* ===== HEADER COLOR FIX ===== */
header {
  color: #e5e7eb; /* gray-200 */
}

header a {
  color: #e5e7eb;
}

header a:hover {
  color: #ffffff;
}

/* hamburger menu */
#menu-btn span {
  background-color: #ffffff;
}








