     * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
    font-family: 'Segoe UI', sans-serif;

  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(to right,
    #f8f6f6,
    #f8f6f6,
    #f6f9fc,
    #f1f5fb,
    #e0ecf8,
    #ffffff
  );
  z-index: 999;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  margin-top: -15px;   /* pull up if needed */
  margin-bottom: -15px; /* pull down if needed */
  margin-left : -30px;
}


.nav-links {
  display: flex;
  gap: 25px;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #003b73;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: #fff;
  background-color: #acc8ee;
}
/* Dropdown Styles */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;;
  background-color: #f1f5fb;
  min-width: 200px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}

.nav-links .dropdown:hover > .dropdown-menu {
  display: block;
}

.nav-links .dropdown-menu li {
  position: relative;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #003b73;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-links .dropdown-menu a:hover {
  background-color: #acc8ee;
  color: #fff;
}

/* Submenu Styles */
.nav-links .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
  display: none;
}

.nav-links .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}





 .site-footer {
  background: #101820;
  color: #fff;
  padding: 60px 30px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #00ffff;
  text-align: center;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00ffff;
  border-bottom: 2px solid #00ffff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00ffff;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 20px;
}
.footer-col.business-solutions {
  display: block; /* vertical stack */
  max-width: 300px; /* optional, keep the width neat */
}

.footer-col.business-solutions h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #33ffff;
}

.footer-col.business-solutions .subsection {
  margin-bottom: 25px;
}

.footer-col.business-solutions .subsection h5 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #33ffff;
  border-bottom: 2px solid #33ffff;
  padding-bottom: 4px;
}

.footer-col.business-solutions .subsection ul {
  list-style: none;
  padding-left: 15px; /* indent the list */
}

.footer-col.business-solutions .subsection ul li {
  margin-bottom: 8px;
}

.footer-col.business-solutions .subsection ul li a {
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col.business-solutions .subsection ul li a:hover {
  color: #33ffff;
  padding-left: 5px;
  transition: all 0.3s ease;
}

/* SOCIAL LINKS */
.social-links {
  margin-top: 30px;
  text-align: center;
}
.social-links img {
  width: 40px;
  margin: 0 10px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.social-links img:hover {
  filter: grayscale(0%);
}