/* ===== GLOBAL ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8faff;
    margin: 0;
    padding: 0;
}

/* ===== NAVBAR ===== */
/* Navbar Styling */
.navbar {
    background-color: #0d6efd !important;
}

.navbar .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ffc107 !important; /* yellow hover effect */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


.footer a:hover {
  text-decoration: underline;
}

.footer .social-icons i {
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer .social-icons i:hover {
  color: #ffc107;
}

.footer h6, .footer h5 {
  letter-spacing: 0.5px;
}

.footer p, .footer li, .footer a {
  line-height: 1.6;
}

/* Contact Section Enhancements */
form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}
.btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #084298;
}

