:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a8a8ff;
    --accent-color: #00d2d3;
    --background-color: #1a1a2e;
    --surface-color: #16213e;
    --text-color: #ffffff;
    --text-secondary: #a0a0a0;
    --shadow-color: rgba(0, 0, 0, 0.25);
    --transition-speed: 0.3s;
    --border-color: rgba(255, 255, 255, 0.1);
}

.dropdown {
    position: relative;
    display: inline-block;
    margin: 1rem;
}

.dropdown-btn, .dropdown-btn:focus, .dropdown-btn:active:focus, .dropdown-btn:focus {
	font-family: 'Yantramanav', sans-serif;
    background: #3db0ee;
    border: solid #ffffff 2px;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    font-size: 90%;
	font-weight: 400;
	text-transform: uppercase;
    cursor: pointer;
	min-width: 210px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -0-border-radius: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 8px;
    transition: all .5s ease;
    color: #ffffff;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.25);
	z-index: 36;
}

.dropdown-btn:hover {
    background: #1a1818;
	color: #8BC448;
	border: solid #ffffff 2px;
    text-decoration: none;
    transition: all .5s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.dropdown-btn i {
    transition: transform var(--transition-speed);
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    background: #3db0ee;
    min-width: 210px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -0-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed);
    z-index: 100;
    border: solid #ffffff 2px;
    backdrop-filter: blur(12px);
}

.dropdown-content a {
    padding: 12px 24px;
    text-decoration: none;
    color: #ffffff;
    font-size: 90%;
	font-weight: 400;
    letter-spacing: 0.5px;
	text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-speed);
}

.dropdown-content a:first-child {
    background: #8BC448;
    position: relative;
}

.dropdown-content a:first-child::after {
    content: "";
    position: absolute;
    left: 0px;   /* controls left spacing */
    right: 0px;  /* controls right spacing */
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}



.dropdown-content a:hover {
    background: #1a1818;
	color: #8BC448;
    text-decoration: none;
    transition: all .5s ease;
}

.dropdown-content a i {
    width: 20px;
    color: #ffffff;
}

.dropdown-content a i:hover {
	color: #8BC448;
}

.dropdown.active .dropdown-btn {
    background: #1a1818;
	color: #8BC448;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
}



.resourceIcon2 {
    width: 18px;
	height: 18px;
	fill: #ffffff;
	padding: 0;
	margin: 0 5px 0 0;
}



/* Responsive Design */
@media (max-width: 768px) {

    .dropdown {
        max-width: 300px;
    }

}



@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px)
    and (orientation : portrait) {
		
.requestSpan {
	display: none;
}
		
.dropdown-content {
	left: auto;
	right: 0;
	min-width: 410px;
}

.resourceIcon2 {
	height: 40px;
	width: 40px;
}

.dropdown {
	top: 30px !important;
	right: 30px !important;
}
}