body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    background-color: #003322;
    overflow: hidden;
    transition: 0.4s;
    padding: 40px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.side-nav.active {
    width: 100%;
}

.side-nav::-webkit-scrollbar {
    display: none;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: #66ffcc;
}

.hamburger-menu {
    position: fixed;
    top: 60px;
    right: 5%;
    z-index: 9999;
    cursor: pointer;
}
 
.hamburger-menu span {
    display: block;
    width: 38px;
    border-radius: 5px;
    height: 0.5rem;
    margin: 6px;
    background: #1c8c72;
    transition: 0.3s;
}

.hamburger-menu.hide {
    display: none;
}

.side-menu {
    list-style: none;
    padding: 0;
    margin: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
}

.side-menu li {
    border: 1px solid #66ffcc;
    padding: 20px 0;
    text-align: left;
    order: 0; /* default */
}

.permanent-menu li {
    order: 5; /* always 6th position (0-based index) */
}


/* Parent Headings */
.side-menu li a,
.permanent-menu li a  {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.4rem;
    padding-bottom: 8px;
    position: relative;
    transition: 0.3s;
    text-transform: uppercase;
    text-decoration: none;
	  font-family: "Montserrat", sans-serif;

/*     font-family: "Montserrat"; */
    font-weight: bold;
    margin: 1rem;
}

.side-menu li h3:hover {
    color: #fff;
    text-shadow: 0 0 10px #66ffcc, 0 0 20px #66ffcc;
    cursor: pointer;
}

/* .side-menu li h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #66ffcc;
    margin-top: 5px;
} */

/* Submenus */
.side-menu li ul.sub-menu {
    list-style: none;
    margin: 10px 0 20px 0;
    padding: 0;
}

.side-menu li ul.sub-menu li {
    border: none;
    padding: 8px 0;
}

.side-menu li ul.sub-menu li a {
    color: #66ffcc;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    transition: 0.3s;
    
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 300;
    line-height: 1.428571429;
    color: #2fb66a;
    white-space: nowrap;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.side-menu li ul.sub-menu li a:hover {
    color: #003322;
    background: #66ffcc;
    text-decoration: none;
    color: #002f24;
    background-color: #2fb66a;
}


.social-box {
    border: 1px solid #66ffcc;
    /* padding: 20px 0; */
    text-align: center;
    color: #fff;
}

.social-box h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
/*     font-family: 'Montserrat', sans-serif; */
	  font-family: "Montserrat", sans-serif;

    font-weight: 800;
    
    
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 24px;
    padding-bottom: 8px;
    position: relative;
    transition: 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin:0  1rem;
    
    
    .social-box h3:hover{
        
    color: #fff;
        text-shadow: 0 0 10px #66ffcc, 0 0 20px #66ffcc;
        cursor: pointer;
        
        
        
        
    }
}

.social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
 }

.social-icons a {
    color: #66ffcc;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
    text-shadow: 0 0 10px #66ffcc;
}


 


/* Make side-nav scrollable when content exceeds viewport */
.side-nav {
    overflow-y: auto;
    scrollbar-width: thin; /* for Firefox */
    scrollbar-color: #66ffcc transparent;
}

/* WebKit (Chrome, Edge, Safari) scrollbar */
.side-nav::-webkit-scrollbar {
    width: 8px;
}
.side-nav::-webkit-scrollbar-thumb {
    background-color: #66ffcc;
    border-radius: 10px;
}
.side-nav::-webkit-scrollbar-track {
    background: transparent;
}

/* Styled close button in green circle */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    background-color: #2fb66a;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background-color: #1c8c72;
}


.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    background-color: #003322;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden;
    transition: 0.4s;
    padding: 40px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

/* Show full screen when active */
.side-nav.active {
    width: 100%;
}

/* SCROLLBAR STYLES - CHROME, SAFARI */
.side-nav::-webkit-scrollbar {
    width: 8px;
}

.side-nav::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.side-nav::-webkit-scrollbar-thumb {
    background-color: #66ffcc;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

/* SCROLLBAR STYLES - FIREFOX */
.side-nav {
    scrollbar-width: thin;
    scrollbar-color: #66ffcc rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 800px) {
    .hamburger-menu {
        display: none;
    }
}
.custom-shortcode-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-shortcode-menu li {
    position: relative;
    margin: 10px 0;
    color: white;
    padding-left: 20px;
}

.custom-shortcode-menu li::before {
    content: '➤'; /* or use ▸ or → */
    position: absolute;
    left: 0;
    color: #d9b10d;
    font-size: 1em;
}

.custom-shortcode-menu li a {
    color: white;
    text-decoration: none;
}

.custom-shortcode-menu li a:hover {
    text-decoration: underline;
}

