@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
/* Global Styles */
*{
    font-family: 'Geist', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #ffffff;
    max-width: 1500px;
    scroll-behavior: smooth;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 90px; /* Ensure a fixed height */
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 30px;
    background: white;
    /* box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); */
    position: fixed;
}

.logo {
    height: 25px;
    width: 131px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color:rgba(102, 112, 133, 1);
    font-weight: 500;
}

.nav a:hover {
    color: #6a0dad;
}

.buttons {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease-in-out;
}

.primary {
    width: 209px;
    height: 56px;
    background-color: rgba(75, 6, 135, 1);
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}
.primary:hover {
    background-color: #350364;
}
.secondary {
    width: 127px;
    height: 56px;
    background-color: rgba(26, 26, 26, 1);
    color: #ffffff;
    text-align: center;
}

.secondary:hover {
    background-color: #0a0118;
    color: white;
    /* border: 1px solid black; */
}
.left-side{
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-right: 50px;
}

.barcode{
    width: 56px;
    height: 56px;
    border: 1px solid grey;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Add cursor pointer to indicate clickable area */
    outline: 0.5px solid transparent; /* Initial outline color */
    transition: outline-color 0.3s ease; 
    
}
.barcode img{
    width: 24px;
}

/* Mobile Menu */
.mobile-nav {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    flex-direction: column;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 60px;
    right: 15%;
    width: 250px;
    padding: 0;
    border-radius: 15px;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}


.mobile-nav a{
    display: grid;
    text-align: start;
    color: rgba(11, 13, 18, 1);
    padding: 12px 10px;
    text-decoration: none;
    font-weight: 300;
}

/* Toggle Button Animation */
.menu-toggle {
    display: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
    background: none;
}
.menu-toggle i{
    font-size: 30px;
    font-weight: 200;
}

.menu-toggle.active {
    transform: rotate(90deg);
}


.mobile-nav .btn {
    width: 90%;
}

.barcode_code{
    display: none;
    position: fixed;
    top: 13%;
    right: 1.5%;
    z-index: 1900;
}

.main {
    margin-top: 5rem;
    padding-inline: 1rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    height: 637px;
}


/* Overlay for reducing background opacity */
.main::before {
    content: '';
    position: absolute;
    height: 100%;
    width: calc(100% - 4rem);
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%) ;
    background: url(images/a\ woman\ on\ a\ laptop.jpeg) ;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1; /* Adjust for desired transparency */
    z-index: -1; /* Keeps it behind the content */
    border-radius: 3rem;
}


/* Dark overlay */
.main::after {
    content: '';
    position: absolute;
    height: 100%;
    width: calc(100% - 4rem);
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4); /* Adjust for darkness */
    z-index: -1; /* Keeps it behind the content but above the image */
    border-radius: 3rem;
}


.text-content {
    flex: 1;
    max-width: 800px;
    text-align: start;
    justify-content: center;
    padding: 15rem 5rem;
    display: grid;
   
}

.text-content h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
}

.text-content p {
    color: #666;
    margin-top: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 25px;
}

.content_btn{
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.content_btn1{
    height: 56px;
    width: 246px;
    border-radius: 16px;
    color: #ffffff;
    border: 1px solid rgba(208, 211, 217, 1);
    background-color: rgba(208, 211, 217, 0.3);
    transition: all 0.4s ease-in-out;

}
.content_btn1:hover{
    background-color: rgba(79, 79, 80, 0.3);

}

.content_btn2{
    height: 56px;
    width: 155px;
    border-radius: 16px;
    color: #ffffff;
    border: 1px solid rgba(75, 6, 135, 1);
    background-color: rgba(75, 6, 135, 1);
    transition: all 0.4s ease-in-out;

}
.content_btn2:hover{
    background-color: rgb(33, 2, 61);
    border: 1px solid rgb(33, 2, 61);
}

section{
    padding: 3rem 2rem;
}
                            /* the why choose us part */
.content2{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content2 h2{
    font-size: 40px;
    font-weight: 600;
    color: rgba(11, 13, 18, 1);
}
.content2 p{
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.choose_option{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: space-between;
    gap: 20px;
    padding-top: 60px;
    max-width: 1200px;
    width: 100%;
}
.option_card{
    max-width: 411px;
    height: 293px;
    background-color: rgba(240, 241, 243, 1);
    border-radius: 16px;
    transition: all 0.5s ease;
}
.option_card:hover{
    background-color: rgba(75, 6, 135, 1);
    color: #ffffff;
}
.option_card img{
    padding: 40px;
}
.option_details{
    padding: 0.4rem 3rem;
    margin-top: -20px;
}
.option_details p{
    letter-spacing: 0.5px;
    text-align: start;
}
.option_details h4{
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
}
                                    /* how it works part */
.content3{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem 4rem;
}
.content3_details{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 70px;
    max-width: 1200px;
}
.content_3img{
    max-width: 628px;
}
.content_3img img{
    max-width: 500px;
    border-radius: 16px;
}
.content_3texts{
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 500px;
    color: rgba(11, 13, 18, 1);
    max-width: 500px;
}
.content3_topic h2{
    font-size: 40px;
    font-weight: 600;
}
.content3_body{
    padding-left: 20px;
}
.content3_topic p{
    font-size: 16px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
}
.content3_body h3{
    font-size: 19px;
    font-weight: 600;
    color: rgba(11, 13, 18, 1);
}
.content3_body p{
    font-size: 16px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
}
                            /* the services we offer part in the landing page */
.content4{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content4_details .top_text{
    margin-bottom: 30px;
    text-align: center;
}
.top_text h1{
    font-size: 40px;
    font-weight: 600;
    color: rgba(11, 13, 18, 1);
}
.top_text p{
    font-size: 16px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 1px;
}
.services{
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.services_card {
    max-width: 341px;
    height: 300px;
    border-radius: 20px;
    align-items: flex-start;
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.services_card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity for darkness */
    top: 0;
    left: 0;
    border-radius: 20px;
}
.services_card .service-card-texts{
    position: relative;
    z-index: 5;
}
.services_card h4{
    font-size: 19px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 0.5rem;
}
.services_card p{
    font-size: 14px;
    font-weight: 400;
    text-align: start;
    /* color: rgb(225, 227, 233); */
    color: rgba(255, 255, 255, 0.8);
    line-height: 20px;
    /* letter-spacing: 0.7px; */
}
.services_card:first-child{
    background-image: url(images/image\ 10.\ copypng.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.services_card:nth-child(2){
   background-image: url(images/image\ 14.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.services_card:nth-child(3){
    background-image: url(images/image\ 14.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.services_card:nth-child(4){
    background-image: url(images/image\ 15.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.services_card:nth-child(5){
    background-image: url(images/image\ 16.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.services_card:nth-child(6){
    background-image: url(images/image\ 17.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.content5{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.content5 h1{
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(11, 13, 18, 1);
}
.content5 p{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(102, 112, 133, 1);
}
.faq_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1100px;
}

.faq_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1100px;
}

/* Frequently Asked Questions Part */
.faq_question {
    background-color: rgba(240, 241, 243, 1);
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 30px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    cursor: pointer; /* Add cursor pointer to indicate clickable area */
}

.faq_answer {
    background-color: rgb(255, 254, 254);
    margin-top: -20px; /* Initially hide the answer */
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 0; /* Initially hide the answer */
    opacity: 0; /* Initially hide the answer */
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease; /* Smooth transition */
}
.faq_answe p{
    font-size: 15px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
}

                                    /* the footer for all pages */
.footer {
    background-color: rgba(0, 0, 0, 1);
    color: #ccc;
    padding: 40px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer_column2{
    display: flex;
}
.footer div {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}
.footer h3{
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.5px;
}

.footer :is(a, p){
    color:rgba(102, 112, 133, 1);
    text-decoration: none;
    display: block;
    margin: 20px 0;
}
.footer a:hover {
    color: #fff;
}
.footer .social-icons {
    display: flex;
    gap: 10px;
    margin-top: -20px;
}
.social-icons a {
   margin: 20px 0 0 0 ;
}
.social-icons a i {
    font-size: 27px;
    color: rgba(255, 255, 255, 1);
 }
.footer-bottom {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #333;
    font-size: 14px;
    margin-top: -40px;
    color: #fff;
}

                                    /*THE ABOUT PAGE STYLING*/
/* About Page Styling */
.about_top {
    margin-top: 0;
    isolation: isolate;
    padding: 10px;
    overflow: hidden;
    height: 637px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: flex-start;
}

.about_top::before {
    content: '';
    position: absolute;
    height: 80%;
    width: calc(100% - 4rem);
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(images/sunset.jpeg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
    border-radius: 2rem;
}

.about_top::after {
    content: '';
    position: absolute;
    height: 80%;
    width: calc(100% - 4rem);
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    border-radius: 2rem;
}
.about_toptext{
    color: white;
    max-width: 800px;
    padding: 5rem 5rem;
    margin-top: 10rem;
    display: grid;
}
.about_toptext h1{
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}
.about_toptext p{
    font-size: 16px;
    font-weight: 400;
}

.about_texts {
    max-width: 1200px;
    margin: 0 auto;
}

.about_texts h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about_texts p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* contact us page */
.contact_page{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6%;
    padding: 20px;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.contact-form-section {
    flex: 1;
    padding: 40px;
}
.contact-form-section h2 {
    margin-bottom: 20px;
    font-size: 27px;
    color: #3A006D;
}
.contact-form-section p{
    font-size: 16px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
}
.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    padding: 20px ;
    margin: 10px 0;
    border: none;
   outline: 1px #4B0082;
    border-radius: 5px;
    background-color: #e7e5e5;
}
.contact-form-section button {
    width: 100%;
    padding: 10px;
    background: #3A006D;
    ;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form-section button:hover {
    background: #19012e;
}
.contact-info-section {
    background: #3A006D;
    color: white;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
.contact-info-section p {
    margin: 5px 0;
}




                    /* sign-in page styling */


.sign_up{
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
    background-color: rgb(238, 238, 238) ;
    gap: 20px;
    min-height: 100vh;  /* Ensures it always covers the full screen */
    height: auto;  
    position: relative;
}
.sign_up img{
    max-width: 143px;
}

.login-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 477px;
    width: 90%;
    margin-bottom: 10px;
    /* height: 100%; */
    /* height: 430px; */
    text-align: center;
    position: relative; /* Ensures child elements are positioned relative to this */
    overflow: hidden; /* Prevents any overflow */
}

.login-container .form-top {
    display: grid;
    gap: 5px;
    margin: 5px 0 20px 0;
    position: relative; /* Keeps text above the image */
    z-index: 2; /* Ensures text is above the background image */
}

.login-container::before {
    content: '';
    position: absolute;
    top: 4px; 
    left: 50%;
    transform: translateX(-50%);
    width: 98%; 
    height: 9rem; 
    background: url('images/Rectangle\ 1.png');
    background-position: center;
    background-size: contain;
    object-fit: cover;
    background-repeat: no-repeat;
    z-index: 1; 
    opacity: 1; 
}
.form-top h2 {
    color: rgba(11, 13, 18, 1);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-top p {
    color: rgba(102, 112, 133, 1);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

form {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 10px;
}
form p, input::placeholder{
    color: rgba(102, 112, 133, 1);
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

 form label {
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 16px;
    margin-bottom: 6px;
    margin-left: 6px;
}

#email, #password {
    padding: 10px;
    border: 1.5px solid #cccccc;
    border-radius: 16px;
    height: 56px;
    outline: #350364;         
     /*  ⚠️ outline is set to none you can chage it as you prefer 
    or whenever there is an error message style it to red if necessary*/
    width: 100%;
    transition: all 0.9s ease-in-out;
}

/*  ⚠️this is the input field outline when the user clicks on it */
#email:focus, #password:focus{
    border-color: #350364;
}


.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.left{
    margin: 10px 0 ;
    gap: 5px;
    display: flex !important;
}

.remember-forgot a{
    text-decoration: none;
    color: rgba(75, 6, 135, 1);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.9s ease-in-out;
}
.remember-forgot a:hover{
    text-decoration: underline;
}
#remember{
    width: 16px;
    outline: none;
}

.form-btn {
    background-color: #4B0082;
    color: white;
    padding: 18px 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 16px;
    font-size: 16px;
    width: 100%;
}

.form-btn:hover {
    background-color: #3A006D;
}

.register {
    margin-top: 15px;
    margin-left: 20%;
}

.register a {
    color: #4B0082;
    text-decoration: none;
    font-weight: bold;
}

.register a:hover {
    text-decoration: underline;
}

.password_container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

input[type="password"] {
    width: 100%;
    padding-right: 40px; /* Space for the eye icon */
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #aaa;
}

.eye-icon:hover {
    color: #333;
}
    /* styling for the forgot password page */



    /* ⚠️⚠️⚠️this is the notification bar at the fogot password page 
    (set display to none to make it invisible --- and display flex to make it visible )*/
.notification_bar{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    max-width: 320px;
    width: 100%;
    border-radius: 20px;
    padding: 10px;
    background: rgba(230, 247, 239, 1);
    right: 7%;
    top: 4%;
    position: absolute;
    z-index: 200;
}
.notification_content{
    display: flex;
    gap: 10px;
}
.checked img{
    width: 50px;
}
.notification_message{
    max-width: 230px;
    width: 100%;
    padding-bottom: 5px;
}
.notification_message h3{
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    letter-spacing: 0.5px;
}
.notification_message p{
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(102, 112, 133, 1);
}
.cancel_icon i{
    font-size: 25px;
    font-weight: 400;
}
.name_field{
    display: flex;
    gap: 40px;
    justify-content: space-between;
}














/* Responsive Design */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
    .option_details{
        margin-top: -45px;
    }
    .footer {
    display: flex;
    flex-direction: column;
    }
    
 /* for tablet devices */
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .side{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
      
    }
    .barcode{
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }
    .barcode_code{
        top: 8%;
        right: 1.3rem;
    }
    .left-side{
        display: flex;
        gap: 20px;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center them properly */
        gap: 10px; /* Reduce the gap */
        padding-right: 0; /* Remove extra spacing */
    }

    .nav,
    .buttons {
        display: none;
    }
    .mobile-nav.active {
        max-height: 1000px; /* Adjust based on content */
        opacity: 1;
        padding: 10px;
        position: fixed;
        z-index: 1000;
    }
    .secondary a, .primary a{
        text-align: center !important;
        color: #ffffff !important;
    }
   

    .menu-toggle {
        display: flex;

    }
    .menu-toggle i{
        color: rgba(102, 112, 133, 1);
        font-size: 30px;
    }

    .main {
        flex-direction: column;
        text-align: center;
    }
    .option_details{
        margin-top: -30px;
    }
    .content3_details{
        flex-direction: column;
    }
    .content_3img img{
        max-width: 500px;
       
    }
    .content_3texts{
        max-width: 700px;
    }
    .services {
        grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
    }
    .services_card {
        height: 280px; /* Slightly reduced height for smaller screens */
    }


    /* about page */
    .about_texts{
        padding: 0 30px;
    }



    /* for the signup page */
    .sign_up{
        padding: 20px;
    }
    .login-container {
        width: 80%; /* Increases width for better fit */
        padding: 1.5rem;
        margin-bottom: 10px;
    }
    .form-top h2 {
        font-size: 24px; /* Slightly smaller text */
    }
    .form-top p {
        font-size: 14px;
    }
    
}



@media (max-width: 978px) {
    .option_details{
        margin-top: -30px;
    }
    .option_details h4{
        line-height: 25px;
    }
}


@media (max-width: 480px) {
    .main::before, .main::after, .about_top::after, .about_top::before{
        border-radius: 0;
        width: 100%;
        height: 550px;
        top: 32%;
    }
    .about_toptext{
        color: white;
        max-width: 800px;
        padding: 3rem 4rem;
        margin-top: 5rem;
        display: grid;
    }
    .main, .about_top{
        height: 550px;
    }
    .about_texts h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .about_texts {
        max-width: 360px;
    }
    .text-content{
        width: auto;
        padding: 4rem 1rem !important;

    }
    .barcode_code{
        top: 13%;
        right: 1.3rem;
    }
    .barcode_code img{
        width: 7rem;
    }
    .text-content h1 {
        font-size: 30px;
        width: 80%;
    }
    .text-content p{
        width: 80%;
        font-size: 12px;
    }
    .content_btn{
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 300px;
        margin-top: 10px;
    }
    .content_btn2{
        width: 130px; 
        height: 50px;
    }
    .content_btn1{
        height: 50px;
        width: 150px;
    }
    .left-side{
        flex-direction: row; /* Stack items vertically */
        align-items: center; /* Center them properly */
        gap: 10px; /* Reduce the gap */
        padding-right: 0; /* Remove extra spacing */
    }

    .image-content img {
        max-width: 100%;
    }
    .side{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .content_3img img{
        max-width: 300px;
    }
    .top_text h1{
        font-size: 30px;
    }
    .services {
        grid-template-columns: 1fr; /* One column on mobile */
    }
    .services_card {
        height: 250px; /* Slightly smaller height for mobile */
    }
    .content5 h1{
        font-size: 2rem;
      
    }
    
.footer_column2{
display: grid;
grid-template-columns: repeat(2, 2fr);
  }
  .footer{
  padding: 15px;
  }


       /* about page */
       .about_texts{
        padding: 0 10px;
    }

    /* LOGIN PAGE STYLING */
    .login-container {
        width: 100%; 
        padding: 1rem;
    }
    .login-container::before {
        height: 6.5rem;   
    }

    .form-top h2 {
        font-size: 22px; /* Smaller heading */
    }
    .form-top p {
        font-size: 14px;
    }
    input {
        font-size: 14px; /* Adjusts input text size */
    }
    .form-btn {
        font-size: 14px;
        padding: 12px 10px;
    }
    form{
        margin-top: -15px;
        /* padding-right: 30px; */
    }
    #remember{
        width: 13px;
    }
    .remember-forgot :is(a, p){
        display: flex;
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }
    
    form p{
        font-size: 13px;
    }
    .name_field{
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: space-between;
    }

    
}
    
}
@media (max-width: 490px){
    .footer_column2{
display: grid;
grid-template-columns: repeat(2, 2fr);
  }
}
@media (max-width: 660px){
    .text-content {
        padding: 10rem 3rem;
    }
    section{
        padding: 1rem 2rem;
    }
}