        /* Reset some default styles */
        body, h1, p {
            margin: 0;
            padding: 0;
        }

        /* Style the navigation bar */
        nav {
            background-color: #971797;
            color: white;
            text-align: center;
            padding: 10px 0;
	    position: relative;
            top: 110px;
            margin-bottom: 100px; /* Adjust the value as needed */


        }

        /* Style the navigation bar */
        nav ul {
            display: flex;
            flex-wrap: wrap;
            list-style-type: none;
            padding: 0;
        }

        /* Style each list item (menu item) */
        nav ul li {
            margin-right: 10px; /* Adjust spacing between menu items */
            font-size: 16px; /* Adjust font size */
        }

        /* Style the submenu container */
        .submenu {
            display: flex;
            align-items: center;
            position: relative;
        }

        /* First Submenu Icon */
        /* This will be the new container to center your submenu icons */
        .center-container {
            display: flex;
            justify-content: center; /* Center items horizontally */
            align-items: center; /* Center items vertically */
            height: 100px; /* Fixed height (adjust as needed) */
        }

        /* First Submenu Icon */
        .submenu-icon {
            display: inline-block;
            width: 20px; /* Adjust the width as needed */
            height: 20px; /* Adjust the height as needed */
            position: relative;
            cursor: pointer;
        }

        .horizontal-stroke {
            width: 100%;
            height: 2px; /* Adjust the thickness of the dash as needed */
            background-color: #979729; /* Adjust the color of the dash as needed */
            position: absolute;
            top: 0%;
            left: 0;
            transform: translateY(-50%);
        }

        .vertical-stroke {
            width: 2px; /* Adjust the width of the stroke as needed */
            height: 100%; /* Adjust the height of the stroke as needed */
            background-color: #979729; /* Adjust the color of the stroke as needed */
            position: absolute;
            top: 0;
            right: 0;
        }

        /* Second Submenu Icon */
        .submenu-icon.second {
            display: inline-block;
            width: 20px; /* Adjust the width as needed */
            height: 20px; /* Adjust the height as needed */
            position: relative;
            transform: translate(-17px, 3px); /* Shift 3px left and 3px down */
        }

        .horizontal-stroke.second {
            width: 100%;
            height: 2px; /* Adjust the thickness of the dash as needed */
            background-color: #979729; /* Adjust the color of the dash as needed */
            position: absolute;
            top: 0%;
            left: 0;
            transform: translateY(-50%);
        }

        .vertical-stroke.second {
            width: 2px; /* Adjust the width of the stroke as needed */
            height: 100%; /* Adjust the height of the stroke as needed */
            background-color: #979729; /* Adjust the color of the stroke as needed */
            position: absolute;
            top: 0;
            right: 0;
        }

        /* Add this CSS for the animation */
        .submenu-icon.second {
            display: inline-block;
            width: 20px; /* Adjust the width as needed */
            height: 20px; /* Adjust the height as needed */
            position: relative;
            transform: translate(-7px, 3px) rotateY(0deg); /* Initial position and rotation NOTE: Its -17 for full size*/
            transition: transform 0.5s ease-in-out; /* Add a transition for smooth animation */
        }

        /* Add this CSS for the animation when the icon is clicked */
        .submenu-icon.active.second {
            transform: translate(-20px, 0px) rotateY(180deg); /* Flipped position */
        }

/* Style the dropdown menu */
.nav-dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #979729;
    padding: 10px;
    list-style: none;
    margin: 0;
    top: 100%; /* Position dropdown below the submenu */
    right: 0; /* Align with submenu icon */
    z-index: 1; /* Ensure the dropdown appears above other content */
    width: 200px;
    max-height: 0;
    overflow: hidden;
}

/* Style the dropdown menu items */
.nav-dropdown-menu li {
    margin: 5px 0;
    opacity: 0;
    transform: translateY(-10px); /* Adjust the transformation */
    animation: fadeInDown 0.3s ease-out forwards;
    animation-delay: 0.1s;
    display: block; /* Ensure dropdown items stack vertically */
}

/* Adjust the spacing between dropdown items */
.nav-dropdown-menu li + li {
    margin-top: 5px;
}

/* Ensure proper separation between dropdown items */
.nav-dropdown-menu li:last-child {
    margin-bottom: 0;
}

/* Show the dropdown menu when the submenu icon is clicked */
.submenu-icon.active.second + .nav-dropdown-menu {
    display: block;
    max-height: 300px; /* This value can be adjusted based on your menu's actual height */
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-10px); /* Adjust the transformation */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


        .navSubmenu-title {
            margin-right: 10px;
            font-weight: bold;
            padding-right: 2px;
            color: #979797;
        }

        /* sets the font properties of the dropdown menu */
        .nav-dropdown-menu a {
            color: #179797;
            text-decoration: none;
        }



/* Modify the width and height to half of the original size */
.submenu-icon,
.submenu-icon.active,
.submenu-icon.second,
.submenu-icon.active.second {
  width: 10px; /* Adjust the width as needed */
  height: 10px; /* Adjust the height as needed */
}
