.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 1rem 0; */
}


.mhn-logo {
  width: 200px;
  height: auto;
}

.btn-primary {
     background: linear-gradient(to right, #84cc16, #047857);
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 40px 10px 40px 10px;
     font-weight: 600;
     letter-spacing: 0.05em;
     border: none;
     cursor: pointer;
     transition: transform 0.2s;
 }

 .btn-primary-sm {
     background: linear-gradient(to right, #84cc16, #047857);
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 40px 10px 40px 10px;
     font-weight: 600;
     letter-spacing: 0.05em;
     border: none;
     cursor: pointer;
     transition: transform 0.2s;
 }

 .btn-primary:hover {
     transform: scale(1.05);
 }

 .btn-secondary {
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 10px 40px 10px 40px;
     background: transparent;
     font-weight: 300;
     letter-spacing: 0.05em;
     cursor: pointer;
 }

 .btn-secondary:hover {
     background: rgba(255, 255, 255, 0.05);
 }


 /* Navigation */
 .navbar {
     position: sticky;
     top: 0;
     left: 0;
     width: 100%;
     padding: 20px 50px;
     z-index: 1000;
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .nav-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
 }

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

 .nav-links a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     padding: 8px 16px;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

.nav-links a:hover {
    color: #84cc16;
    border: 0;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, #84cc16, #04785D) 1;
    border-image-slice: 1;
}

 .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.2); /* light glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* optional for extra glassy edge */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
  }

 .burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
    gap: 5px;
    z-index: 3;
}

.burger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color:#9ec9bc;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 10;
    pointer-events: none; 
}

.mobile-menu.active {
    max-height: 500px; 
    opacity: 1;
    padding: 1rem;   
    pointer-events: auto;
}
/* .mobile-menu.scrolled {
    background-color: #047857;
  } */

.mobile-menu .nav-links,
.mobile-menu .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.mobile-menu .nav-actions .btn-primary {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-center,
    .nav-actions {
        display: none; /* hide desktop nav in mobile */
    }

    .burger-menu {
        display: flex;
    }

    .nav-links{
        display: none;
    }

    .navbar.scrolled {
    background-color:#047857;
    }
    .footer-body{
        flex-direction: column;
    }
    .container{
        padding: 1rem;
    }
    .footer-links {
        flex-direction: column ;
        align-items: center;
        }
}


/* Footer */
.footer {
     background: rgba(0, 0, 0, 0.3);
     padding: 60px 30px 10px;
 }

 .footer-body {
    display: flex;
    justify-content:space-between;
    gap: 2rem
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-brand h3 {
     font-size: 1.5rem;
     font-weight: 800;
     margin-bottom: 15px;
 }

 .footer-brand p {
     opacity: 0.8;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .footer-links a {
     color: white;
     text-decoration: none;
     opacity: 0.8;
     transition: all 0.3s ease;
 }

 .footer-links a:hover {
     opacity: 1;
     color: #4ade80;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     text-align: center;
     margin-top: 1rem;
     opacity: 0.6;
 }


 .des ul li {
    display: list-item;
    list-style: disc;
    font-weight: 400;
    color: #272a33;
    position: relative;
    margin-left: 10px;
  }
  
  .des ul li::marker {
    font-size: 18px;
  }
  
  .des ul ul li {
    list-style: circle !important;
  }
  
  .des h3,
  .des strong {
    font-size: 18px !important;
    font-weight: 700;
  }
  
  .des h4 {
    padding-top: 12px;
  }
  
  .des,
  .des b,
  .des div,
  .des h4,
  .des h5,
  .des p,
  .des p b,
  .des p span,
  .des p strong,
  .des span,
  .des strong,
  .des ul,
  .des ul li,
  .des ul li strong {
    font-size: 16px !important;
    font-family: var(--font-family) !important;
    letter-spacing: inherit !important;
    line-height: 1.7em !important;
  }
  
  .des p:has(b + b) b,
  .des p:has(strong + strong) strong {
    font-weight: 400 !important;
  }
  
  .des p {
    margin-top: 0;
    margin-bottom: 0.5rem !important;
    font-weight: 400 !important;
  }
  
  .des h4,
  .des h5 {
    font-weight: 700 !important;
    font-size: 18px;
  }

  .alert-error {
     background: #ffebee;

        border-left: 6px solid  #c62828;
        color: #555;
        transition: all 0.3s ease;
}


.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    gap: 1rem;
}


  /* Alternative breadcrumb styles */
        .breadcrumb-style-2 {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px solid rgba(139, 195, 74, 0.2);
            border-radius: 25px;
            padding: 1rem 2rem;
            margin-bottom: 2rem;
        }

        .breadcrumb-style-2::before {
            display: none;
        }

        .breadcrumb-style-2 .breadcrumb-link {
            /* background: white; */
            border: 1px solid rgba(139, 195, 74, 0.2);
            border-radius: 20px;
            padding: 0.3rem 0.6rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .breadcrumb-style-2 .breadcrumb-link:hover {
            border-color: #8bc34a;
            box-shadow: 0 4px 15px rgba(139, 195, 74, 0.2);
        }

        .breadcrumb-style-2 .breadcrumb-link.active {
            background: linear-gradient(135deg, #8bc34a, #9ccc65);
            color: white;
            border-color: #8bc34a;
        }


         .breadcrumb-container {
            background: rgba(255, 255, 255, 0.05);;
            border-radius: 12px;
            padding: .5rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(139, 195, 74, 0.1);
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
        }

        .breadcrumb-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #8bc34a, #9ccc65, #8bc34a);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
           
            animation: fadeInUp 0.6s ease 0.2s forwards;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            position: relative;
        }

        .breadcrumb-link {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .breadcrumb-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .breadcrumb-link:hover {
            background: rgba(139, 195, 74, 0.1);
            transform: translateY(-2px);
        }

        .breadcrumb-link:hover::before {
            left: 100%;
        }

        .breadcrumb-link.active {
            background: linear-gradient(135deg, rgba(139, 195, 74, 0.15), rgba(156, 204, 101, 0.15));
            font-weight: 600;
            cursor: default;
        }

        .breadcrumb-separator {
            color: #adb5bd;
            font-size: 1.2rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .breadcrumb-item:hover + .breadcrumb-item .breadcrumb-separator,
        .breadcrumb-item:hover .breadcrumb-separator {
            color: #8bc34a;
            transform: scale(1.2);
        }