body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f5f5;
}

/* NAVBAR (color only) */
.navbar {
  background: linear-gradient(90deg, #0f3d3e, #1f6f78) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* HERO (background image changed only) */
.hero {
  background: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c")
              center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

/* BUTTON (was yellow → now purple) */
.btn-custom {
  background: #6d28d9;
  border: none;
  color: white;
  font-weight: 600;
}
.btn-custom:hover {
  background: #5b21b6;
}

/* SECTION TITLE (color only) */
.section-title {
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
}

/* FEATURE CARDS (color only) */
.feature-card {
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #eef2f7);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.feature-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #1f6f78, #6d28d9);
  border-radius: 16px 16px 0 0;
  margin-bottom: 15px;
}

/* UNIFORM IMAGES (unchanged) */
.uniform-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

/* STATS (unchanged except shadow) */
.stats-box {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* CONTACT FORM (color only) */
.contact-form {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* FOOTER (slightly darker) */
footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 25px;
  text-align: center;
  margin-top: 80px;
}
