/* Header Wrapper */
.global-nav-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0px 8%;
  background-color: #DAF2FE;
}

.global-logo img {
  height: 130px;
}

/* Desktop Navigation */
.global-nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.global-nav-links li {
  position: relative;
}

.global-nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: block;
  padding: 8px 8px;
  transition: color 0.3s;
}

.global-nav-links a:hover {
  background-color: #29166F;
  color: #fff;
}

.global-nav-links a.active {
  color: #3498db;
}

/* Dropdown (Desktop) */
.global-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #29166F;
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  border-radius: 6px;
  z-index: 1000;
}

.global-dropdown-menu li {
  position: relative;
}

.global-dropdown-menu li a {
  padding: 10px 20px;
  color: #fff;
  white-space: nowrap;
}

/* Show submenu when hovering parent */
.global-dropdown:hover > .global-dropdown-menu {
  display: block;
}

/* Sub-dropdown (nested, opens to right) */
.global-dropdown-menu li:hover > .global-dropdown-menu {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  background: #3b2a7a;
  border-radius: 6px;
}

/* Mobile Navigation */
.global-menu-toggle {
  display: none;
  font-size: 26px;
  color: #000;
  cursor: pointer;
}

@media (max-width: 768px) {
  .global-nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .global-nav-links {
    width: 100%;
    flex-direction: column;
    background: rgba(255,255,255,0.95);
    border-radius: 6px;
    margin-top: 10px;
    padding: 10px 15px;
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .global-nav-links.active {
    display: flex;
    max-height: 600px;
  }

  .global-nav-links a {
    color: #000;
    padding: 10px 0;
  }

  .global-menu-toggle {
    display: block;
  }


  .global-dropdown > a::after {
    content: " +";
    float: right;
  }

  .global-dropdown.open > a::after {
    content: " -";
  }

  .global-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 5px;
    position: relative;
    background: transparent;
  }

  .global-dropdown.open > .global-dropdown-menu {
    display: flex;
  }

  .global-dropdown-menu li.open > .global-dropdown-menu {
    display: flex;
    padding-left: 20px;
  }

  .global-dropdown-menu li a {
    color: #000;
    padding: 8px 0;
    font-size: 15px;
  }
}






/* global footer styling  */


.global-footer {
  background: #1d0d66; 
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.global-footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.global-footer-col {
  font-size: 14px;
  line-height: 1.8;
}
.global-footer-col strong{
    font-size: 18px;
}

.global-footer-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.global-footer-col p{
    font-size: 17px;
}

.global-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-footer-col ul li {
  margin-bottom: 8px;
}

.global-footer-col ul li a {
  color: #48aaff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 17px;
}
.global-footer-col ul li a i{
    color: white;
}

.global-footer-col ul li a:hover {
  color: #fff;
}

.global-footer a {
  color: #48aaff;
  text-decoration: none;
}

.global-footer-social {
  margin-top: 15px;
}

.global-footer-social a {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  text-align: center;
  line-height: 32px;
  color: #fff;
  transition: background 0.3s;
}

.global-footer-social a:hover {
  background: #48aaff;
}

.global-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.global-footer-certifications img {
  height: 40px;
  margin: 10px;
}
