/* Modern Staggered Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: fadeInModern 0.7s cubic-bezier(.4,0,.2,1) forwards;
}
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.45s; }
.fade-in.delay-4 { animation-delay: 0.6s; }
@keyframes fadeInModern {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.card-hover-animate {
    transition: transform 0.32s cubic-bezier(.4,0,.2,1), box-shadow 0.32s cubic-bezier(.4,0,.2,1);
}
.card-hover-animate:hover {
    transform: translateY(-10px) scale(1.035) rotateZ(-0.5deg);
    box-shadow: 0 16px 48px rgba(25, 118, 210, 0.18), 0 6px 24px rgba(0,0,0,0.13), 0 0 0 2px #1976d222;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 36px 0 rgba(25, 118, 210, 0.18), 0 2px 8px rgba(0,0,0,0.10), 0 0 0 4px #e3f0ff;
    background: #fff;
    transition: box-shadow 0.32s cubic-bezier(.4,0,.2,1), transform 0.32s cubic-bezier(.4,0,.2,1);
}
.hero-image img:hover {
    box-shadow: 0 24px 64px 0 rgba(25, 118, 210, 0.22), 0 6px 18px rgba(0,0,0,0.13), 0 0 0 6px #b3e0ff;
    transform: scale(1.025) rotateZ(-0.5deg);
}
/* Interactive Animations */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUpSimple 0.9s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes fadeInUpSimple {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.card-hover-animate {
    transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s cubic-bezier(.22,1,.36,1);
}
.card-hover-animate:hover {
    transform: translateY(-12px) scale(1.045) rotateZ(-1deg);
    box-shadow: 0 16px 48px rgba(25, 118, 210, 0.18), 0 6px 24px rgba(0,0,0,0.13);
    z-index: 2;
}
.hero-text {
    padding: 32px 10px 32px 32px;
}
@media (max-width: 700px) {
    .search-btn {
        font-size: 1rem;
        padding: 9px 0;
        border-radius: 5px;
    }
    hr, .divider {
        height: 4px !important;
        border-width: 0 0 4px 0 !important;
        background: #e0e6f0 !important;
        margin: 18px 0 !important;
    }
}
@media (max-width: 700px) {
    .top-steps {
        flex-direction: column;
        height: auto;
        padding: 18px 8vw 10px 8vw;
        gap: 12px;
    }
    .top-steps .left, .top-steps .right {
        min-width: unset;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .top-steps .right {
        margin-top: 10px;
    }
}
/* Modern Footer Styles */
footer {
    background: #fcf9f9 !important;
    color: #111 !important;
    padding: 48px 0 0 0;
    font-size: 1.01rem;
    border-top: 1px solid #e0e6f0;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 28px; /* reduced gap */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px; /* reduced side padding */
    justify-content: space-between;
}


.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0; /* removed extra spacing */
}

.logo-col {
    flex: 1 1 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 18px;
    filter: none;
}
.footer-desc {
    color: #222;
    font-size: 1.04rem;
    margin-bottom: 0;
    line-height: 1.7;
}
.footer-col h4 {
    color: #111 !important;
    font-size: 1.13rem;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #111 !important;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #111 !important;
    text-decoration: underline;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #111 !important;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1.01rem;
}
.footer-contact li {
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
    .footer-col {
        flex: 1 1 45%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-main {
        flex-direction: column;
        gap: 20px;
    }

    .footer-col {
        flex: 1 1 100%;
        min-width: 100%;
    }
}



/* Advanced Troubleshooting Guide Styling */
.advanced-troubleshooting {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 8px;
}
.troubleshoot-section {
    background: #fafdff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,115,230,0.06);
    padding: 18px 20px 14px 20px;
    min-width: 260px;
    flex: 1 1 260px;
    margin-bottom: 8px;
}

.advanced-troubleshooting-guide{
    font-size: 1.5rem;
    color: #0f0f0f;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 18px;
}
.troubleshoot-section h4 {
    color: #1976d2 !important;
    font-size: 1.08rem;
    margin-bottom: 8px;
    margin-top: 0;
    font-weight: 700;
}
.troubleshoot-section ul {
    margin: 0 0 0 18px;
    padding: 0;
    color: #222;
    font-size: 0.98rem;
    line-height: 1.7;
}
.info-tip {
    background: #ffffff;
    color: #1976d2 !important;
    border-left: 4px solid #0073e6;
    border-radius: 6px;
    margin-top: 18px;
    font-size: 0.98rem;
    padding-left: 18px;
}

.info-box.blue-bg {
    background: #ffffff;
    border-left: 4px solid #1976d2;
    box-shadow: 0 2px 8px rgba(0,115,230,0.06);
    margin-top: 32px;
    padding-left: 38px;
}
.info-tip strong {
    color: #0073e6;
}
.step-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 115, 230, 0.10), 0 1.5px 6px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    min-height: 270px;
    transition: box-shadow 0.2s;
    overflow: hidden;
}

.step-card:hover {
    box-shadow: 0 8px 28px rgba(0, 115, 230, 0.18), 0 3px 12px rgba(0,0,0,0.12);
}
.step-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    margin-bottom: 12px;
}
.step-card h3 {
    color: #0073e6;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
    text-align: center;
}
.step-card p {
    font-size: 0.98rem;
    color: #111 !important;
    margin: 0;
    text-align: center;
}
.icon-card {
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 8px 10px 8px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 115, 230, 0.10), 0 1.5px 6px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}
.icon-card:hover {
    box-shadow: 0 8px 28px rgba(0, 115, 230, 0.18), 0 3px 12px rgba(0,0,0,0.12);
}
.icon-card-img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    object-fit: contain;
    display: block;
}
.icon-card p {
    color: #0073e6;
    font-weight: 500;
    font-size: 1.08rem;
    margin-top: 4px;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}
.carousel-track {
    /* Hide scrollbars for all browsers */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
/* Hero Image Carousel */
.hero-image-carousel {
    display: flex;
    align-items: center;
    position: relative;
    min-width: 420px;
    max-width: 420px;
    height: 250px;
    justify-content: center;
}
.carousel-img-js {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 12px;
    transition: box-shadow 0.2s;
    flex-shrink: 0;
}
.carousel-arrow {
    background: transparent !important;
    color: #0073e6 !important;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    box-shadow: none;
}
.fav-icon img.custom-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


.carousel-arrow.left {
    margin-right: 8px;
}
.carousel-arrow.right {
    margin-left: 8px;
}
.carousel-arrow:hover {
    background: #e9eef3 !important;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-disclaimer {
    
   
    
    background: #0b65b9;
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 14vh;
}
a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-disclaimer-p {
    max-width: 1200px;
    margin: auto;
    padding: 12px;
    font-size: larger;
    line-height: 1.6;
    font-weight: 600;
}

/* Top Steps Progress Bar */
.top-steps {
    height: 12vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 32px 10px 32px;
    background: #fff;
    font-weight: bold;
    box-sizing: border-box;
}
.top-steps .left {
    display: flex;
    align-items: center;
    min-width: 420px;
    flex: 1 1 420px;
}
.step-group.no-gap {
    display: flex;
    align-items: center;
    gap: 7px;
}
.step-icon.full-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0073e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.step-icon.full-circle.step-num {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0073e6;
    width: 36px;
    height: 36px;
    margin: 0 2px;
}
.step-text.small {
    font-size: 12px;
    font-weight: 400;
    color: #222;
    margin: 0 2px 0 6px;
}
.chevron {
    color: #0073e6;
    font-size: 12px;
    margin: 0 6px;
}
.top-steps .right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    border: 1px solid #555454;
}
.fav-icon.blue-bg {
    background: #ffffff;
}
.fav-icon:hover {
    box-shadow: 0 4px 12px rgba(30, 78, 236, 0.18);
}


.device-item {
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.device-item.active {
    background-color: #2563eb; /* blue */
    color: #fff;
}

/* If using image icons */
.device-item.active img {
    filter: brightness(0) invert(1); /* makes image white */
}


/* Mobile View */
@media (max-width: 600px) {
    .fav-icon{
        width: 40px;
        height: 35px;
    }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
   max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
   color: black;
   align-items: center;
   justify-content: center;
   
}



.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0056b3;
}

.nav-links a {
    text-decoration: none;
    margin-left: 20px;
    color: #555;
    background: #fff;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 0;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
    color: #0056b3;
.support-content h2 {
     font-size: 1.35rem;
     margin-bottom: 18px;
     color: #002b5c;
     font-weight: 700;
}
.support-content p {
     font-size: 1.08rem;
     color: #333;
     margin-bottom: 22px;
     line-height: 1.7;
}
    margin-bottom: 10px;
}

.btn-primary {
    background: #0056b3;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.13), 0 2px 8px rgba(0,0,0,0.10);
    background: #fff;
}

/* Icon Grid */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.icon-card {
    background: white;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s;
}

.icon-card i {
    font-size: 30px;
    color: #0056b3;
    margin-bottom: 10px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.step-card {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-card img {
    width: 100%;
    margin-bottom: 15px;
}

/* Info Sections */
.info-box {
    background: #fafdff;
    padding: 32px 28px 28px 28px;
    margin-bottom: 28px;
    border-left: 6px solid #0073e6;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 115, 230, 0.08), 0 1.5px 6px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.info-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.info-box-icon {
    background: #0073e6;
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,115,230,0.10);
}
.info-box h3 {
    color: #0073e6;
    font-size: 1.18rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.01em;
}
.info-box-list {
    margin: 0;
    padding-left: 22px;
    color: #222;
    font-size: 1.01rem;
    line-height: 1.7;
}
.info-box-list li {
    margin-bottom: 7px;
    padding-left: 2px;
}


 

.printer-setup-guide-text{
    
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 600;
}
.divider {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid #ddd;
}

/* Support Footer */
.support-footer {
    display: flex;
    background: #fff;
    padding: 40px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eee;
    margin-bottom: 50px;
}
.support-content {
    flex: 1 1 50%;
    min-width: 300px;
    max-width: 50%;
    box-sizing: border-box;
}
.support-img {
    flex: 1 1 50%;
    max-width: 50%;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Footer */
footer {
    background: #002b5c;
    color: white;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid a {
    color: #ccc;
    text-decoration: none;
}

/* Footer Bottom Bar Enhanced */
.footer-bottom {
        
    border-top: 1px solid #e0e6f0;
    background-color: #002b5c;
    padding: 18px 0;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
    z-index: 2;
}
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    font-size: 1.01rem;
   
    min-height: 48px;
    gap: 18px;
    flex-wrap: wrap;
    text-align: left;
}
.footer-bottom-content span {
    display: flex;
    align-items: center;
}
.footer-payments img {
    height: 32px;
    margin-left: 18px;
    vertical-align: middle;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 3px 10px;
    transition: box-shadow 0.18s, transform 0.18s;
    cursor: pointer;
}
.footer-payments img:hover {
    box-shadow: 0 2px 10px rgba(25,118,210,0.13);
    transform: translateY(-2px) scale(1.07);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .support-footer { flex-direction: column; text-align: center; }
}