/* Base */
body {
  /* font-family: 'Inter', sans-serif; */
  margin: 0;
  background-color: #fff;
  color: #222;
}

h2, h3, h4 {
  color: #8B0000;
}

p {
  line-height: 1.7;
}

/* Hero Section */
.hero {
  background-color: #8B0000;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.about-text h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #D4AF37;
}

/* Values Section */
.values-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.values-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #D4AF37;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.value-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item i {
  font-size: 36px;
  color: #D4AF37;
  margin-bottom: 15px;
}

.value-item h4 {
  margin-bottom: 10px;
  color: #8B0000;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .values-section h2 {
    font-size: 28px;
  }
}
/* WHY CHOOSE US SECTION */
.why-choose-us-section {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us-section h2 {
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 40px;
}

.choose-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.choose-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 300px;
  flex: 1 1 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.choose-item i {
  font-size: 40px;
  color: #8B0000;
  margin-bottom: 15px;
}

.choose-item h4 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.choose-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ANIMATION EFFECTS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .choose-us-grid {
    flex-direction: column;
    align-items: center;
  }

  .choose-item {
    max-width: 90%;
  }
}

/* COUNTER SECTION */
.counter-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.counter-section h2 {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 40px;
}

.counter-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.counter-box {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
}

.counter {
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-grid {
    flex-direction: column;
    align-items: center;
  }

  .counter-box {
    width: 80%;
  }
}
