/* Sticky navbar */
.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1030; /* above other content */
  background-color: #f8f9fa; /* optional: navbar background */
  border-bottom: 1px solid #dee2e6; /* optional: subtle border */
}

/* Adjust logo spacing if needed */
.navbar-brand img {
  margin-right: 8px;
  border-radius: 10px;
}
/* Navbar brand text */
.navbar-brand {
  font-size: 1.5rem; /* Adjust size as needed */
  color: #ffffff; /* Change to desired color */
  font-weight: bold; /* Optional: make it bold */
  font-family: 'Times New Roman', Times, serif;
}
/* Remove border and outline from the toggler */
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important; /* Removes the focus shadow */
}
/* Adjust color of text in nav if needed */
.nav-link {
  color:white; /* Change to desired color */
  transition: .3s;
}
.active {
  color: white !important;
  font-weight: 500;
  border-bottom: 1.5px solid white; /* Optional: underline for active link */

}
.nav-link:hover {
  color: #f8f9fa; /* Change to desired hover color */
  scale: 1.1;
}

.navbar{
background: #0800e8;
background: linear-gradient(90deg, rgba(8, 0, 232, 1) 0%, rgba(0, 0, 204, 1) 45%, rgba(0, 212, 255, 1) 100%);
}


/* Footer styles */
.site-footer {
  background: #fff;
  color: #333;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 200px;
  margin: 5px;
}

.footer-logo {
  font-size: 1.5rem;
  margin: 0 0 10px;
  font-weight: bold;
  color: #f7931e; /* orange like screenshot */
}
.footer-logo span {
  color: #000;
}

.footer-tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.4;
}

.footer-section ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
}

.footer-section ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #007bff;
}

.footer-section i {
  margin-right: 6px;
  color: inherit;
  transition: color 0.3s ease;
}
.footer-section a:hover i {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
