.color_icon {
    color:var(--color-primary);
}

.custom-hover-link {
    cursor: pointer;
    transition: color 0.3s; /* Add smooth transition effect */
}

.custom-hover-link:hover {
    color: white; /* Color when hovered over */
}

.highlight-words {
    
    color:var(--color-primary);
    text-decoration:solid;
    
}

/* Mobile Menu Button Styles */
.mobile-menu-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Ensure the header-right container doesn't override centering */
.d-xl-none .header-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 !important;
}

.menu-activation {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    height: 48px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-activation:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.menu-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hamburger animation when active */
.menu-activation.active .hamburger .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-activation.active .hamburger .line:nth-child(2) {
    opacity: 0;
}

.menu-activation.active .hamburger .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Custom Mobile Menu - New class names to avoid conflicts */
.custom-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
}

.custom-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.custom-mobile-menu .custom-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    padding: 30px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.custom-mobile-menu.active .custom-menu-inner {
    transform: translateX(0);
}

/* Hide profile picture on mobile */
@media (max-width: 1199px) {
    .header-left .logo {
        display: none !important;
    }
}

/* Remove box shadow from social share links on mobile */
@media (max-width: 768px) {
    .social-share-style-1 .social-share li a {
        box-shadow: none !important;
    }
}

/* Custom Mobile Menu Content */
.custom-mobile-menu .menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.custom-mobile-menu .close-button button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.custom-mobile-menu .close-button button:hover {
    background-color: #f0f0f0;
}

.custom-mobile-menu .content {
    display: block;
    visibility: visible;
    opacity: 1;
}

.custom-mobile-menu .primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    visibility: visible;
    opacity: 1;
}

.custom-mobile-menu .primary-menu .nav-item {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    visibility: visible;
    opacity: 1;
}

.custom-mobile-menu .primary-menu .nav-item:last-child {
    border-bottom: none;
}

.custom-mobile-menu .primary-menu .nav-link {
    display: block;
    padding: 18px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    visibility: visible;
    opacity: 1;
}

.custom-mobile-menu .primary-menu .nav-link:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

.custom-mobile-menu .primary-menu .nav-item.current .nav-link {
    color: var(--color-primary);
    font-weight: 600;
    background-color: rgba(255, 87, 34, 0.1);
    padding-left: 10px;
}

.image-container {
    display: flex;
    align-items: flex-start;
  }

  @media (max-width: 767px) {
    .profile-drop {
      max-width: 200px !important; 
      height: auto;
    }
  }