html {
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    height: 108px;
    padding: 0 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* background: linear-gradient(to right, #0a0a0a, #111); */
    background: linear-gradient(to right, #f5f5f5, #ffffff);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
}

/* Logo */
.logo img {
    /* margin-top: -62px; */
    height: 232px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    /* margin-top: -43px; */
    display: flex;
    list-style: none;
    transition: all 0.3s ease-in-out;
}

.nav-links li {
    margin: 21px;
}

.nav-links a {
    text-decoration: none;
    /* color: #6359ad; */
    color:#111;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}


.nav-links a:hover {
    color: #8B2635;
}

/* Authentication Buttons */
.auth-buttons {
    display: flex;
    margin-left: 33px;
    align-items: center;
}

.auth-buttons button {
    /* background-color:#8B2635;  */
    background-color:#4353B7; 
    
    color: white;
    padding: 10px 20px; /* Adjust padding as needed */
    border: none;
    border-radius: 5px; /* Or the border radius from the image */
    font-size: 16px; /* Adjust font size as needed */
    font-weight: bold; /* If the text is bold */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-buttons button a{
    color: white;
}
.auth-buttons button a:hover{
    color: rgb(243, 238, 238);
}


.auth-buttons .login-btn:hover {
    transform: scale(1.05);
    /* background-color: #3858AC; */
    background-color:#4353B7; 
    /* background-color:#8B2635;  */
    /* color: white; */
}
.auth-buttons .signup-btn:hover {
    transform: scale(1.05);
    border: 2px solid #f4f3f1;
    /* color: white; */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.hamburger:hover {
    transform: scale(1.1);
}

/* Responsive Navbar */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 48px;
    }

    .logo img {
        /* margin-top: -49px; */
        height: 201px;
    }

    .nav-links li {
        margin: 21px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .auth-buttons button {
        font-size: 14px;
        padding: 10px 20px;
    }
    .nav-links {
        /* margin-top: -25px; */
        display: flex
    ;
        list-style: none;
        transition: all 0.3s ease-in-out;
    }
}

/* Tablets & Mobile (Width ≤ 768px) */
@media (max-width: 768px) {
 

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 109px;
        left: 0;
        width: 100%;
        background:whitesmoke;
        /* background: #111; */
        text-align: center;
        padding: 16px 0;
    }

    .nav-links li {
        margin: 9px 0;
        margin-left: 14px;
    }

    .nav-links a {
        font-size: 16px;
        display: block;
        padding: 8px 0;
    }

    /* Move Auth Buttons to the bottom */
    .auth-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 16px 0;
        gap: 8px;
        order: 1; /* Place after nav links */
    }

    .auth-buttons button {
        width: 15%;
        font-size: 13px;
        margin-left: -39px;
        padding: 0px;
    }
    .hamburger {
        /* margin-top: -45px; */

        color: #18183f;
        display: block;
        cursor: pointer;
        padding-right: 13px;
    }
    /* Show menu when toggled */
    .show-menu {
        display: flex !important;
    }

    /* Assuming you have a contact button or link with class "contact-link" */
    .nav-links li.contact-link {
        order: -1; /* Place before auth buttons when menu is active*/
    }

    .auth-buttons {
        order: 0; /* Place after contact link when menu is active*/
    }
    
}

@media (max-width: 550px) {
    .auth-buttons button {
        width: 15%;
        font-size: 13px;
        margin-left: -44px;
        padding: 0px;
    }
}


@media (max-width: 442px) {
    .auth-buttons button {
        width: 22%;
        font-size: 13px;
        margin-left: -48px;
        padding: 0px;
    }
}
@media (max-width: 340px) {
    .auth-buttons button {
        width: 26%;
        font-size: 13px;
        margin-left: -48px;
        padding: 0px;
    }
}

@media (max-width: 440px) {
    .logo img {
        /* margin-top: -39px; */
        margin-left: -21px;
        height: 184px;
    }
    .hamburger {
        /* margin-top: -41px; */
        color: #18183f;
        display: block;
        cursor: pointer;
        padding-right: 13px;
    }
}














body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.hero {
    margin-top: 84px;
    background:#4353B7;
    color: white;
    width: 100%;
    padding: 50px 20px;
    padding-bottom: 34px;
    padding-top: 57px;
}

h1, h2 {
    font-size: 29px;
    color: #fff9f9;
    margin-bottom: 44px;
    margin-top: 8px;
}

.steps, .features, .cta {
    padding-top: 40px;
    background: white;
    padding-bottom: 40px;
}

.hero p{
    margin-top: -19px;
    font-size: 20px;
}

.step, .feature {
    display: inline-block;
    width: 250px;
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgb(222 217 219);
    transition: transform 0.3s ease;
}

.step:hover, .feature:hover {
    transform: translateY(-5px);
}

.step img, .feature img {
    margin-top: 9px;
    width: 212px;
    height: 240px;
    margin-bottom: 3px;
}

.step h3 {
    padding: 15px;
    color: black;
    font-family: math;
}
.step p {
    font-family: cursive;
    font-weight: 500;
    font-size: 13px;
    color: black;
}

.feature h3 {
    color: black;
    font-family: math;
    padding: 13px;
}

.feature p {
    font-family: cursive;
    font-weight: 500;
    font-size: 13px;
    color: #111010;
}
.btn {
    color: #007bff;
    background: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #2367ca;
    color: #ddd;
}

.cta p{
    padding-bottom: 7px;
    font-family: math;
}

.features{
    background-color: white;
}
/* Responsive Design */
@media (max-width: 768px) {
    .step, .feature {
        width: 90%;
        display: block;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-bottom: 34px;
        padding-top: 57px;
        
    }
    
    .cta button {
        padding: 12px 25px;
        font-size: 16px;
    }
}
/* FAQ Section */

#faq {
    background: #ffffff;
    padding: 40px 0;
    text-align: center;
    width: 100%;
}

.faq h2 {
    /* padding-top: 40px; */
    /* margin-top: 22px; */
    text-align: center;
    margin-bottom: 35px;
    font-size: 26px;
    color: #121010;
    font-weight: bold;
}


/* FAQ Item - Full Width */
.faq-item {
    width: 100%;
    max-width: 1000px;
    margin: 8px auto;
    background: #060606;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #ffffff;
    color: #545151;
    border: none;
    padding: 18px 21px;
    font-size: 16px;
    cursor: pointer;
    font-family: ui-sans-serif;
    outline: none;
    transition: background 0.3sease;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    /* font-weight: 500; */
}

.faq-question:hover {
    background: #e2e6ea;
}

/* Dropdown Icon */
.icon {
    font-size: 9px;
    transition: transform 0.3sease;
}

/* FAQ Answer (Initially Hidden) */
.faq-answer {
    display: none;
    padding: 10px 18px;
    font-family: "Verdana", sans-serif;
    font-size: 14px;
    color: #555;
    background: #ffffff;
}

/* Rotate Icon when Active */
.faq-item.active .icon {
    transform: rotate(180deg);
}

/* Active Class */
.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-item {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .faq h2 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 14px;
        padding: 10px 14px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 10px 14px;
    }
}



















footer {
    background-color: #f8f8f8;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-quick,
.footer-support,
.footer-services,
.footer-contact {
    flex: 1 1 200px;
    padding: 20px;
}

.footer-quick h2,
.footer-support h2,
.footer-services h2,
.footer-contact h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color:#4353B7;
    font-weight: 600;
}

.footer-quick ul,
.footer-support ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-quick li,
.footer-support li,
.footer-services li {
    margin-bottom: 8px;
}

.footer-quick a,
.footer-support a,
.footer-services a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-quick a:hover,
.footer-support a:hover,
.footer-services a:hover {
    color: #0056b3;
}

.footer-contact p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.footer-contact .social-icons {
    margin-top: 20px;
}

.footer-contact .social-icons a {
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-contact .social-icons a.fa-instagram {
    color: #E1306C; /* Instagram color */
}

.footer-contact .social-icons a.fa-facebook {
    color: #1877F2; /* Facebook color */
}

.footer-contact .social-icons a.fa-linkedin {
    color: #0A66C2; /* LinkedIn color */
}

.footer-contact .social-icons a.fa-twitter {
    color: #1DA1F2; /* Twitter/X color */
}

.footer-contact .social-icons a:hover {
    opacity: 0.8; /* Slightly fade on hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9em;
    color: #777;
}

.footer-bottom a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-quick,
    .footer-support,
    .footer-services,
    .footer-contact {
        width: 100%;
        text-align: center;
    }

    .footer-contact .social-icons {
        justify-content: center;
    }
}









.barcode-importance {
    padding: 50px 20px;
    text-align: center;
    background-color:white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin: 30px auto;
    max-width: 1200px;
    margin-bottom: 28px;
}

/* ... rest of your CSS ... */

.barcode-importance h2 {
    color: #4353B7;
    font-size: 3.0rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.barcode-importance h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    height: 3px;
    width: 60px;
    background-color: #007bff; /* Highlight color */
}

.barcode-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 30px auto;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

.barcode-image {
    max-width: 40%;
    margin-right: 75px;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.barcode-image {
    max-width: 40%;
    margin-right: 77px;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}
.barcode-text {
    text-align: left;
    max-width: 50%;
}

.barcode-text h3 {
    color: #b14f2e;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.barcode-text p {
    font-family: cursive;
    color: #555;
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 10px;
}
.barcode-text ul {
    list-style-type: disc;
    margin-left: 25px;
    color: #555;
}

.barcode-text ul li {
    margin-bottom: 5px;
    color: #373232;
    font-family: cursive;
    word-spacing: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .barcode-content {
        flex-direction: column; /* Stack image and text on smaller screens */
    }

    .barcode-image, .barcode-text {
        max-width: 90%;
        margin-left: 10px;
        margin: 20px auto;
    }

    .barcode-image {
        margin-right: 0;
    }

    .barcode-importance h2 {
        font-size: 2rem;
    }

    .barcode-text h3 {
        font-size: 1.6rem;
    }
}











.container {
    width: 380px;
    margin-top: 200px;
    margin-bottom: 87px;
}

@media (max-width: 525px) {
.container {
    width: 290px;
    margin-top: 200px;
    margin-bottom: 87px;
}
}