
/* Dropdown items */
.beautiful-item {
    padding: 12px 18px !important;
    font-weight: 500;
    transition: 0.3s;
    color: #bd4d02 !important;
}
.beautiful-item:hover {
    background: #ff8c3b !important;
    color: #ffffff !important;
    transform: translateX(4px);
}

/* Icon circle */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a00, #ff3d00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(255, 93, 0, 0.4);
    transition: 0.3s ease-in-out;
}
/* Icon hover */
.menu-main-link:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 14px rgba(255, 93, 0, 0.6);
}

/* Text below icon */
.menu-main-link span {
    font-weight: 600;
    color: #000;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}
@media (max-width: 1200px) {
	.align-item{
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important; 
	}
}

/* MOBILE FIXES */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        background: #fff !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
    }
	.co_logo{
		width: 90px;
		height: auto;
	}
}

@media (max-width: 480px) {
	.co_logo{
		width: 110px;
		height: auto;
	}	
/*	
	.icon-circle{
		display:none;
	}
	*/
}


.btn-gradient {
		background-image: linear-gradient(135deg, #ff8a00, #ff3d00);
		color: white; /* Ensure text is white */
		border: none;
		transition: transform 0.2s ease;
	}
.btn-gradient:hover {
	transform: translateY(-2px); /* Slight lift effect on hover */
	box-shadow: 0 4px 10px rgba(255, 93, 0, 0.4);
	transition: 0.3s ease-in-out;
}
   