 Custom Blue Shading Theme for Kabir Enterprises 
root {
  --primary-blue #0d6efd;
  --dark-blue #0a2540;
  --light-blue #e0f2fe;
  --accent-blue #009ffd;
}

body {
  font-family 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color #333;
}

 Navbar 
.navbar {
  background-color var(--dark-blue) !important;
}

.navbar-brand, .nav-link {
  color #fff !important;
}

.nav-linkhover, .nav-link.active {
  color var(--accent-blue) !important;
}

.nav-link.active {
  font-weight: 800;
}

 Hero Section 
.hero-section {
  background linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color white;
  padding 80px 0;
}

 Footer 
footer {
  background-color var(--dark-blue);
  color #adb5bd;
}

footer a {
  color #fff;
  text-decoration none;
}

footer ahover {
  color var(--accent-blue);
}

 Cards & Sections 
.feature-card {
  border none;
  transition transform 0.3s ease;
  box-shadow 0 4px 6px rgba(0,0,0,0.05);
}

.feature-cardhover {
  transform translateY(-5px);
}