


body {
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.9;
}

.hero{

    min-height:80vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url('../images/about-hero.jpg');

    background-size:cover;

    background-position:center;

}

.hero-text h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
  max-width: 800px;
}

.hero-text p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: #ff4d00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,77,0,0.4);
}

section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #ff4d00;
  text-align: center;
}

.about-content p {
  color: #ccc;
  font-size: 17px;
  margin-bottom: 18px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.about-content strong {
  color: #ff4d00;
}

.highlight-box {
  background: #1a1a1a;
  border-right: 4px solid #ff4d00;
  border-radius: 10px;
  padding: 20px 25px;
  max-width: 850px;
  margin: 25px auto;
}

.highlight-box p {
  margin: 0;
  color: #eee;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.stat {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px 10px;
  color: #aaa;
  font-size: 14px;
}

.stat span {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #ff4d00;
  margin-bottom: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #ff4d00;
}

.card .icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.card p {
  color: #aaa;
  font-size: 15px;
}

.location-text {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
  font-size: 16px;
}

.testimonial {
  background: #1a1a1a;
  border-right: 4px solid #ff4d00;
  border-radius: 10px;
  padding: 25px;
}

.testimonial p {
  color: #ddd;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial span {
  color: #ff4d00;
  font-size: 14px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 30px;
}

.contact input, .contact select {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
}

.contact button {
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #ff4d00;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact button:hover {
  background: #e64500;
}

.contact-info {
  text-align: center;
  color: #ccc;
}

.contact-info p {
  margin-bottom: 8px;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 99;
}

footer {
  text-align: center;
  padding: 25px;
  color: #777;
  border-top: 1px solid #222;
}

@media (max-width: 768px) {
  .navbar { flex-direction: column; gap: 15px; }
  .navbar nav a { margin: 0 10px; }
  .hero-text h1 { font-size: 28px; }
  section { padding: 50px 20px; }
}