* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hide scrollbar when sidebar is open (mobile only) */
body.sidebar-open {
    overflow: hidden;
}

/* Ensure body scroll is never affected on desktop */
@media (min-width: 931px) {
    body.sidebar-open {
        overflow: auto !important;
    }
}

/* Smooth scrollbar for dropdown content */
.dropdown-main-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.dropdown-main-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-main-content::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-main-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.dropdown-main-content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* ============================================
   TOP BLUE ANNOUNCEMENT BAR
   ============================================ */
.top-blue-line {
    background-color: #0069ff;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.top-blue-line.hidden {
    display: none;
}

.toggle-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.top-links a:hover {
    opacity: 0.8;
}

/* Top Support Dropdown */
.top-support-dropdown {
    position: relative;
}

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

.top-dropdown-arrow {
    font-size: 0.6em;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.top-support-dropdown.active .top-dropdown-arrow {
    transform: rotate(180deg);
}

.top-support-dropdown .top-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    width: auto !important;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1102;
    border-top: none !important;
}

.top-support-dropdown.active .top-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.top-dropdown-menu .dropdown-item {
    display: inline-block;
    width: auto;
    padding: 8px 16px;
    margin: 4px 0;
    color: #fff;
    background-color: #0069ff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.top-dropdown-menu .dropdown-item:hover {
    background-color: #0056d6;
    box-shadow: 0 4px 8px rgba(0, 105, 255, 0.3);
    transform: translateY(-1px);
}

/* ============================================
   DESKTOP NAVIGATION BAR
   ============================================ */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3rem;
    background-color: #ffffff;
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #374151;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

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

/* Desktop Dropdown Styles */
.dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    color: #374151;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover {
    color: #111827;
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop Dropdown Menus */
.dropdown-menu {
    position: fixed;
    top: 40px;
    right: 0;          
    left: auto;  
    width: 10vw;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1010;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}


.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    /* transform: translateY(0); */
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
}

/* Full-screen dropdown styles */
.fullscreen-dropdown {
    position: fixed;
    top: 96px;
    left: 0;
    width: 100vw;
    max-height: calc(100vh - 96px);
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    border-radius: 0;
    padding: 0;
    z-index: 1010;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-main-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0 2rem 0;
}

/* Container with 1600px max-width and consistent padding */
.dropdown-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px 3rem 0 3rem;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
}

.dropdown-section-title {
    font-size: 13px;
    color: black;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 8px;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    gap: 10px;
}

.dropdown-item:hover {
    background-color: #F3F4F6;
    transform: translateX(2px);
}

.dropdown-icon {
    font-size: 30px;
    margin-right: 14px;
    color: #4F46E5;
    flex-shrink: 0;
    margin-top: 0;
    align-self: flex-start;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.dropdown-text div:first-child {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #111827;
    font-weight: 500;
    line-height: 1.4;
}

.dropdown-text p {
    margin: 0;
    font-size: 13px;
    color: #6B7280;
    font-weight: 400;
    line-height: 1.5;
}

/* Explore Dropdown Specific - ROW LAYOUT */
.explore-dropdown .dropdown-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 3rem 0 3rem;
    gap: 48px;
    grid-template-columns: unset;
    /* Override default grid */
}

/* Left side: Navigation links */
.explore-dropdown .dropdown-section {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
}

.explore-dropdown .dropdown-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* Make Explore dropdown items same width as Products/Services cards */
.explore-dropdown .dropdown-item {
    flex: 1;
    min-width: 0;
}

/* Right side: Visual content */
.explore-sec {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 48px;
    border-left: 1px solid #E5E7EB;
}

.explore-image {
    width: 100%;
}

.explore-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.explore-content {
    text-align: left;
    max-width: 420px;
}

.explore-link {
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.explore-link:hover {
    color: #4F46E5;
}

.explore-link i {
    font-size: 14px;
}

.explore-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* Responsive: Revert to column on smaller screens */
@media (max-width: 1024px) {
    .explore-dropdown .dropdown-container {
        flex-direction: column;
        gap: 32px;
    }

    .explore-sec {
        padding-left: 0;
        padding-top: 32px;
        border-left: none;
        border-top: 1px solid #E5E7EB;
        align-items: center;
    }

    .explore-content {
        text-align: center;
    }

    .explore-image img {
        max-width: 100%;
    }
}

/* Dropdown Footer */
.dropdown-footer {
    border-top: 1px solid #E5E7EB;
    padding: 24px 0;
    background: #F9FAFB;
    margin-top: auto;
}

/* Footer container with 1600px max-width */
.dropdown-footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dropdown-footer-section {
    display: flex;
    flex-direction: column;
}

.dropdown-footer-section div:first-child {
    font-size: 15px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 600;
}

.dropdown-footer-section p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.dropdown-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0069ff;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dropdown-footer-button:hover {
    background-color: #0069ff;
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.2);
    transform: translateY(-1px);
}

.dropdown-footer-section.branding {
    align-items: flex-start;
}

.footer-logo {
    height: 65px;
    margin-bottom: 12px;
}

/* Desktop Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.login {
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.login:hover {
    color: #111827;
    background-color: #F3F4F6;
}

.signup {
    background-color: #0069ff;
    color: white !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.signup:hover {
    background-color: #0069ff;
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.2);
    transform: translateY(-1px);
}

/* ============================================
   MOBILE NAVIGATION BAR
   ============================================ */
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1002;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    height: 60px;
}

.mobile-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 100%;
    position: relative;
}

/* Mobile Hamburger Menu */
.mobile-hamburger {
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    position: relative;
}

.mobile-hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger to X animation */
.mobile-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Logo - Centered */
.mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.mobile-logo a {
    pointer-events: all;
}

.mobile-logo img {
    height: 65px;
    width: auto;
    display: block;
}

/* Mobile Profile Icon */
.mobile-profile {
    display: flex;
    align-items: center;
    z-index: 1003;
    position: relative;
}

.profile-icon-link {
    text-decoration: none;
    display: flex;
}

.profile-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #0069ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    border: 2px solid #e1e5eb;
    transition: transform 0.2s ease;
}

.profile-icon:hover {
    transform: scale(1.05);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    z-index: 1001;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: none;
    overflow: hidden;
}

.mobile-sidebar.active {
    left: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Sidebar Content */
.sidebar-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Auth Section */
.mobile-auth-section {
    display: flex;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid #eaeaea;
}

.mobile-login-btn,
.mobile-signup-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.mobile-login-btn {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.mobile-signup-btn {
    background: #0069ff;
    color: white;
    border: 1px solid #0069ff;
}

.mobile-login-btn:hover,
.mobile-signup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    padding: 16px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: #0069ff;
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    transition: background-color 0.2s ease;
}

.mobile-dropdown-header:hover {
    background-color: #f8f9fa;
}

.mobile-dropdown-header i:first-child {
    width: 24px;
    text-align: center;
    color: #0069ff;
}

.mobile-dropdown-arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(90deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 16px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 2000px;
    padding: 8px 16px 16px 16px;
}

.mobile-dropdown-section-title {
    font-size: 12px;
    color: #6B7280;
    margin: 16px 0 8px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 4px;
}

.mobile-dropdown-section-title:first-child {
    margin-top: 4px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #333;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.mobile-dropdown-item:last-child {
    margin-bottom: 0;
}

.mobile-dropdown-item:hover {
    background-color: #ffffff;
    border-color: #D1D5DB;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.mobile-dropdown-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: #4F46E5;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 0;
    align-self: flex-start;
}

.mobile-dropdown-item div {
    flex: 1;
}

.mobile-dropdown-item div div:first-child {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111827;
    line-height: 1.4;
}

.mobile-dropdown-item p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Contact Support */
.mobile-contact-support {
    padding: 16px;
    margin: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.mobile-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.mobile-contact-info {
    font-size: 13px;
}

.mobile-contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

/* Mobile Sidebar Footer */
.mobile-sidebar-footer {
    padding: 16px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #eaeaea;
}

.mobile-sidebar-footer p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 10px 0;
}

.footer-links a {
    color: #0069ff;
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 11px;
    color: #999;
    margin-top: 10px;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Desktop Dropdown Backdrop */
.dropdown-backdrop {
    position: fixed;
    top: 96px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 96px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.dropdown-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content Area */
/* .main-content {
    padding-top: 120px;
    min-height: 100vh;
} */

/* Content wrapper with 1600px max-width */
.content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 3rem;
    width: 100%;
}
.navbar-component i[class^="fa"],
.navbar-component i[class*=" fa-"] {
    color: #0069ff ;
}
/* Exclude dropdown arrows */
.navbar-component .fa-chevron-down,
.navbar-component .fa-chevron-right,
.navbar-component .fa-arrow-up-right{
    color: black !important;
}
a .fas.fa-user {
  color: white;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Hide desktop navbar on mobile */
@media (max-width: 930px) {
    .top-blue-line {
        display: none !important;
    }

    .navbar {
        display: none !important;
    }

    .mobile-navbar {
        display: block !important;
    }

    /* .main-content {
        padding-top: 60px;
    } */
}

/* Show desktop navbar on larger screens */
@media (min-width: 931px) {
    .mobile-navbar {
        display: none !important;
    }

    .mobile-sidebar {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .sidebar-overlay {
        display: none !important;
        visibility: hidden !important;
    }

    .navbar {
        display: flex !important;
    }
}

/* Large Desktop (≤1200px) */
@media (max-width: 1200px) {
    .navbar {
        padding: 0 2.5rem;
    }

    .dropdown-container {
        padding: 20px 2.5rem 0 2.5rem;
    }

    .dropdown-footer-container {
        padding: 0 2.5rem;
    }

    .content-wrapper {
        padding: 40px 2.5rem;
    }
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 2rem;
    }

    .dropdown-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px 2rem 0 2rem;
    }

    .logo img {
        height: 45px;
        width: auto;
    }

    .dropdown-footer-container {
        padding: 0 2rem;
        gap: 24px;
    }

    .content-wrapper {
        padding: 40px 2rem;
    }

    .nav-links {
        gap: 1.5rem;
        margin-left: 50px;
    }
}

/* Small Tablet (≤992px) */
@media (max-width: 992px) {
    .navbar {
        padding: 0 2rem;
    }

    .dropdown-container {
        padding: 20px 2rem 0 2rem;
    }

    .dropdown-footer-container {
        padding: 0 2rem;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .content-wrapper {
        padding: 30px 2rem;
    }
}

/* Mobile Large (≤768px) */
@media (max-width: 768px) {
    .dropdown-container {
        padding: 20px 1.5rem 0 1.5rem;
        grid-template-columns: 1fr;
    }

    .dropdown-footer-container {
        padding: 0 1.5rem;
    }

    .content-wrapper {
        padding: 30px 1.5rem;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .mobile-navbar-inner {
        padding: 0 1rem;
    }

    .mobile-logo img {
        height: 45px;
    }

    .profile-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .mobile-hamburger {
        width: 26px;
        height: 18px;
    }

    .mobile-hamburger span {
        height: 2.5px;
    }

    .mobile-sidebar {
        width: 100vw;
    }

    .mobile-auth-section {
        flex-direction: column;
    }

    .mobile-login-btn,
    .mobile-signup-btn {
        width: 100%;
    }

    .dropdown-container {
        padding: 15px 1rem;
    }

    .dropdown-footer-container {
        padding: 0 1rem;
    }

    .content-wrapper {
        padding: 20px 1rem;
    }
}

/* Extra Small Mobile (≤360px) */
@media (max-width: 360px) {
    .mobile-navbar-inner {
        padding: 0 0.75rem;
    }

    .dropdown-container {
        padding: 15px 0.75rem;
    }

    .dropdown-footer-container {
        padding: 0 0.75rem;
    }

    .content-wrapper {
        padding: 20px 0.75rem;
    }
}

/* Desktop dropdown optimizations - REMOVED CENTERING HACKS */
@media (min-width: 931px) {
    .explore-dropdown .fullscreen-dropdown {
        position: fixed;
        top: 96px;
        left: 0;
        width: 100vw;
        height: auto;
        max-height: calc(100vh - 96px);
        background: #ffffff;
        border-radius: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .products-dropdown .fullscreen-dropdown,
    .services-dropdown .fullscreen-dropdown {
        position: fixed;
        top: 96px;
        left: 0;
        width: 100vw;
        max-height: calc(100vh - 96px);
        background: #ffffff;
        border-radius: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
}