

    body {
      font-family: 'source-sans-pro', sans-serif;
      overflow-x: hidden;
      background-color: #F8F8F9;
    }

    /* Navbar styling */
    .navbar {
      background-color: #fff;
      padding: 2rem 0;
      width: 100%;
      position: relative;
    }

    .navbar-content {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .navbar-content a {
        height: 54.56px;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
    }

    .logo {
      width: 180px;
      margin-right: 10px;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-item {
      margin-left: 2rem;
      cursor: pointer;
      position: relative;
      font-size: 1.2rem;
    }

    .nav-item:hover {
      color: #7100FF;
    }

    .nav-item::after {
        content: "";
  display: inline-block;
  width: 16px; /* Set width and height of the icon */
  height: 16px;
  margin-left: 4px; /* Space between text and icon */
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%237000ff" viewBox="0 0 448 512"%3E%3Cpath d="M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"%3E%3C/path%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(3px);
    transition: transform 0.3s ease; /* Smooth rotation */

    }

    /* Mega Menu panel styling */
    .mega-menu-panel {
      display: none;
      position: absolute;
      left: 0;
      width: 100%;
      background-color: #f0f0f0;
      padding: 2rem 0;
      z-index: 100;
    }

    .mega-menu-panel.show {
      display: block;
    }

    /* Content wrapper to constrain width */
    .mega-menu-content {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-around;
    }

    .menu-column {
      flex: 1;
      max-width: 20%;
    }

    .menu-column h4 {
      color: #5b2c90;
      margin-bottom: 1rem;
      font-family: 'source-serif-pro';
      font-weight: 700;
      font-size: 1.1rem;
    }

    .menu-column ul {
        list-style: none;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

    .menu-column ul li {
      margin-bottom: 1rem;
      color: #333;
      cursor: pointer;
    }

    .menu-column ul li:hover {
      text-decoration: underline;
    }

    /* Hamburger menu and mobile styling */
    .hamburger {
      display: none;
      font-size: 2.5rem;
      cursor: pointer;
    }

/* Wrapper to keep all panels within a single overlay, preventing exposure */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1); /* Fully opaque to prevent exposure */
  overflow: hidden;
  display: none;
  z-index: 100; /* Ensure it's above other content */
}

/* Panel styling */
.mobile-menu-panel, .mobile-submenu-panel {
  width: 100%;
  padding: 4rem 3rem;
  flex-direction: column;
  position: absolute;
  top: 0;
  height: 100%;
  overflow-y: auto;
  transform: translateX(100%); /* Start off-screen */
  opacity: 0; /* Start hidden */
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition */
  z-index: 1; /* Ensure only active panel is visible */
}

/* Show the active panel */
.mobile-menu-panel.show, .mobile-submenu-panel.show {
  opacity: 1;
  transform: translateX(0); /* Slide in fully */
  z-index: 2; /* Bring active panel to the top */
}

/* Slide back for "Back" navigation */
.mobile-submenu-panel.back {
  transform: translateX(-100%); /* Slide off to the left */
  opacity: 0;
  z-index: 1; /* Lower z-index to prevent exposure */
}



    .mobile-submenu-panel h4,
    .mobile-menu-panel ul li, .mobile-submenu-panel ul li {
      margin-bottom: 1.2rem;
      cursor: pointer;
      list-style: none;
      font-size: 1.2rem;
    }

    .mobile-menu-panel ul li, .mobile-submenu-panel ul li::after {
        content: "";
  display: inline-block;
  width: 16px; /* Set width and height of the icon */
  height: 16px;
  margin-left: 8px; /* Space between text and icon */
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%237000ff" viewBox="0 0 448 512"%3E%3Cpath d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"%3E%3C/path%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(3px);
    }

    .mobile-menu-panel h4, .mobile-submenu-panel h4 {
        font-size: 1.4rem;
        
    }

    .mobile-menu-panel h4 {
        font-weight: bold;
        margin-bottom: 0.5rem;
        padding: 0; /* Remove any padding */
    }

    .mobile-menu-panel h4::after, .mobile-submenu-panel h4::after {
  content: "";
  display: inline-block;
  width: 16px; /* Set width and height of the icon */
  height: 16px;
  margin-left: 8px; /* Space between text and icon */
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%237000ff" viewBox="0 0 448 512"%3E%3Cpath d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"%3E%3C/path%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(2px);
}

h4.plain::after {
background-image: none;
}
    .mobile-menu-panel h4 {
        margin-bottom: 1.4rem;
    }

     .mobile-submenu-panel h4, .mobile-menu-panel h4 {
        font-family:"source-serif-pro";
        
    }

    .mobile-submenu-panel p {
        line-height: 1.2;
        font-size: 1rem;
        margin-bottom: 0.25rem;
        margin-top: 0;
    }

    .mobile-submenu-panel img {
        max-width: 275px;
        margin: 0.5rem 0rem;
    }
    

    .close-btn {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 2.5rem;
      color: black;
      cursor: pointer;
      z-index: 300; /* Ensures it appears above overlay content */
    }

    .back-btn {
      font-size: 1rem;
      color: #333;
      margin-bottom: 1rem;
      cursor: pointer;
    }

    .section-header-container {
        padding: 1rem 0rem;
        background-color: #440099;
    }

    .section-header {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0rem 2rem;
    }

    .section-header h2 {
        font-family: 'source-serif-pro';
        font-weight: 700;
        color: white;
        margin: 0;
        font-size: 1.6rem;
    }

    /* Responsive styling */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .navbar {
        padding: 1.2rem 0rem;
      }

      .logo {
        width: 150px;
      }

      .hamburger {
        display: block;
      }
      
      .section-header {
        padding: 0rem 1rem;
    }

    .navbar-content {
        padding: 0 1rem;
    }

    .navbar-content a {
        height: 45.47px;
    }

    .mobile-submenu-panel ul {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    }