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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar123 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container123
 {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 0;
    transition: color 0.2s ease;
    white-space: nowrap;
    position: relative;
}

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

/* Active Nav Tab Underline Animation */
.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

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

/* Set active page */
.nav-link.active {
    color: #000;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

    transition: all 0.1s ease;
    margin-top: 0rem ;
    z-index: 1000;
}



.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    min-width: 600px;
}

.mega-menu-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-menu-column ul {
    list-style: none;
    padding-left: 0px;
}

.mega-menu-column li {
    margin-bottom: 0.75rem;
}

.mega-menu-column a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.mega-menu-column a:hover {
    color: #000;
}

.mega-menu-footer {
    grid-column: 1 / -1;
    border-top: 1px solid #e5e5e5;
    padding-top: 1rem;
    margin-top: 1rem;
}

.view-all-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: #666;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-actions p {
   margin-bottom: 0px;
}

.btn-jf {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-secondary-nav {
    background: #fff;
    color: #000;
    border: 1px solid #e5e5e5;
}

.btn-secondary-nav:hover {
    background: #f5f5f5;
}

.btn-primary-nav {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-primary-nav:hover {
    background: #333;
    border-color: #333;
}

.btn-jf i {
    font-size: 0.75rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
    padding: 0.5rem;
}

.mobile-nav-content {
    padding: 1rem 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-header-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    cursor: pointer;
    font-weight: 500;
    color: #000;
    transition: background-color 0.2s ease;
}

.mobile-nav-header-item:hover {
    background-color: #f9f9f9;
}

.mobile-chevron {
    font-size: 0.875rem;
    color: #666;
    transition: transform 0.3s ease;
}

.mobile-nav-link {
    display: block;
    padding: 1.25rem 2rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s ease;
}

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

/* Mobile Submenu Slide Animation */
.mobile-submenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 1003;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-submenu.active {
    right: 0;
}

.mobile-submenu-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    background: #f9f9f9;
}

.mobile-back-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-back-btn:hover {
    background-color: #e5e5e5;
}

.mobile-submenu-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
}

.mobile-submenu-content {
    padding: 1rem 0;
}

.mobile-submenu-section {
    padding: 1rem 2rem;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-submenu-section:last-child {
    border-bottom: none;
}

.mobile-submenu-section h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-submenu ul {
    list-style: none;
}

.mobile-submenu li {
    margin-bottom: 0.5rem;
}

.mobile-submenu a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.mobile-submenu a:hover {
    color: #000;
}

.mobile-view-all {
    padding: 1rem 2rem;
    border-top: 1px solid #e5e5e5;
    background: #f9f9f9;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e5e5;
    background: #f9f9f9;
}

.mobile-btn {
    width: 100%;
    justify-content: center;
}

/* Main Content */

.hero-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-section p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container123 {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .mega-menu-content {
        min-width: 500px;
    }
}

@media (max-width: 1024px) {

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container123 {
        padding: 0 1rem;
        height: 70px;
    }

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

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-jf {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container123 {
        padding: 0 1rem;
    }

    .mobile-nav {
        max-width: 100%;
    }

    .mobile-submenu {
        max-width: 100%;
    }
}

/* Focus States for Accessibility */
.nav-link:focus,
.btn-jf:focus {}

/* Prevent multiple mega menus from opening */
.mega-menu-item:not(:hover) .mega-menu {
    display: none;
}

.mega-menu-item:hover .mega-menu {

    display: block;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

@media (max-width:1500px) {
    .nav-menu .nav-item.mega-menu-item:first-of-type:hover .mega-menu {

        transform: translateX(-10%);

    }

    .nav-menu .nav-item.mega-menu-item:nth-of-type(2):hover .mega-menu {
        transform: translateX(-10%);
    }


}

@media (max-width:1400px) {
    .nav-menu .nav-item.mega-menu-item:first-of-type:hover .mega-menu {
        transform: translateX(-10%);
    }

    .nav-menu .nav-item.mega-menu-item:nth-of-type(2):hover .mega-menu {
        transform: translateX(-10%);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-link {

        font-size: 15px;

    }


}
@media (max-width:1280px) {
    .nav-menu .nav-item.mega-menu-item:first-of-type:hover .mega-menu {
        transform: translateX(-10%);
    }

    .nav-menu .nav-item.mega-menu-item:nth-of-type(2):hover .mega-menu {
        transform: translateX(-10%);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 17px;
    }

    .nav-link {

        font-size: 14px;

    }


}

.logo-link {
 text-decoration: none;
}