body {
  overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #006380aa;
  border-radius: 30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #006380;
}

.job-card ul::-webkit-scrollbar, 
.testimonial-desc::-webkit-scrollbar {
    width: 3px;
}










.my-navbar {
  background: #006380;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 1000;
}

.my-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.my-brand img {
  height: 25px;
}

/* Hamburger */
.my-hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: none;
  z-index: 1001;
}

/* Menu */
.my-menu {
  display: flex;
  box-sizing: border-box;
}

.my-navlist {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-navitem {
  position: relative;
}

.my-link {
  display: block;
   padding: 0.75rem 1rem;
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0%;
  text-align: center;
}

/* Dropdown */
.my-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 180px;
  flex-direction: column;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  list-style: none;
}

.my-dropdown-item {
  padding: 0.5rem 1rem;
  color: #757577;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 15px;
  width: 100%;
  display: block;
}

.my-dropdown-item:hover {
  background: #E3F9FF;
}

/* Simple downward arrow for dropdown */


/* Show dropdown on hover (desktop) */
.dropdown:hover>.my-dropdown {
  display: flex;
}

.my-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 46px;
  z-index: 1001;
  position: relative;
  width: 46px;
  height: 46px;
}

/* Show hamburger icon */
.my-hamburger::before {
  content: "☰";
  /* hamburger symbol */
  display: block;
  font-size: 35px;
  line-height: 1;
  text-align: center;
}

/* When active, show cross */
.my-hamburger.active {
  position: fixed;
  right: 10px;
  top: 0;
}

.my-hamburger.active::before {
  content: "×";
  /* cross symbol */
  font-size: 46px;
  line-height: 1;
}

.my-dropdown-item.current-link {
  font-weight: bold;
  color: #006380;
  background: #E3F9FF;
  transition: all 300ms ease-in-out;
  position: relative;
}

.my-dropdown-item.current-link::before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  background-image: url('../images/arrow-icon.png');
  background-size: contain;
  background-position: center;
}

.my-dropdown-item.current-link:hover {
  background-color: #E3F9FF;
}

.current-dropdown>.dropdown-toggle {
  font-weight: bold;
}

.my-navitem .my-link.current-link {
  color: #E3F9FF;
  /*background-color: #E3F9FF;*/
}

.my-navitem .my-link.current-link::before {
  display: none;
}


#mainMenu {
    justify-content: flex-end;
    width: 80%;
}


/* Intelligent navbar styles */
header {
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Navbar shrinks and darkens on scroll */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Navbar hides when scrolling down */
.navbar-hidden {
  transform: translateY(-100%);
}

/* Active link highlight */
.current-link {
  color: #b30000;
  font-weight: 600;
}

/* Dropdown parent highlight */
.current-dropdown > .dropdown-toggle {
  color: #E3F9FF;
}

/* Mobile active states */
.my-menu.active {
  display: block;
}

.my-hamburger.active {
  background: url('/images/close-icon.svg') center/contain no-repeat;
}



section {
  scroll-margin-top: 65px; /* height of the header */
  padding-top: 65px;
}


.cart-icon {
  height: 30px;
}

.cart-btn .my-link {
    padding: 0.75rem 0;
}


@media (max-width: 768px) {

  /* Hamburger */
  .my-hamburger {
    display: block;
    z-index: 1001;
    /* above menu */
  }

  /* Mobile Menu - full screen */
  .my-menu {
    position: fixed;
    top: 0;
    background: #006380;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    display: none;
    z-index: 999;
    margin-top: 0;
    box-sizing: border-box;
  }

  .my-navlist {
    background: #006380;
    height: 700px;

    overflow-y: auto;
  }

  /* Show menu when active */
  .my-menu.active,
  .my-menu.open {
    display: flex;
  }

  /* Nav list */
  .my-navlist {
    flex-direction: column;
    gap: 0;
    width: 90%;
    margin: 0 auto;
  }

  .my-navlist {
    margin-top: 3rem;
  }

  /* Links */
  .my-navitem .my-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    margin: 0;
    text-align: left;
  }

  /* Dropdown */
  .my-navitem.dropdown .my-dropdown {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    box-shadow: none;
    background: transparent;
  }

  /* Open dropdown */
  .my-navitem.dropdown.active .my-dropdown,
  .dropdown.open>.my-dropdown {
    display: flex;
  }

  /* Dropdown items */
  .my-dropdown-item {
    padding: 0.75rem 2rem;
    /* indent submenu items */
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
  }

  .current-link {
    color: #006380;
    margin-right: 1rem;
    display: block;
    width: 98%;
    padding: 10px 2rem;
  }

  .my-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  #hamburgerBtn {
    width: 90%;
    justify-content: flex-end;
    display: flex;
  }
  
  .cart-btn .my-link {
      padding: 0;
  }
  
  .cart-icon {
      height: 35px;
  }
  
  .my-hamburger::before {
      padding-top: 5px; 
  }
  
  .my-hamburger.active ~ .cart-btn {
      display: none;
    }
}