/* Reset margin and padding for universal styling */
* {
    margin: 0;
    padding: 0;
}

/* Hide the scrollbar */
::-webkit-scrollbar {
    display: none;
}

/* Body styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Faculty Glyphic', sans-serif;
}

/* Navbar styles */
.navbar {
    width: 100%;
    background-color: white;
    padding: 10px 20px;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navbar links */
.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

/* Brand styling */
.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #5A6CA5;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: auto;
    width: auto;
}

/* Navbar links styling */
.navbar-nav .nav-link {
    color: #5A6CA5 ;
    font-size: 18px;
    font-weight: 500;
    margin: 0 25px;
    position: relative;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #BD516C;
    border-bottom: 3px solid #BD516C;
}

/* Active state for navbar links */
.navbar-nav .nav-link.active {
    border-bottom: 3px solid #BD516C;
}

/* Hamburger button for mobile */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: #5A6CA5;
}

/* Social media icon button styling */
.button239080 {
    width: 100px;
    height: 35px;
    background-color: #bd516c;
    color: white;
    font-size: 14px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button239080:hover {
    background-color: #BD516C;
    color: black;
    text-decoration: none;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav.show {
        display: flex;
    }

    .navbar-nav .nav-item {
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }

    .navbar-nav .nav-link {
        padding: 10px;
        font-size: 16px;
    }
     .navbar-brand img {
        max-height: 80px;
    }
}

/* Tablet view adjustments */
@media (min-width: 769px) and (max-width: 990px) {
    .navbar-nav {
        justify-content: flex-start;
    }

    .navbar-nav .nav-item {
        margin-left: 20px;
    }
      .navbar-brand img {
        max-height: 80px;

    }
}

/* Desktop view adjustments */
@media (min-width: 991px) {
    .navbar-nav {
        display: flex;
        justify-content: center;
    }

    .navbar-nav .nav-item {
        margin-left: 10px;
    }

    .navbar-brand img {
        max-height: 100px;
    }
}
.dropdown:hover .dropdown-menu {
    display: block;
}
    /* Hide the second toggler when not needed */
    .navbar-toggler.order-4 {
        display: none;
    }
    
    /* Make the first toggler control both menus */
    .navbar-toggler.order-1 {
        z-index: 1030;
    }
