/* 
  © 2025 RR Group. All Rights Reserved.
  This website, including its design, content, and code, is developed and maintained by
  VIHAN IT PROFESSIONALS (https://vihanitprofessionals.com).

  Unauthorized copying, reproduction, redistribution, or use of any part of this website
  without express written permission is strictly prohibited and may result in legal action 
  under applicable intellectual property laws.

  If you believe this work has been copied or misused in any way, please contact us immediately.
*/

/* Compare this snippet from assets/css/nav.css: */
.nav-container {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    background-color: #1a1d23;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    position: relative;
}

.navbar-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
}

#tagline {
    font-size: 12px;
    position: absolute;
    margin-left: 30px;
    bottom: 5px;
}

.navbar-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 50px;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 25px;
    display: block;
}

.nav-item:hover a {
    background-color: white;
    color: #1a1d23;
    border-radius: 20px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    list-style: none;
    padding: 10px;
    margin-top: 0px;
    margin-left: -100px;
    align-items: center;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li a {
    color: #1a1d23;
    padding: 10px;
    display: block;
    background-color: #ffffff;
    width: 110px;
    /* height: 50px; */
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: #1a1d23;
    color: #ffffff;
}

.navbar-toggler {
    display: none;
}

@media (max-width: 991px) {
    .navbar-title {
        font-size: 25px;
    }

    #tagline {
        font-size: 8px;
        margin-left: 20px;
        bottom: 10px;
    }

    .navbar-logo img {
        width: 80px;
        height: 80px;
    }

    .navbar-toggler {
        color: #ffffff;
        display: block;
        font-size: 20px;
        background-color: transparent;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        background-color: #212121;
        position: absolute;
        top: 80px;
        right: 0;
        width: 150px;
        transform: perspective(1000px);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        right: 100%;
        width: 120px;
    }

    .dropdown-menu {
        margin-top: -50px;
    }

    .nav-list.show {
        display: block;
    }

}

/* 
  © 2025 RR Group. All Rights Reserved.
  This website, including its design, content, and code, is developed and maintained by
  VIHAN IT PROFESSIONALS (https://vihanitprofessionals.com).

  Unauthorized copying, reproduction, redistribution, or use of any part of this website
  without express written permission is strictly prohibited and may result in legal action 
  under applicable intellectual property laws.

  If you believe this work has been copied or misused in any way, please contact us immediately.
*/