* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

.golden-text {
  color: #e8ce65;
}

.gray-text {
  color: #8e8e93;
}

.btn-golden {
  background: linear-gradient(135deg, #e8ce65, #ffa500);
  border: none;
  color: #000000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-golden:hover {
  background: linear-gradient(135deg, #ffa500, #e8ce65);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  color: #000000;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: 700;
  color: #e8ce65 !important;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #e8ce65 !important;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./assets/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title .line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #e8ce65, #ffa500);
  margin: 20px auto;
}

.category-card {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
  border-color: #e8ce65;
}

.category-icon {
  font-size: 3rem;
  color: #e8ce65;
  margin-bottom: 20px;
}

.category-card h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-box {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: #e8ce65;
}

.feature-icon {
  font-size: 3rem;
  color: #e8ce65;
  margin-bottom: 20px;
}

.stats-section {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e8ce65;
  display: block;
}

.contact-form {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 40px;
  margin-top: 30px;
}

.form-control {
  background-color: #2d2d2d;
  border: 1px solid #555;
  color: #ffffff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  background-color: #2d2d2d;
  border-color: #e8ce65;
  color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-control::placeholder {
  color: #8e8e93;
}

.footer {
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  padding: 40px 0 20px;
  text-align: center;
}

.image-placeholder {
  background: linear-gradient(145deg, #2d2d2d, #3d3d3d);
  border: 2px dashed #555;
  border-radius: 15px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8e93;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.process-step {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, #e8ce65, #ffa500);
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }
}

.stat-item .stat-number,
.stat-item .stat-percent {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.5rem; /* adjust as needed */
  color: #e8ce65;
  margin: 0;
  line-height: 1;
}

.stat-item .stat-percent {
  margin-left: 4px;
  font-size: 1.5rem; /* slightly smaller than the number */
}