.mini {
    background: #66023C;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    margin-bottom: -2rem;
}

.mini .left {
    display: flex;
    justify-content: space-around;
}

.call1 {
    margin-bottom: 1rem;
    display: flex;
}

.call1 .fa-phone,
.fa-envelope,
.fa-whatsapp {
    color: #fff;
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 50%;
    background-color: rgb(255, 68, 68);
    padding: 8px;
    margin: 1rem;
    visibility: visible;
    animation-delay: 0.1s;
}


.call1 .fa-envelope {
    background-color: rgb(8, 170, 209);
}

.call1 p {
    padding: 1rem;
}

.mini .rgt button a {
    text-decoration: none;
    color: #fff;
}

.mini .rgt button {
    padding: 8px 40px;
    border: none;
    border-radius: 1rem;
    background-color: #EAAE31;
    margin-top: 0.5rem;
    margin-right: 1rem;


}


.mini .rgt button:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 2px 2px 5px 5px #EAAE31;
}



@media (max-width: 800px) {
    .mini {
        padding: 1rem;
        margin-bottom: -3rem;
    }

    .call1 {
        padding-bottom: 1rem;
    }

    .call1 .fa-phone,
    .fa-envelope,
    .fa-whatsapp {
        display: none;
    }

    .call1 .fa-envelope {
        display: none;
    }


    .call1 p {
        padding: 0.5rem;
        font-size: 10px;
    }

    .mini .rgt button {
        padding: 4px 12px;
        font-size: 10px;
        border: none;
        border-radius: 6rem;
        background-color: #2dbcf5;
        margin-top: 0.5rem;
        margin-right: 0.3rem;
    }


}


/* General styling */
body {
    padding: 0rem !important;
    background: none !important;
    color: white;
    font: 100% / 1.4 Sans-Serif;
}

nav {
    padding-top: 2rem;
    width: 100%;
    z-index: 2;
    transition: all 0.3s ease;
}

nav img {
    height: 7rem;
    padding-bottom: 3rem;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    padding: 0.5rem;
    justify-content: flex-end;
    align-items: center;
    background-color: #66023C;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

nav li {
    height: 40px;
}

nav li button {
    display: none;
}

nav li a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

nav li a:hover {
    color: #EAAE31;
    text-shadow: #EAAE31 2px 2px 10px;
}

nav li:first-child {
    margin-right: auto;
}

/* Sidebar styling */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #66023C;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {
    display: none;
}

/* Dropdown styling */
ul.dropdown {
    display: none;
    list-style: none;
    position: absolute;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    top: 50px;
    /* Ensures dropdown appears below the user icon */
}

ul.dropdown li {
    margin: 5px 0;
}

ul.dropdown li a {
    color: #66023C;
    text-decoration: none;
    font-weight: 700;
}

ul.dropdown li a:hover {
    color: #f74288;
}

/* Responsive Styling */
@media (max-width: 800px) {
    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }

    nav ul {
        justify-content: space-between;
    }



    nav img {
        height: 6rem;
    }

    .sidebar {
        width: 100%;
        height: auto;
    }

    .mini {
        display: none;
    }

    nav li button {
        display: block;
        border: none;
        border-radius: 6rem;
        background-color: #2dbcf5;
        margin-top: 1rem;
        margin-right: 6px;
    }

    nav li button a {
        text-decoration: none;
        font-size: 8px;
        padding: 5px 12px;
        color: #fff;
    }

    nav li button:hover {
        background-color: #66023C;
        color: #fff;
    }
}

@media (max-width: 400px) {
    nav img {
        height: 3rem;
    }
	
}

@media (max-width: 768px) {
    nav {
        padding-top: 0; 
    }
	
	nav img {
		padding-bottom: 0rem;
	}
	
	.hide-on-mobile {
        display: none;
    }
	
	
}