/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  body {
    background-color: #f8f9fa;
    color: #333;
  }
  
  /* Navbar */
.navbar {
  background-color: #343a40 !important;
}

.navbar .navbar-nav .nav-link {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;  /* Ensure the position for pseudo-element or border positioning */
}

.navbar .navbar-nav .nav-link.active {
  padding-bottom: 8px; /* Adds padding to ensure there's space for the border */
  margin-bottom: -2px; /* Adjusts margin to avoid shifting */
}

/* Navbar Toggler */
.navbar .navbar-toggler {
  border-color: rgb(6, 194, 153);
}

.navbar .navbar-toggler-icon {
  background-color: rgb(172, 171, 182);
}
  
  /* Change the logo text color to white in the navbar */
  .navbar .logo-text {
    color: white;
  }
  
  /* Hero Section */
  #hero {
    background-color: #343a40;
    color: white;
    padding: 150px 0;
  }
  
  #hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  #hero h5 {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
  }
  
  /* Section Titles */
  .section-title h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f0c0c;
  }
  
  .section-title p {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
  }
  
  .line {
    width: 150px;
    height: 3px;
    background-color: #00d1b2;
    margin: 10px auto;
  }
  

  /* General Footer Styling */
footer.bg-dark {
  background-color: #1e1e1e;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 40px;
}

footer .footer-top {
  border-bottom: 1px solid #333;
}

footer .footer-top .container {
  max-width: 1140px;
}

footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

footer .line {
  width: 50px;
  height: 3px;
  background-color: #00d1b2;
  margin: 10px 0;
}

footer .footer-top p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
}

footer .footer-top ul {
  padding-left: 0;
  list-style: none;
}

footer .footer-top ul li {
  margin-bottom: 8px;
}

footer .footer-top ul li a {
  color: #bbb;
  font-size: 0.95rem;
  transition: color 0.3s ease-in-out;
}

footer .footer-top ul li a:hover {
  color: #00d1b2;
}

footer .social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.4rem;
  transition: color 0.3s ease-in-out;
}

footer .social-icons a:hover {
  color:#00d1b2;
}

/* Footer Bottom */
footer .footer-bottom {
  background-color: #121212;
  padding-top: 15px;
  padding-bottom: 15px;
}

footer .footer-bottom p {
  color: #bbb;
  font-size: 0.9rem;
}

footer .footer-bottom .col-auto {
  display: flex;
  align-items: center;
}

footer .footer-bottom .col-auto p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  footer .footer-top .row {
    flex-direction: column;
    align-items: center;
  }

  footer .footer-top .col-lg-3 {
    width: 100%;
    margin-bottom: 30px;
  }

  footer .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 767px) {
  footer h5 {
    font-size: 1.1rem;
  }

  footer .social-icons a {
    font-size: 1.2rem;
    margin-right: 10px;
  }

  footer .footer-top p {
    font-size: 0.9rem;
  }

  footer .footer-bottom p {
    font-size: 0.8rem;
  }
}
