body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}
/*  Navbar styles */
.navbar {
    background-color: #f8f9fa; /* Light grey background */
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.navbar-logo img {
    height: 70px; /* Adjust as needed */
    margin-right: 5px;
    /* border: 1px solid black; */
}

.navbar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar-links li {
    margin-left: 15px;
}
.contact2 {
color: #007bff;

}

.navbar-links a {
    text-decoration: none;
    color: #333; /* Dark grey text */
    font-weight: bold;
}

.navbar-contact {
    color: #007bff; /* Blue color */
    font-weight: bold;
}

.menu-toggle {
    display: none; /* Initially hide the hamburger menu */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start; /* Align items to the left in column layout */
    }

    .navbar-left {
        margin-bottom: 10px;
        width: 100%;
        justify-content: space-between; /* Space out logo and toggle button */
    }

    .navbar-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Initially hide the links in responsive view */
    }

    .navbar-links li {
        margin: 10px 0;
        text-align: left; /* Align links to the left */
    }

    .navbar-contact {
        margin-top: 10px;
    }

    .menu-toggle {
        display: block; /* Show the hamburger menu */
        cursor: pointer;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px 0;
        display: block;
    }

    .navbar-links.open {
        display: flex; /* Use flex to arrange in a column */
        flex-direction: column; /* Ensure vertical stacking */
    }
}

/* Navbar css ends */

/***************************/
.concerns-2 {
  background-color: #fefefe;
}

.concerns-2 p {
  font-size: 0.5em;
  text-align: center;
  padding: 10px 20px; /* Reduced horizontal padding for smaller screens */
}

/* Media query for larger screens (e.g., tablets and desktops) */
@media (min-width: 768px) {
  .concerns-2 p {
    padding: 10px 100px; /* Restore larger horizontal padding */
    font-size: 0.5em; /* Slightly larger font size on bigger screens */
  }
}

/* You can add more media queries for different screen sizes if needed */
/* For example, for even larger desktops: */
@media (min-width: 1200px) {
  .concerns-2 p {
    font-size: 0.7em; /* Further increase font size */
  }
}
/****************************/



/* banner css start */
.banner-container {
    background-image: url('./Images/Printer_Banner-4.webp');
    height: 600px; /* Initial height for larger screens */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
   
    
}

.banner-text {
    color: white;
    padding: 20px;
    /* border: 1px solid black; /* Optional border for testing layout */
    border-radius: 8px; /* Optional rounded corners for the text container */
    /* border:1px solid black ; */
    width: 700px;
    height: auto;
}

.banner-text h1 {
    font-size: 2em; /* Slightly larger for impact */
    margin-bottom: 10px;
    font-weight: bold;
    color: #0d0d0d;
}

.banner-text h2 {
    font-size: 1.5em; /* Slightly smaller than the main heading */
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
}

.banner-text button {
    font-size: 1em; /* More readable button text */
    margin-top: 20px; /* Add some space above the button */
    font-weight: bold;
    background-color: #007bff;
    color: #fff;
    border-radius: 30px;
    padding: 12px 25px; /* Slightly larger padding */
    border: none;
    cursor: pointer; /* Add a pointer on hover */
}

.banner-text p {
    font-size: 1.2em;
}
.man-image{
    /* border: 1px solid black; */
    height: 550px;
    margin-left: 200px;
}
.man-image img{
    height: 630px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .banner-container {
        height: 80px;
        padding: 20px; /* Add some padding around the content */
        background-size: cover;
    }
    .man-image{
        display: none;
    }

    .banner-text {
        /* display: block; /* Ensure text is visible */
        width: 90%; /* Adjust width of the text container */
        margin: 20px auto; /* Center the text container */
        padding: 15px; /* Adjust padding for smaller container */
    }

    .banner-text h1 {
        font-size: 0.5em; /* Adjust heading size */
    }

    .banner-text h2 {
        font-size: .4em; /* Adjust sub-heading size */
    }
    .banner-text p{
        font-size: 0.5em;
    }

    .banner-text button {
        font-size: 0.5em; /* Adjust button text size */
        padding: 10px 20px; /* Adjust button padding */
    }
}

/* Further adjustments for even smaller screens */
@media (max-width: 480px) {
   
    .banner-text h1 {
        font-size: 0.5em;
    }

    .banner-text h2 {
        font-size: 0.5em;
    }
    .banner-text p{
        font-size: 0.5em;
    }

    .banner-text button {
        font-size: 0.4em;
        padding: 8px 5px;
    }
}
/* banner css ends */



/* image content css starts */

.container, .container-header, .problems-container, .content-below {
    
    margin: 0px 100px;
    background-color: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    padding: 20px;
    line-height: 30px;
}
.PrinterSupport{
    text-decoration: none;
    font-size: 1em;
}
.PrinterSupport:hover{
    color: bisque;
}
.section-one h1{
    text-align: center;
}
/* Section One */
.section-one .container {
    display: flex;
    overflow: hidden;
}
#para1{
    text-align: center;
}
#heading-color{
    color: #03a9f4;
    text-align: center;
}
#dsad {
    font-size: 1.4em;
}
.section-one .image-section {
    flex: 0 0 40%;
    padding-right: 20px;
}

.section-one .image-section img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.section-one .text-section {
    flex: 1;
}

/**********************************/
.contact-info {
  /* Basic styling for the container */
  font-family: sans-serif; /* Choose your preferred font */
  color: #555; /* Adjust text color */
  
}

.contact-info p {
  margin-bottom: 8px; /* Add some spacing between lines */
  display: flex; /* Align icon and text */
  align-items: center; /* Vertically align icon and text */
}

.contact-info i {
  margin-right: 10px; /* Space between icon and text */
  color: #888; /* Adjust icon color */
}

.contact-info a {
  color: #1499c2; /* Link color */
  text-decoration: none; /* Remove underline */
}

.contact-info a:hover {
  text-decoration: underline; /* Add underline on hover */
}
/**********************************/

.section-one .text-section h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #0d0d0d;
}
.section-one .text-section h2 {
    color: #0d0d0d;
    font-size:1em;
    padding: 0px 60px 0px 0px;
}
.section-one .text-section p{
    font-size: 0.9em;
}

.section-one .content-below {
    margin-top: 20px;
}
.PrinterSetup{
    text-decoration: none;
}
.list-item {
    list-style-type: disc;
    margin: 0px 20px;
    line-height: 30px;
    font-size: 15px;
}

/* Section Two */
.section-two .top-header {
    text-align: center;
    padding: 10px 0;
}

.section-two .call-quote {
    color: #555;
    font-size: 0.9em;
}

.section-two .hero-section {
    padding: 30px 0;
    text-align: center;
}

.section-two .hero-section h1 {
    font-size: 2em;
    color: #222;
    margin-bottom: 15px;
}

.section-two .hero-section p {
    color: #555;
    margin-bottom: 10px;
   
}

/* Section Three */
.section-three .problems-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.section-three .problem-list-area {
    flex: 1;
}

.section-three .section-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.section-three .issue-list {
    list-style-type: disc;
    padding-left: 20px;
}

.section-three .list-item {
    margin-bottom: 8px;
}

.section-three .image-area {
    flex: 1;
    text-align: center;
}

.section-three .image-wrapper {
    max-width: 100%;
}

.section-three .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container, .container-header, .problems-container, .content-below {
        margin: 15px;
        padding: 15px;
        flex-direction: column; /* For single column layout on small screens */
    }

    .section-one .image-section {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .section-one .text-section h1 {
        font-size: 1.5em;
    }

    .section-two .hero-section h1 {
        font-size: 1.7em;
    }

    .section-three .problems-container {
        flex-direction: column;
    }

    .section-three .image-area {
        margin-top: 20px;
    }
}

/********************************************************/
.hp-banner {
  background-image: url('./Images/customer.webp'); /* Replace with the actual URL of your image */
  background-size: contain;
 background-repeat: no-repeat;
  color: white;
  padding: 60px 20px; /* Adjust vertical padding */
 background-position: center;
}





/* Responsive adjustments */
@media (max-width: 768px) {
  .hp-banner {
    padding: 40px 15px;
  }
 
}

@media (max-width: 576px) {
  .hp-banner {
    padding: 30px 10px;
  }

}
/******************************************************/

.page-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.site-footer {
    background-color: #333; /* Dark background color */
    color: #eee; /* Light text color */
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap; /* Allows sections to wrap on smaller screens */
    justify-content: space-around; /* Distribute sections evenly */
    align-items: flex-start; /* Align items to the top */
    gap: 20px; /* Adds space between footer columns */
}

.footer-column {
    flex: 1 1 300px; /* Minimum width for each section */
    margin-bottom: 0; /* Removed redundant margin */
    padding: 0 15px;
}

.column-heading {
    color: #fff;
    font-size: 1.1em; /* Slightly reduced for better readability */
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
    padding-bottom: 8px; /* Increased padding for visual balance */
}

.about-us-text {
    font-size: 0.9em;
    line-height: 1.7; /* Slightly reduced for better flow */
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px; /* Increased spacing */
    font-size: 0.9em;
}

.contact-icon {
    margin-right: 12px; /* Increased spacing */
    color: #ddd;
    width: 18px; /* Slightly larger icon */
    height: 18px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    display: block; /* Ensures SVG takes up the full container */
}

.social-links {
    margin-top: 25px; /* Increased spacing */
    display: flex;
    gap: 10px; /* Adds space between social buttons */
}

.social-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* Slightly larger buttons */
    height: 35px; /* Slightly larger buttons */
    border-radius: 50%;
    background-color: #555;
    color: #eee;
    text-decoration: none;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.social-button:hover {
    background-color: #777; /* Darker on hover */
}

.social-button svg {
    width: 18px; /* Slightly larger icons */
    height: 18px;
}

.partner-link {
    font-size: 0.9em;
    margin-top: 20px; /* Increased spacing */
}

.partner-link a {
    color: #007bff; /* Example link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-link a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Increased spacing */
    font-size: 0.9em;
}

.list-arrow {
    margin-right: 12px; /* Increased spacing */
    color: #007bff; /* Example primary color */
    width: 18px; /* Slightly larger arrow */
    height: 18px;
}

.list-arrow svg {
    width: 100%;
    height: 100%;
    display: block; /* Ensures SVG takes up the full container */
}
.contact-item  a {
    text-decoration: none;
    color: #fff;
}
 .support-list .support-item  a {
    text-decoration: none;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px; /* Adjust padding for smaller screens */
        gap: 30px; /* Increased gap in column direction */
    }

    .footer-column {
        width: 90%; /* Increased width on smaller screens */
        margin-bottom: 0; /* Reset margin */
        padding: 0; /* Reset padding */
    }

    .column-heading {
        font-size: 1.1em; /* Maintain heading size */
        margin-bottom: 10px; /* Adjust spacing */
        padding-bottom: 6px; /* Adjust padding */
        border-bottom: 1px solid #555; /* Keep the border */
    }

    .contact-us .contact-list,
    .printer-support .support-list {
        text-align: left;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px; /* Adjust spacing */
    }

    .social-button {
        width: 30px; /* Slightly smaller on mobile */
        height: 30px; /* Slightly smaller on mobile */
    }

    .social-button svg {
        width: 16px; /* Adjust icon size */
        height: 16px; /* Adjust icon size */
    }

    .partner-link {
        margin-top: 15px; /* Adjust spacing */
    }
}

@media (max-width: 480px) {
    .footer-column {
        width: 100%; /* Full width on very small screens */
    }
}

/*--------------------------------------------*/
/* Banner CSS Start */
.banner__container {
    background-image: url('./Images/qwerty.webp');
    height: 600px; /* Initial height for larger screens */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.banner__text-content {
    color: white;
    padding: 20px;
    border-radius: 8px; /* Optional rounded corners for the text container */
    width: 700px;
    height: auto;
}

.banner__heading {
    font-size: 2em; /* Slightly larger for impact */
    margin-bottom: 10px;
    font-weight: bold;
    color: #37bbeb;
}

.banner__subheading {
    font-size: 1.5em; /* Slightly smaller than the main heading */
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
}

.banner__button {
    font-size: 1em; /* More readable button text */
    margin-top: 20px; /* Add some space above the button */
    font-weight: bold;
    background-color: #007bff;
    color: #fff;
    border-radius: 30px;
    padding: 12px 25px; /* Slightly larger padding */
    border: none;
    cursor: pointer; /* Add a pointer on hover */
}

.banner__description {
    font-size: 1.2em;
}

.banner__image-container {
    height: 550px;
    margin-left: 200px;
}

.banner__image {
    height: 400px;
    margin: 70px 0px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .banner__container {
        height: auto; /* Adjust height for content */
        padding: 20px; /* Add some padding around the content */
        background-size: cover;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items horizontally */
    }

    .banner__image-container {
        display: block; /* Hide the image on smaller screens */
        margin-left: 0; /* Reset margin */
    }

    .banner__text-content {
        width: 90%; /* Adjust width of the text container */
        margin: 20px auto; /* Center the text container */
        padding: 15px; /* Adjust padding for smaller container */
        text-align: center; /* Center the text */
    }

    .banner__heading {
        font-size: 1.5em; /* Adjust heading size */
    }

    .banner__subheading {
        font-size: 1em; /* Adjust sub-heading size */
    }

    .banner__description {
        font-size: 1em;
    }

    .banner__button {
        font-size: 0.8em; /* Adjust button text size */
        padding: 10px 20px; /* Adjust button padding */
    }
    .banner__image {
    height: 300px;
    margin: 70px 0px;
}
}

/* Further adjustments for even smaller screens */
@media (max-width: 480px) {
    .banner__heading {
        font-size: 1.2em;
    }

    .banner__subheading {
        font-size: 0.9em;
    }

    .banner__description {
        font-size: 0.9em;
    }

    .banner__button {
        font-size: 0.7em;
        padding: 8px 15px;
    }
    .banner__image {
    height: 300px;
    margin: 70px 0px;
}
}
/* Banner CSS Ends */
/*----------------------------------------------*/

.app-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.app-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.main-view {
    display: flex;
    flex-direction: column;
}

.product-overview {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.monitor-details {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.monitor-details img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out; /* Add transition for smooth effect */
}

.monitor-details img:hover {
    transform: scale(1.05); /* Scale up slightly on hover */
}

.monitor-info-text {
    line-height: 1.6;
}

.related-accessories {
    flex: 1;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    box-sizing: border-box;
}

.accessories-heading {
    margin-top: 0;
    margin-bottom: 15px;
}

.accessories-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.accessories-grid-layout img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out; /* Add transition for smooth effect */
}

.accessories-grid-layout img:hover {
    transform: scale(1.05); /* Scale up slightly on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-overview {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .accessories-grid-layout {
        grid-template-columns: 1fr;
    }
}


/***********************************************/

.site-container {
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.site-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.main-area-view {
   
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-listing {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.item-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 380px;
    margin-bottom: 20px;
}

.item-card img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.item-card img:hover {
    transform: scale(1.05);
}

.item-title {
    padding: 15px;
    text-align: center;
    font-size: 1em;
    color: #555;
}

/* Responsive adjustments (optional) */
@media (max-width: 900px) {
    .product-listing {
        flex-direction: column;
        align-items: center;
    }
    .item-card {
        width: 90%;
        max-width: 400px;
    }
}

/**************************************************/
.article-main-contaner{
    background-color: #fff3e5;
    padding: 20px;
}
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    /* background-color: #fff; */
    padding: 30px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
   

}
.article-main{
    display: flex;
    gap: 20px;
}

.article-header h1 {
    color: #337ab7; /* Example HP blue color */
    text-align: center;
    margin-bottom: 25px;
}

.installation-guide {
    margin-bottom: 30px;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 15px;
}

.steps-list li ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.steps-list li ul li {
    margin-bottom: 5px;
}

.code {
    background-color: #f9f9f9;
    color: #c7254e;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace, monospace;
    font-size: 0.9em;
}

.image-section {
    text-align: center;
    margin-bottom: 30px;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.protected-setup {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    width: 520px;
}

.protected-setup h2 {
    color: #337ab7;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-container {
        padding: 20px;
    }
    .article-main{
        flex-direction: column;
    }
    .article-header h1 {
        font-size: 1.5em;
    }
    .protected-setup{
        width: 260px;
    }
}
/***************************************/
.hero-banner__container {
    background-image: url('./Images/bg2.webp');
    height: 600px; /* Initial height for larger screens */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-banner__text-area {
    color: white;
    padding: 20px;
    border-radius: 8px; /* Optional rounded corners for the text container */
    width: 700px;
    height: auto;
}

.hero-banner__title {
    font-size: 2em; /* Slightly larger for impact */
    margin-bottom: 10px;
    font-weight: bold;
    color: #37bbeb;
}
.ol-list{
    list-style-type: decimal;
    line-height: 2;
}

.hero-banner__subtitle {
    font-size: 1.5em; /* Slightly smaller than the main heading */
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
}

.hero-banner__button {
    font-size: 1em; /* More readable button text */
    margin-top: 20px; /* Add some space above the button */
    font-weight: bold;
    background-color: #007bff;
    color: #fff;
    border-radius: 30px;
    padding: 12px 25px; /* Slightly larger padding */
    border: none;
    cursor: pointer; /* Add a pointer on hover */
}

.hero-banner__info {
    font-size: 1.2em;
}

.hero-banner__image-area {
    height: 550px;
    margin-left: 200px;
}

.hero-banner__img {
    height: 400px;
    margin: 70px 0px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-banner__container {
        height: auto; /* Adjust height for content */
        padding: 20px; /* Add some padding around the content */
        background-size: cover;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items horizontally */
    }

    .hero-banner__image-area {
        display: block; /* Hide the image on smaller screens */
        margin-left: 0; /* Reset margin */
    }

    .hero-banner__text-area {
        width: 90%; /* Adjust width of the text container */
        margin: 20px auto; /* Center the text container */
        padding: 15px; /* Adjust padding for smaller container */
        text-align: center; /* Center the text */
    }

    .hero-banner__title {
        font-size: 1.5em; /* Adjust heading size */
    }

    .hero-banner__subtitle {
        font-size: 1em; /* Adjust sub-heading size */
    }

    .hero-banner__info {
        font-size: 1em;
    }

    .hero-banner__button {
        font-size: 0.8em; /* Adjust button text size */
        padding: 10px 20px; /* Adjust button padding */
    }
    .hero-banner__img {
    height: 300px;
    margin: 70px 0px;
}
}

/* Further adjustments for even smaller screens */
@media (max-width: 480px) {
    .hero-banner__title {
        font-size: 1.2em;
    }

    .hero-banner__subtitle {
        font-size: 0.9em;
    }

    .hero-banner__info {
        font-size: 0.9em;
    }

    .hero-banner__button {
        font-size: 0.7em;
        padding: 8px 15px;
    }
    .hero-banner__img {
    height: 300px;
    margin: 70px 0px;
}
}

/*****************************************/

.setup-container {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   
    overflow: hidden;
    display: flex;
    width: 100%;
    /* max-width: 1000px; */
    margin: 0px;
}

.left-panel {
    background-color: #2c3e50; /* Dark background for the text side */
    color: #fff;
    padding: 30px;
    flex: 1;
}

.left-panel h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #3498db; /* Accent color */
}

.left-panel h2 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e67e22; /* Another accent color */
}

.left-panel p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.left-panel ul {
    list-style-type: disc;
    padding-left: 20px;
}

.left-panel ul li {
    margin-bottom: 10px;
}

.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.right-panel img {
    max-width: 100%;
    height: auto;
   
}

/* Responsive Design */
@media (max-width: 768px) {
    .setup-container {
        flex-direction: column;
    }

    .left-panel {
        padding: 20px;
    }

    .left-panel h1 {
        font-size: 1.7em;
    }

    .left-panel h2 {
        font-size: 1.3em;
    }

    .right-panel {
        padding: 20px;
    }
}

/****************************************/
/*--------------------------------------------*/
#open-support-button {
    background-color: #4CAF50; /* Green button */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-bottom: 15px; /* Adjust spacing for smaller screens */
    float: right;
    position: fixed; /* Keep button in viewport on scroll */
    bottom: 0%; /* Position from the bottom */
    right: 20px; /* Position from the right */
    z-index: 1000; /* Ensure it's above other content */
}

#open-support-button:hover {
    background-color: #45a049;
}

.support-form {
    background-color: #3f51b5; /* Similar to the blue in the image */
    color: white;
    padding: 20px;
    border-radius: 5px;
    font-family: sans-serif;
    display: none; /* Initially hide the form */
    position: fixed; /* Keep form in viewport */
    top: 50%; /* Center vertically */
    left: 85%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    width: 90%; /* Make form responsive width */
    max-width: 400px; /* Limit maximum width */
    z-index: 1001; /* Ensure it's above the button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.title {
    font-size: 1.2em;
    font-weight: bold;
}

.minimize-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
}

.message {
    margin-bottom: 15px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
    width: calc(100% - 12px); /* Adjust for padding */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1em; /* Inherit or slightly increase font size for better readability */
}

.form-field textarea {
    resize: vertical;
    min-height: 100px; /* Adjust minimum height */
}

.submit-area {
    text-align: right;
}

.submit-button {
    background-color: #303f9f; /* Darker blue */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9em;
}

.submit-button:hover {
    background-color: #283593;
}

.zendesk-logo {
    color: #777;
    font-size: 0.8em;
    margin-top: 10px;
    text-align: center; /* Center the logo on smaller screens */
}

/* Overlay for the form background when visible */
.form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1000;
}

/* JavaScript to toggle the form and overlay */
#open-support-button.active + .support-form,
.support-form.active {
    display: block;
}

#open-support-button.active + .support-form + .form-overlay,
.support-form.active + .form-overlay {
    display: block;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    #open-support-button {
        font-size: 0.9em;
        padding: 8px 12px;
        bottom: 15px;
        right: 15px;
    }

    .support-form {
        padding: 15px;
        position: fixed;
        top:50%;
        left: 50%;
    }

    .title {
        font-size: 1.1em;
    }

    .minimize-button {
        font-size: 1.3em;
    }

    .form-field label {
        font-size: 0.85em;
    }

    .form-field input[type="text"],
    .form-field input[type="email"],
    .form-field input[type="tel"],
    .form-field textarea {
        font-size: 0.95em;
    }

    .submit-button {
        font-size: 0.85em;
        padding: 8px 12px;
    }
}
/***********************************************/
  #open-popup-button {
            background-color: #00a2e8;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            margin: 0px; /* Center the button horizontally */
            display: block; /* Make it a block-level element to apply margin auto */
            position: fixed;
            left:0%;
            bottom: 5%;
            z-index: 1000;
            
        }

        #open-popup-button:hover {
            background-color: #008ac5;
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
            z-index: 1000;
        }

        .popup-container {
            background-color: #00a2e8;
            color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 400px;
            position: relative;
        }

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .popup-title {
            font-size: 1.3em;
            font-weight: bold;
        }

        .close-button {
            background: none;
            border: none;
            color: white;
            font-size: 1.8em;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 1em;
            font-weight: bold;
        }

        .form-group input[type="text"],
        .form-group input[type="tel"],
        .form-group select,
        .form-group textarea {
            width: calc(100% - 16px);
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 3px;
            box-sizing: border-box;
            font-size: 1em;
            color: #333;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-group .required::after {
            content: " *";
            color: yellow;
        }

        .connect-button {
            background-color: #fff;
            color: #00a2e8;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: bold;
            width: 100%;
        }

        .connect-button:hover {
            background-color: #e0e0e0;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 600px) {
             #open-popup-button {
                 position: fixed;
            left:0%;
            bottom: 20%;
            z-index: 1000;

             }
            .popup-container {
                padding: 15px;
                border-radius: 3px;
            }

            .popup-title {
                font-size: 1.1em;
                margin-bottom: 10px;
            }

            .close-button {
                font-size: 1.5em;
            }

            .form-group {
                margin-bottom: 12px;
            }

            .form-group label {
                font-size: 0.9em;
            }

            .form-group input[type="text"],
            .form-group input[type="tel"],
            .form-group select,
            .form-group textarea {
                padding: 8px;
                font-size: 0.95em;
            }

            .connect-button {
                padding: 10px 16px;
                font-size: 1em;
            }
        }

        @media (min-width: 601px) and (max-width: 992px) {
             #open-popup-button{
                 position: fixed;
            left:0%;
            bottom: 20%;
            z-index: 1000;
             }
            .popup-container {
                padding: 25px;
            }

            .popup-title {
                font-size: 1.2em;
            }

            .form-group label {
                font-size: 0.95em;
            }

            .form-group input[type="text"],
            .form-group input[type="tel"],
            .form-group select,
            .form-group textarea {
                padding: 9px;
            }

            .connect-button {
                padding: 11px 18px;
            }
        }
/*************************************************/
/* Base styles for all screen sizes */
div.printer-support-bar {
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
      position: fixed; /* Make it fixed to the viewport */
    top: 0; /* Stick it to the top */
    left: 0; /* Stick it to the left */
    width: 100%; /* Make it span the entire width */
    z-index: 1000;
}

p.printer-support-text {
    margin: 0;
    font-size: 0.9em; /* Slightly smaller base font size for better scaling */
}

span.flag-container {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

img.flag-icon {
    vertical-align: middle;
}

img.us-flag {
    width: 14px;
    height: 10px;
}

img.canada-flag {
    width: 14px;
    height: 10px;
    margin-left: 2px;
}

/* Media query for smaller screens (max-width: 600px) */
@media (max-width: 600px) {
    div.printer-support-bar {
        padding: 8px;
    }

    p.printer-support-text {
        font-size: 0.8em;
    }

    img.flag-icon {
        width: 12px !important;
        height: 9px !important;
    }
}

/* Media query for medium-sized screens (min-width: 601px and max-width: 992px) */
@media (min-width: 601px) and (max-width: 992px) {
    p.printer-support-text {
        font-size: 0.85em;
    }

    img.flag-icon {
        width: 13px !important;
        height: 9.5px !important;
    }
}

/* You can add more media queries for larger screens if needed */
@media (min-width: 993px) {
    p.printer-support-text {
        font-size: 1em; /* Revert to a slightly larger size for desktops */
    }

    img.flag-icon {
        width: 16px !important;
        height: 11px !important; /* Revert to original size for desktops */
    }
    img.canada-flag {
        margin-left: 3px; /* Adjust spacing on larger screens if desired */
    }
}
/********************************************/


