@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --primary: #d81c6f;
    --secondary: #d81c6f;
    --accent: #1f0159;
    --dark: #0f172a;
    --light: #ffffff;
    --transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .nav-link {
        font-size: 14px !important;
    }

    .btn {
        font-size: 10px !important;
    }
}

.dropdowns {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.signin-btn {
    display: flex;
    align-items: center;
    background-color: rgb(255 255 255);
    border: none;
    border-radius: 30px;
    padding: 6px 15px 6px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signin-btn:hover {
    background-color: rgb(255 255 255);
}

.signin-btn img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4e73df;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.signin-btn .profiletext {
    margin-left: 10px;
    font-weight: 500;
    color: #5a5c69;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-contents {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

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

.dropdown-contents::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
}

.dropdown-contents a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #5a5c69;
    text-decoration: none;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.dropdown-contents a:hover {
    background-color: rgba(78, 115, 223, 0.05);
    color: #4e73df;
    border-left-color: #4e73df;
}

.dropdown-contents a:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-contents a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 14px;
    color: #4e73df;
    opacity: 0.8;
}

.dropdown-contents a[href*="update-profile"]::before {
    content: '\f007';
    /* User icon */
}

.dropdown-contents a[href*="change-password"]::before {
    content: '\f084';
    /* Key icon */
}

.dropdown-contents a[href*="logout"]::before {
    content: '\f2f5';
    /* Sign out icon */
}

.mobile-menu .dropdowns {
    width: 100%;
    margin: 15px 0;
}

.mobile-menu .signin-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 15px;
}

.mobile-menu .dropdown-contents {
    position: relative;
    top: 10px;
    width: 100%;
    margin-top: 5px;
}

.mobile-menu .dropdown-contents::before {
    display: none;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    position: fixed;
    top: 29px;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    z-index: 1000;
}


.header.scrolled {
    background-color: var(--light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
}

.header.scrolled .nav-link {
    color: var(--dark);
}

.header.scrolled .logo {
    color: var(--dark);
}

.header.scrolled .mobile-toggle {
    color: var(--dark);
}

.header.scrolled .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.header.scrolled .btn-outline:hover {
    color: #fff;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo img {
    width: 83px;
    height: auto;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.header.scrolled .logo {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* .nav-item {
    position: relative;
} */

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px !important;
}

.nav-link:hover {
    color: #e8237c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link:hover {
    color: var(--primary);
}

.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 25px;
    left: 80%;
    transform: translateX(-50%) translateY(20px);
    width: 1000px;
    background: #21035a;
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);

}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(10px);
}


.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega-menu-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.mega-menu-title-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(45deg, #e8237c, #e8237c);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.mega-menu-col:hover .mega-menu-title-icon {
    transform: rotate(360deg);
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-menu-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
    font-weight: 900;
    text-transform: uppercase;
}

.mega-menu-link:hover {
    color: #e8237c;
    transform: translateX(5px);
}

.mega-menu-link-icon {
    width: 40px;
    height: 40px;
    background: #1f0159;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin: 10px 0;
}

.mega-menu-link-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.mega-menu-link-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-menu-link:hover .mega-menu-link-icon::before {
    left: 100%;
}

.mega-menu-link:hover .mega-menu-link-icon::after {
    opacity: 1;
}

.mega-menu-link:hover .mega-menu-link-icon {
    background: rgba(37, 99, 235, 0.2);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3),
        inset 0 2px 6px rgba(255, 255, 255, 0.2);
}

.mega-menu-link:hover .mega-menu-link-icon i {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.mega-menu-featured {
    grid-column: span 3;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mega-menu-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.mega-menu-featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mega-menu-featured:hover::after {
    opacity: 1;
}

.featured-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.featured-content {
    flex: 1;
}

.featured-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.featured-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-container {
    display: flex;
    gap: 15px;
    z-index: -1;
}

.btn-container a {
    text-decoration: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255);
    z-index: 9999;
    overflow: auto;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 8px;
    background-color: #2f035b;
    border: none;
    outline: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 20px;
}

.btn:hover {
    background-color: #fff;
    color: #fff;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-3px);
    background: linear-gradient(45deg, #bc186b, #3b055c);
    color: #fff;
}

.top-offer-banner {
    display: none;
    background: linear-gradient(135deg, #7c3aed, #2563eb, #06b6d4);
    background-size: 200% 200%;
    animation: gradientBg 15s ease infinite;
    position: relative;
    overflow: hidden;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 4px 0;
}

@keyframes gradientBg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.offer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.offer-particles::before,
.offer-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.offer-particles::before {
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E") repeat;
    animation: particles 60s linear infinite;
}

.offer-particles::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 10.01%) 50px 50px / 100px 100px;
    animation: particles-reverse 30s linear infinite;
}

@keyframes particles {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

@keyframes particles-reverse {
    0% {
        background-position: 100px 100px;
    }

    100% {
        background-position: 0 0;
    }
}

.top-offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.offer-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.offer-description {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
}

.offer-highlight {
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin: -3px 2px;
}

.offer-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

.offer-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.15);
    padding: 5px 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.countdown-timer {
    display: flex;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.countdown-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    min-width: 22px;
    text-align: center;
}

.countdown-unit {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.countdown-separator {
    color: white;
    font-weight: 700;
    padding: 0 3px;
    margin-top: -8px;
}

.offer-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2563eb, #7c3aed);
    opacity: 0;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.offer-btn:hover::before {
    opacity: 1;
}

.offer-btn span,
.offer-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.offer-btn:hover i {
    transform: translateX(3px);
}

.offer-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .offer-countdown {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-close {
        display: flex;
        justify-content: center;
        align-items: center;
        float: right;
        color: #1f0159 !important;
        padding: 15px 28px;
    }

    .mobile-menu ul li a {
        font-size: 14px;
        line-height: 1.5rem;
        color: #707070;
    }

    .mobile-dropdown-content {
        padding-left: 0 !important;
    }

    .top-offer-banner {
        padding: 10px 15px;
    }

    .top-offer-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .offer-text {
        text-align: center;
        width: 100%;
        order: 1;
    }

    .offer-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        margin-right: 5px;
        order: 0;
    }

    .offer-btn {
        margin-top: 8px;
        order: 2;
    }
}

body.has-offer-banner {
    padding-top: 0;
}

body.has-offer-banner .header {
    top: 36px;
}

body.has-offer-banner .header.scrolled {
    top: 0;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.mobile-menu.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--secondary);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-item {
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    padding-bottom: 10px;
}

.mobile-nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--secondary);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.mobile-dropdown-icon {
    font-size: 1rem;
    transition: var(--transition);
}

.mobile-dropdown-content {
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.mobile-dropdown-content.active {
    max-height: 472px;
    margin-top: 10px;
    overflow: scroll;
}

.mobile-dropdown-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.mobile-dropdown-link:hover {
    color: var(--secondary);
}

.mobile-btn-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .mega-menu {
        width: 700px;
    }
}

.mobile-toggle {
    display: none;
}

@media (max-width: 992px) {
    .nav-container {
        display: none;
    }

    .mobile-toggle {
        display: block;
        background-color: transparent;
        border: none;
        outline: none;
        box-shadow: none;
        color: #fff;
        font-size: 20px;
    }

    .header {
        padding: 15px 20px;
    }

    .header.scrolled {
        padding: 12px 20px;
    }

    .btn-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu ul {
        margin-top: 80px;
    }

    .btn {
        margin-top: 0;
    }

    .mobile-menu-divider {
        height: 0;
        background-color: transparent;
        margin: 0;
    }

    .mobile-nav-link {
        font-size: 14px;
        font-weight: 400;
        color: #707070;
        padding: 0;
    }

    .btn-outline {
        width: -webkit-fill-available;
        background: #e31e70;
        color: #fff;
        text-decoration: none;
        padding: 10px;
        margin: 0;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    animation: fadeInDown 0.5s ease forwards;
}

.nav-list {
    animation: fadeInDown 0.5s 0.2s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.btn-container {
    animation: fadeInDown 0.5s 0.4s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes smoothReveal {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes smoothReveal {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
        visibility: hidden;
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
        visibility: visible;
    }
}

.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(30px);
    pointer-events: none;
}

.nav-item:hover .mega-menu {
    animation: smoothReveal 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: auto;
}



.mega-menu-link {
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards;
    text-align: left;
}

.mega-menu-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mega-menu-link:nth-child(2) {
    animation-delay: 0.15s;
}

.mega-menu-link:nth-child(3) {
    animation-delay: 0.2s;
}

.mega-menu-link:nth-child(4) {
    animation-delay: 0.25s;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

.mega-menu-link:hover .mega-menu-link-icon i {
    animation: iconBounce 0.5s ease;
}

.select2-results li {
    color: #000;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #be186b;
}

.mega-menu-link {
    opacity: 1;
    animation: fadeInUp 0.3s ease forwards;
}

.mega-menu {
    height: 400px;
    overflow: auto;
}

.mega-menu-featured {
    height: 75px;
}


.tool-filter-buttons {
    display: flex;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tool-filter-buttons .filter-btn {
    min-width: 165px;
}
.header .featured-title,
.header .featured-desc{
    text-align: left;
}