body {
  font-family: 'Poppins', sans-serif;
  background-color: #0F0F0F;
  color: #fff;
}

.navbar {
  background-color: #0F0F0F;
}

.logo-orange {
  color: #FF6A00;
  font-weight: 700;
}

.logo-white {
  color: #fff;
  font-weight: 700;
}

.hero {
  height: 100vh;
  background: url("./assets/images/hero-bg.jpg.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.9)
  );
  z-index: -1;
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FF6A00;
}

.hero p {
  font-size: 1.3rem;
  color: #ddd;
  margin-bottom: 30px;
}


.btn-orange {
  background: #FF6A00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orange:hover {
  background: #e65c00;
}

.section {
  padding: 80px 0;
}

.section-title {
  color: #FF6A00;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.service-card {
  background: #151515;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(255,106,0,0.4);
}

.service-card h4 {
  color: #FF6A00;
  margin-bottom: 15px;
}

.bg-dark {
  background-color: #0A0A0A;
}

.about-text {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  color: #ccc;
}

footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #777;
}

.navbar-logo {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 38px;
  }
}
.highlight {
  color: #FF6A00;
  font-weight: 600;
}

.mission-text {
  font-size: 1.15rem;
  color: #eee;
}
/* Contact Section */
.map-box {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.1);
}

.contact-info {
  background: #151515;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.contact-info h4 {
  color: #fff;
  font-weight: 600;
}

.contact-text {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.contact-info p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #FF6A00;
  font-size: 18px;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.footer-social a:hover {
  background: #FF6A00;
  color: #fff;
  transform: translateY(-5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}
.nav-link.active,
.nav-link:hover {
  color: #FF6A00 !important;
}
html {
  scroll-behavior: smooth;
}
.section::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #FF6A00;
  margin: 0 auto 30px;
  border-radius: 5px;
}

