* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9ff;
}

.main-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 10px;
}

.header .container {
    padding-right: 0;
}

/* Top Bar */
.top-bar {
    background: #C8102E;
    color: white;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.shipping-calc {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.shipping-calc:hover {
    text-decoration: underline;
}

.sign-in-btn {
    color: #000;
    background: white;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.sign-in-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    position: relative;
}

.header-content .container {
    padding-right: 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #C8102E;
    text-decoration: none;
    z-index: 1001;
}

.nav {
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
    padding-right: 0;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a:hover {
    color: #2b6cb0;
}

.nav-icon {
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mega Menu */
.nav li {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 0;
    width: 1100px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.nav li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 24px 32px;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #e2e8f0;
}

.mega-menu-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.mega-menu-content {
    padding: 40px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mega-menu-item {
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    background: white;
    min-height: 140px;
}

.mega-menu-item:hover {
    background: #f8fafc;
    border-color: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.1);
}

.mega-menu-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
}

.mega-menu-item h4 {
    color: #1a365d;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-menu-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-menu-footer {
    background: #f8fafc;
    padding: 20px 32px;
    border-radius: 0 0 16px 16px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.mega-menu-footer a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.mega-menu-footer a:hover {
    color: #1a365d;
}

/* User Submenu - Specific style for kuser account settings */
.user-submenu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 0;
    width: 350px;
    max-width: calc(100vw - 40px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.nav li:hover .user-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-submenu .mega-menu-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 24px 32px;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #e2e8f0;
}

.user-submenu .mega-menu-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.user-submenu .mega-menu-content {
    padding: 40px;
}

.user-submenu .mega-menu-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.user-submenu .mega-menu-section {
    min-height: auto;
}

.user-submenu .mega-menu-section-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.user-submenu .mega-menu-section-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.user-submenu .mega-menu-section-item:hover {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 8px;
    margin: -4px -8px;
}

.user-submenu .mega-menu-section-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.user-submenu .mega-menu-section-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 4px;
    line-height: 1.3;
}

.user-submenu .mega-menu-section-content h5 a {
    color: #1a365d;
    text-decoration: none;
}

.user-submenu .mega-menu-section-content h5 a:hover {
    color: #2b6cb0;
}

.user-submenu .mega-menu-section-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.user-submenu .mega-menu-footer {
    background: #f8fafc;
    padding: 20px 32px;
    border-radius: 0 0 16px 16px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

/* Section-based mega menu layout */
.mega-menu-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mega-menu-section {
    min-height: auto;
}

.mega-menu-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.mega-menu-section-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-menu-section-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.mega-menu-section-item:hover {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 8px;
    margin: -4px -8px;
}

.mega-menu-section-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mega-menu-section-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 4px;
    line-height: 1.3;
}

.mega-menu-section-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1330 0%, #22519d 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="30" fill="%23ffffff20"/><circle cx="70" cy="70" r="20" fill="%23ffffff15"/><rect x="60" y="10" width="15" height="15" rx="3" fill="%23ffffff25"/></svg>') no-repeat center center;
    background-size: contain;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: inherit;
}

.btn-primary {
    background: white;
    color: #2b6cb0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2b6cb0;
}

/* Track Form */
.track-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.track-form h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-weight: 500;
    font-size: 16px !important;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #2b6cb0;
}

.btn-track {
    width: 100%;
    background: #2b6cb0;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-track:hover {
    background: #2c5aa0;
}

.btns-blue {
    width: 100%;
    background: linear-gradient(135deg, #0f172a, #334155);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btns-blue:hover {
    background: linear-gradient(135deg, #1e293b, #475569);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

/* Statistics Section */
.stats {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 10px 10px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(43, 108, 176, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 16px;
}

/* Steps Section */
.steps {
    padding: 40px 0;
    background: white;
    position: relative;
}

.steps h2 {
    text-align: center;
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f7fafc;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.step-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
}

.step-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 10%;
    background: linear-gradient(135deg, #e6f3ff, #f0f8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C8102E, #e14265);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(43, 108, 176, 0.3);
}

.step-card h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.step-icon-placeholder {
    font-size: 50px;
    color: #2b6cb0;
    opacity: 0.7;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services h2 {
    text-align: center;
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C8102E, #e14265);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e6f3ff, #cce7ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2b6cb0;
    flex-shrink: 0;
}

.service-title {
    margin: 0;
}

.service-card h3 {
    font-size: 18px;
    color: #1a365d;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    color: #64748b;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.4;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 600;
    font-size: 12px;
}

.service-features li:last-child {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2b6cb0;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8102E, #e14265);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #2d3748;
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info p {
    color: #666;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4299e1;
}

.footer-section p,
.footer-section li {
    color: #a0aec0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4299e1;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
    color: #718096;
}

/* Responsive */
@media (max-width: 1200px) {
    .mega-menu {
        width: 900px;
    }

    .mega-menu-content {
        padding: 32px;
    }

    .mega-menu-grid {
        gap: 24px;
    }

    .container {
        max-width: 95%;
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .mega-menu {
        width: 800px;
    }

    .mega-menu-grid,
    .mega-menu-sections {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 80px 0 20px;
        height: 100%;
    }

    .nav li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav li:last-child {
        border-bottom: none;
    }

    .nav a {
        padding: 15px 20px;
        width: 100%;
        font-size: 16px;
        display: block;
        box-sizing: border-box;
    }

    .nav a:hover {
        background: #f8fafc;
    }

    .nav li.has-submenu.active {
        border-bottom: none;
    }

    .nav li.has-submenu.active + li {
        border-top: 1px solid #e2e8f0;
    }

    /* Mobile Submenu System */
    .nav li {
        position: relative;
    }

    .nav li.has-submenu > a {
        position: relative;
    }

    .nav li.has-submenu > a::after {
        content: '▼';
        font-size: 12px;
        margin-left: auto;
        transition: transform 0.3s;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav li.has-submenu.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .mega-menu {
        position: absolute;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8fafc;
        display: none;
        z-index: 999;
    }

    .nav li.has-submenu.active .mega-menu {
        display: block;
    }

    .nav li.has-submenu.active .user-submenu {
        display: block;
    }

    .mega-menu-header {
        display: none;
    }

    .user-submenu {
        position: absolute;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8fafc;
        display: none;
        z-index: 999;
        max-width: 100%;
    }

    .user-submenu .mega-menu-header {
        display: none;
    }

    .user-submenu .mega-menu-content {
        padding: 0;
        width: 100%;
        margin: 0;
    }

    .user-submenu .mega-menu-sections {
        display: block;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .user-submenu .mega-menu-section {
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
        margin: 0;
    }

    .user-submenu .mega-menu-section:last-child {
        border-bottom: none;
    }

    .user-submenu .mega-menu-section-items {
        padding: 0;
        width: 100%;
        margin: 0;
    }

    .user-submenu .mega-menu-section-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0px 10px 20px;
        margin: 0;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
        box-sizing: border-box;
    }

    .user-submenu .mega-menu-section-item:hover {
        background: #f8fafc;
        border-radius: 0;
    }

    .user-submenu .mega-menu-section-item:last-child {
        border-bottom: none;
    }

    .user-submenu .mega-menu-section-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
        border-radius: 6px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .user-submenu .mega-menu-section-content {
        flex: 1;
        min-width: 0;
    }

    .user-submenu .mega-menu-section-content h5 {
        font-size: 12px;
        margin-bottom: 3px;
        line-height: 1.3;
    }

    .user-submenu .mega-menu-section-content p {
        font-size: 10px;
        line-height: 1.3;
        margin: 0;
    }

    .user-submenu .mega-menu-footer {
        padding: 10px 0px 10px 20px;
        background: #e2e8f0;
        text-align: left;
        border-top: 1px solid #cbd5e0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .mega-menu-content {
        padding: 0;
        width: 100%;
        margin: 0;
    }

    .mega-menu-sections {
        display: block;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .mega-menu-section {
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
        margin: 0;
    }

    .mega-menu-section:last-child {
        border-bottom: none;
    }

    .mega-menu-section-title {
        font-size: 13px;
        font-weight: 600;
        color: #1a365d;
        margin: 0;
        padding: 10px 0px 6px 0px;
        border-bottom: 1px solid #e2e8f0;
        background: #e2e8f0;
        width: 100%;
        box-sizing: border-box;
        text-indent: 20px;
    }

    .mega-menu-section-items {
        padding: 0;
        width: 100%;
        margin: 0;
    }

    .mega-menu-section-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0px 10px 20px;
        margin: 0;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
        box-sizing: border-box;
    }

    .mega-menu-section-item:hover {
        background: #f8fafc;
        border-radius: 0;
    }

    .mega-menu-section-item:last-child {
        border-bottom: none;
    }

    .mega-menu-section-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
        border-radius: 6px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .mega-menu-section-content {
        flex: 1;
        min-width: 0;
    }

    .mega-menu-section-content h5 {
        font-size: 12px;
        margin-bottom: 3px;
        line-height: 1.3;
    }

    .mega-menu-section-content p {
        font-size: 10px;
        line-height: 1.3;
        margin: 0;
    }

    .mega-menu-footer {
        padding: 10px 0px 10px 20px;
        background: #e2e8f0;
        text-align: left;
        border-top: 1px solid #cbd5e0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .mega-menu-footer a {
        font-size: 12px;
        font-weight: 600;
        color: #2b6cb0;
        text-decoration: none;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Top Bar Mobile */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-info span {
        font-size: 13px;
    }

    /* Stats Grid Mobile */
    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Steps Mobile */
    .steps {
        padding: 40px 0;
    }

    .steps h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 20px 15px;
    }

    .step-image {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .step-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .step-card p {
        font-size: 14px;
    }

    /* Services Mobile */
    .services {
        padding: 40px 0;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .services-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .service-header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .service-features li {
        font-size: 12px;
        margin-bottom: 6px;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 40px 0;
    }

    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .author-info p {
        font-size: 12px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-section p,
    .footer-section li {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* Toastr Custom Styling */
    .toast {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .toast-success {
        background-color: #10b981 !important;
    }
    .toast-error {
        background-color: #ef4444 !important;
    }
    .toast-warning {
        background-color: #f59e0b !important;
    }
    .toast-info {
        background-color: #1a1a2e !important;
    }
    .toast-message {
        font-weight: 500;
    }
    #toast-container > div {
        opacity: 0.95;
    }
/*  end */

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .top-bar {
        padding: 6px 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .logo {
        font-size: 24px;
    }

    .track-form {
        padding: 20px;
    }

    .track-form h3 {
        font-size: 18px;
    }

    .form-group input {
        padding: 10px;
        font-size: 14px;
    }

    .btn-track {
        padding: 10px;
        font-size: 14px;
    }
}

/* DataTables Professional Styling */
    .dataTables_wrapper .dataTables_length select {
        padding: 5px 10px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        background-color: white;
        font-size: 14px;
    }
    
    .dataTables_wrapper .dataTables_filter input {
        padding: 8px 12px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        margin-left: 8px;
        font-size: 14px;
        transition: all 0.3s;
    }
    
    .dataTables_wrapper .dataTables_filter input:focus {
        outline: none;
        border-color: #1a1a2e;
        box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
    }
    
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        margin-bottom: 20px;
    }
    
    .dataTables_wrapper .dataTables_length label,
    .dataTables_wrapper .dataTables_filter label {
        font-weight: 500;
        color: #374151;
        font-size: 14px;
    }
    
    .dataTables_wrapper .dataTables_info {
        padding-top: 16px;
        font-size: 14px;
        color: #6b7280;
    }
    
    .dataTables_wrapper .dataTables_paginate {
        padding-top: 16px;
    }
    
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 6px 12px;
        margin: 0 4px;
        border: 2px solid #1A202C !important;
        border-radius: 6px;
        background: white !important;
        color: #4a5568 !important;
        font-size: 14px;
        transition: all 0.3s;
        outline: none !important;
        box-shadow: none !important;
    }
    
    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        background: #1A202C !important;
        border-color: #1A202C !important;
        color: white !important;
        box-shadow: none !important;
    }
    
    .dataTables_wrapper .dataTables_paginate .paginate_button.current {
        background: #1A202C !important;
        border-color: #1A202C !important;
        color: white !important;
        box-shadow: none !important;
    }
    
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        background: #1A202C !important;
        border-color: #1A202C !important;
        box-shadow: none !important;
    }
    
    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        border-color: #e5e7eb !important;
        color: #9ca3af !important;
        background: #fff !important;
    }
    
    /* Table sorting arrows */
    table.dataTable thead th.sorting:before,
    table.dataTable thead th.sorting_asc:before,
    table.dataTable thead th.sorting_desc:before {
        right: 1em;
        content: "↑";
        opacity: 0.3;
    }
    
    table.dataTable thead th.sorting:after,
    table.dataTable thead th.sorting_asc:after,
    table.dataTable thead th.sorting_desc:after {
        right: 0.5em;
        content: "↓";
        opacity: 0.3;
    }
    
    table.dataTable thead th.sorting_asc:before {
        opacity: 1;
    }
    
    table.dataTable thead th.sorting_desc:after {
        opacity: 1;
    }
    
    /* Responsive adjustments */
    @media screen and (max-width: 767px) {
        .dataTables_wrapper .dataTables_length,
        .dataTables_wrapper .dataTables_filter {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .dataTables_wrapper .dataTables_info,
        .dataTables_wrapper .dataTables_paginate {
            text-align: center;
        }
    }

/* Add Button Style */
.btn-add {
    background: white;
    color: #1A202C;
    border: 2px solid #1A202C;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-add:hover {
    background: #1A202C;
    color: white;
    border-color: #1A202C;
    font-weight: 700;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 32, 44, 0.2);
}

.btn-add:focus {
    background: #1A202C;
    color: white;
    border-color: #1A202C;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(26, 32, 44, 0.1);
}

/* Edit Button Style */
.btn-edit {
    background: white;
    color: #1A202C;
    border: 2px solid #1A202C;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-edit:hover {
    background: #1A202C;
    color: white;
    border-color: #1A202C;
    font-weight: 700;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 32, 44, 0.2);
}

.btn-edit:focus {
    background: #1A202C;
    color: white;
    border-color: #1A202C;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(26, 32, 44, 0.1);
}

/* Delete Button Style */
.btn-delete {
    background: white;
    color: #000;
    border: 2px solid #C8102E;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-delete:hover {
    background: #C8102E;
    color: white;
    border-color: #C8102E;
    font-weight: 700;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(200, 16, 46, 0.3);
}

.btn-delete:focus {
    background: #C8102E;
    color: white;
    border-color: #C8102E;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2);
}

/* Cancel Button Style */
.btn-cancel {
    background: white;
    color: #1A202C;
    border: 2px solid #4a5568;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cancel:hover {
    background: #6b7280;
    color: white;
    border-color: #4a5568;
    font-weight: 700;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(107, 114, 128, 0.2);
}

.btn-cancel:focus {
    background: #6b7280;
    color: white;
    border-color: #4a5568;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

/* Approve Button Style */
.btn-approve {
    background-color: white;
    border: 2px solid #10b981;
    color: #000;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-approve:hover {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
    font-weight: bold;
}

.btn-approve:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* Welcome Page Button Styles - No Hover Effects */
.btn-signup {
    background-color: white;
    color: #1A202C;
    border: 2px solid #1A202C;
    border-radius: 6px;
    font-weight: bold;
    padding: 12px 24px;
    transition: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-signup:hover {
    background-color: white;
    color: #1A202C;
    border-color: #1A202C;
    transform: none;
    box-shadow: none;
}

.btn-how-it-works {
    background-color: #C8102E;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: bold;
    padding: 12px 24px;
    transition: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-how-it-works:hover {
    background-color: #C8102E;
    color: white;
    border-color: white;
    transform: none;
    box-shadow: none;
}

/* Bootstrap Toggle Checkbox Size */
.toggle {
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.toggle.btn {
    min-width: 80px;
    min-height: 38px;
    padding: 0;
    cursor: pointer;
}

.toggle-group {
    font-size: 0.9rem;
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
}

.toggle-on,
.toggle-off {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    font-weight: 500;
}

.toggle-handle {
    width: 1.6em;
    height: 1.6em;
}

.toggle input[type="checkbox"] {
    cursor: pointer;
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
}

.toggle.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.toggle.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.toggle.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Pagination Styles */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 6px;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: 4px;
    line-height: 1.25;
    color: #4a5568;
    background-color: #fff;
    border: 2px solid #1A202C;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
}

.page-link:hover {
    z-index: 2;
    color: white;
    background-color: #1A202C;
    border-color: #1A202C;
    outline: none;
    box-shadow: none;
}

.page-item:first-child .page-link {
    margin-left: 0;
}

.page-item.active .page-link {
    z-index: 3;
    color: white;
    background-color: #1A202C;
    border-color: #1A202C;
    outline: none;
    box-shadow: none;
}

.page-item.disabled .page-link {
    color: #9ca3af;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #1A202C;
    opacity: 0.5;
}

/* DataTables Pagination Styles */
.dataTables_wrapper .dataTables_paginate {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.5rem 0.75rem;
    margin-left: 4px;
    color: #4a5568 !important;
    background-color: #fff !important;
    border: 2px solid #1A202C !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:before,
.dataTables_wrapper .dataTables_paginate .paginate_button:after {
    display: none !important;
    content: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    background-color: #1A202C !important;
    border-color: #1A202C !important;
    box-shadow: none !important;
    outline: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover:before,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover:after {
    display: none !important;
    content: none !important;
    border: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: white !important;
    background-color: #1A202C !important;
    border-color: #1A202C !important;
    box-shadow: none !important;
    outline: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:before,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:after {
    display: none !important;
    content: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: #9ca3af !important;
    background-color: #fff !important;
    border-color: #e5e7eb !important;
    cursor: not-allowed;
    box-shadow: none !important;
    outline: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:first-child {
    margin-left: 0;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button {
    border: 2px solid #1A202C !important;
    box-shadow: none !important;
    outline: none !important;
}
/* end */