/* ===== GENERAL ===== */
body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* ===== NAVBAR ===== */
.navbar-brand {
  letter-spacing: 1px;
}

.nav-link {
  color: #fff !important;
  margin-right: 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #0d6efd !important;
}

/* ===== HOME SECTION ===== */
.home-section {
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.home-section .container {
  max-width: 700px;
}
/* ===== ABOUT SECTION ===== */
#about {
  background-color: #f8f9fa;
}

#about h2 {
  color: #0d6efd;
}

#about p {
  font-size: 15px;
  line-height: 1.7;
}

#about ul li {
  font-size: 15px;
  margin-bottom: 8px;
}
/* ===== VISION, MISSION & OBJECTIVES ===== */
#vision {
  background-color: #ffffff;
}

#vision .card {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

#vision .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

#vision i {
  color: #0d6efd;
}

#vision ul li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.6;
}
/* ===== SERVICES SECTION ===== */
#services {
  background-color: #f8f9fa;
}

#services .card {
  border-radius: 12px;
  transition: all 0.3s ease;
}

#services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#services i {
  color: #0d6efd;
}

#services p {
  font-size: 15px;
  line-height: 1.6;
}
/* ===== CERTIFICATES & COMPLIANCE ===== */
#certificates {
  background-color: #ffffff;
}

#certificates .card {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

#certificates .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#certificates i {
  color: #0d6efd;
}

#certificates p {
  font-size: 14px;
  line-height: 1.5;
}
/* ===== CONTACT SECTION ===== */
#contact {
  background-color: #f8f9fa;
}

#contact .contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  border-radius: 15px;
  padding: 2rem;
  min-height: 400px;
  transition: all 0.3s ease;
}

#contact .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#contact h5 {
  color: #0d6efd;
}

#contact ul li {
  font-size: 15px;
  line-height: 1.6;
}

#contact .btn {
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
}

#contact .btn:hover {
  opacity: 0.9;
}
/* ===== FOOTER ===== */
.footer {
  background-color: #0b0c10;
  color: #ddd;
}

.footer h5, 
.footer h6 {
  color: #fff;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer .social-links a {
  color: #ddd;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer .social-links a:hover {
  color: #0d6efd;
}

.footer .footer-link {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer .footer-link:hover {
  color: #0d6efd;
}

.footer .btn-outline-light {
  border: 1px solid #0d6efd;
  color: #0d6efd;
  transition: all 0.3s ease;
}

.footer .btn-outline-light:hover {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}
