/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
}

.navbar-brand {
font-size: 15px !important;
}

.navbar-brand img {
  width: 60x;
  height: 60px;
  object-fit: contain;   /* keeps logo ratio inside box */
  background: none;      /* remove square background */
  border-radius: 0;      /* ensure no rounded background */
}

 
/* Default transparent navbar */
#mainNavbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* After scroll */
#mainNavbar.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

#mainNavbar.scrolled .nav-link,
#mainNavbar.scrolled .navbar-brand {
  font-family: "Poppins", sans-serif;
  color: #000 !important;
}

/* ✅ Mobile dropdown white background only */
@media (max-width: 991px) {
  #mainNavbar .navbar-collapse {
    background-color: white; /* dropdown background */
    padding: 10px;
    border-radius: 5px;
  }

  #mainNavbar .navbar-collapse .nav-link {
    font-family: "Poppins", sans-serif;
    color: #000 !important;
  }
}

/* Hamburger icon color when scrolled */
#mainNavbar.scrolled .navbar-toggler {
  border-color: #000;
}

#mainNavbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



/* Connect Footer (small social footer) */
.connect-footer {
  background: #111; /* slightly lighter than main footer */
  padding: 30px 20px;
  font-family: "Roboto", sans-serif;
}

.connect-footer p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #f1f1f1;
}

.connect-footer a {
  color: #f1f1f1;
  transition: color 0.3s ease, transform 0.2s ease;
}

.connect-footer a:hover {
  color: #00aced; /* nice hover accent */
  transform: scale(1.1);
}

.footer-section {
  background: black; /* deep navy blue */
  color: #f1f1f1;
  padding: 60px 20px 30px;
  font-family: "Poppins", sans-serif;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer-text {
  font-size: 0.9rem;
  color: #dcdcdc;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dcdcdc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.2rem;
  color: #dcdcdc;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.85rem;
  color: #cccccc;
}
