@charset "UTF-8";
/* ===WORLD NET ENTERPRISES – RESPONSIVE MENU (menu.css) === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
} 

.llpro-main-navbar {
  background: linear-gradient(to bottom, #ffffff, #e3f2fd);  /* CHANGE THIS LINE */
  border-top: 1px solid #1e5a9a;
  border-bottom: 1px solid #1e5a9a;
  position: sticky;
  top: 0;
  z-index: 1001;
}

/* === MOBILE TOGGLE (CHECKBOX HACK) === */
.llpro-menu-checkbox {
  display: none;
}

.llpro-hamburger-label {
  display: none;
  position: absolute;
  top: 10px;
  left: 14px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1000;
}

.llpro-hamburger-label span {
  display: block;
  width: 30px;
  height: 5px;
  background: #1e5a9a;
  margin: 6px auto;
  transition: 0.3s;
  border-radius: 3px;
}

/* === NAVIGATION MENU === */
.llpro-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 0.3rem 1rem;
}

.llpro-nav-item {
  position: relative;
}

.llpro-nav-link, .llpro-dropdown-label {
  display: block;
  color: #1e5a9a;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 0.3rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.llpro-nav-link:hover, .llpro-dropdown-label:hover {
  color: #0d3a6a;
  background: rgba(30, 90, 154, 0.1);
}

/* === DROPDOWN ARROW === */
.llpro-dropdown-label::after {
  content: "▼";
  font-size: 0.7em;
  margin-left: 0.3rem;
  transition: transform 0.3s;
  display: inline-block;
}

/* === DROPDOWN MENU (DESKTOP) === */
.llpro-dropdown-checkbox {
  display: none;
}

.llpro-submenu-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 4px 4px;
  border: 1px solid #1e5a9a;
  border-top: none;
  min-width: 220px;
  list-style: none;
  z-index: 1500;
}

.llpro-dropdown-checkbox:checked ~ .llpro-submenu-list {
  display: block;
}

.llpro-dropdown-checkbox:checked ~ .llpro-dropdown-label::after {
  transform: rotate(180deg);
}

.llpro-submenu-item {
  list-style: none;
  border-bottom: 1px solid #e3f2fd;
}

.llpro-submenu-item:last-child {
  border-bottom: none;
}

.llpro-submenu-link {
  display: block;
  padding: 0.3rem 1rem;
  color: #1e5a9a;
  text-decoration: none;
  font-weight: 500;
  background: #ffffff;
  transition: background 0.2s;
}

.llpro-submenu-link:hover {
  background: #e3f2fd;
  color: #0d3a6a;
}

/* === ACTIVE LINK HIGHLIGHTING === */
.llpro-nav-link.active {
  color: #0d3a6a;
  background: #bbdefb;
  padding: 0.6rem 1rem;
  margin: -0.3rem 0;
}

.llpro-dropdown-label.active {
  color: #0d3a6a;
  background: #bbdefb;
  padding: 0.6rem 1rem;
  margin: -0.3rem 0;
}

.llpro-submenu-link.active {
  background: #bbdefb;
  color: #0d3a6a;
}

/* === RESPONSIVE BREAKPOINT (1400px) === */
@media (max-width: 1400px) {
  .llpro-nav-list {
    gap: 26px;
  }
}

/* === RESPONSIVE BREAKPOINT (1275px) === */
@media (max-width: 1275px) {
  .llpro-nav-link, .llpro-dropdown-label {
    font-size: 16px;
  }
  .llpro-nav-list {
    gap: 16px;
  }
}

/* === RESPONSIVE BREAKPOINT (1200px) === */
@media (max-width: 1200px) {
  .llpro-nav-link, .llpro-dropdown-label {
    font-size: 14px;
  }
  .llpro-nav-list {
    gap: 8px;
  }
}

/* === RESPONSIVE BREAKPOINT (1110px) === */
@media (max-width: 1110px) {
  .llpro-nav-link, .llpro-dropdown-label {
    font-size: 14px;
  }
  .llpro-nav-list {
    gap: 8px;
  }
}

/* === RESPONSIVE BREAKPOINT (1050px) === */
@media (max-width: 1050px) {
  .llpro-nav-link, .llpro-dropdown-label {
    font-size: 14px;
  }
  .llpro-nav-list {
    gap: 1px;
  }
}

/* ========================================
   MOBILE MENU STYLES - SIMPLE FLAT LIST
   ======================================== */

/* Hide mobile menu on desktop, show desktop menu */
.llpro-mobile-menu {
  display: none;
}

/* Mobile styles */
@media (max-width: 1000px) {
  /* Hide desktop menu on mobile */
  .llpro-desktop-menu {
    display: none !important;
  }
  
  /* Show mobile menu */
  .llpro-mobile-menu {
    display: block;
    background: transparent;
    position: relative !important;
    padding: 10px !important;
    margin: 0;
    z-index: 10;
  }
  
  /* Mobile menu when scrolled - stick to top but stay transparent */
  .llpro-mobile-menu.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: transparent !important;
    z-index: 10002 !important;
  }
  
  .mobile-menu-checkbox {
    display: none;
  }
  
  .mobile-hamburger {
    display: block;
    position: relative;
    margin: 0 0 10px 0;
    width: 46px;
    height: 46px;
    background: rgba(30, 90, 154, 0.9);
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1;
  }
  
  .mobile-hamburger span {
    display: block;
    width: 30px;
    height: 5px;
    background: #ffffff;
    margin: 6px auto;
    transition: 0.3s;
    border-radius: 3px;
  }
  
  /* X animation when menu open */
  .mobile-menu-checkbox:checked ~ .mobile-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .mobile-menu-checkbox:checked ~ .mobile-hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-checkbox:checked ~ .mobile-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* Mobile menu list */
.mobile-nav-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffffff, #e3f2fd);  /* CHANGE THIS LINE */
    border: 1px solid #1e5a9a;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
  }
  
  /* Show menu when checkbox checked */
  .mobile-menu-checkbox:checked ~ .mobile-nav-list {
    display: block;
  }
  
  /* Mobile menu items */
  .mobile-nav-list li {
    border-bottom: 1px solid #e3f2fd;
  }
  
  .mobile-nav-list li:last-child {
    border-bottom: none;
  }
  
  /* Mobile menu links */
  .mobile-nav-list a {
    display: block;
    padding: 18px 20px;
    color: #1e5a9a;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
  }
  
  .mobile-nav-list a:hover {
    color: #0d3a6a;
    background: #bbdefb;
  }
}

/* Remove ALL extra indentation from expandable content */
.readmore-text ul {
  margin-left: 0 !important;
  padding-left: 20px !important;
  list-style-position: inside !important;
}

.readmore-text li {
  margin-left: 0 !important;
  text-indent: 0 !important;
}