﻿
a {
    text-decoration: none;
    color: white;
}

/* Red background area */
.nav-main-container {
    /* background-color: #dc3545;  */
    padding: 20px 0;
}

/* Blackish transparent (X-ray effect) */
.nav-cont {
    /*    background: rgba(0, 0, 0, 0.7);*/
    background: rgb(0 0 0 / 12%) !important;
    padding: 20px;
    border-radius: 8px;
}


/* Text styling */
.nav-text {
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Responsive font size */
@media (max-width: 768px) {
    .nav-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .nav-text {
        font-size: 16px;
    }
}

/* Navbar design */
.navbar {
    background: transparent ;
   
    padding: 10px 20px;
    border-radius: 8px;
}
@media (max-width: 992px) {
    .navbar {
        /*        background: linear-gradient(to right, #444, #222);*/
/*        background: linear-gradient(to right, #44444466, #2222222b);*/
    }
    .nav-cont {
        /*        background: rgb(0 0 0 / 46%) !important; */
        background: rgb(0 0 0 / 24%) !important;
    }
}


.navbar-nav .nav-link {
    color: white !important;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
}

    .navbar-nav .nav-link:hover {
        color: #f8d210 !important; 
        transform: scale(1.1);
    }
.nav-link:active {
    color: #f8d210 !important; /* Yellow effect when clicked */
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}


.navbar-toggler {
    border-color: white;
}

/* Dropdown styling */
.dropdown-menu {
    background-color: #222;
    border: none;
}

.dropdown-item {
    color: white !important;
    font-size: 16px;
}

    .dropdown-item:hover {
        background-color: #f8d210;
        color: black !important;
    }

.navbar-toggler-icon {
    filter: invert(1);
}


