@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-overflow-scrolling: touch; 
}

img {
    user-select: none!important;      
    pointer-events: none!important;  
    -webkit-user-drag: none!important;
}

::-webkit-scrollbar {
    border: 1px solid #ccc;
    width: 10px; 
  }
  
  ::-webkit-scrollbar-track {
    background: auto; 
  }
  
  ::-webkit-scrollbar-thumb {
    background: #2387F7; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #1a6dc3;
  }
  
  * {
    scrollbar-color: #2387F7 auto; 
    scrollbar-width: 10px; 
  }

/* Header */

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 90px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    transition: box-shadow 0.3s ease;
    z-index: 999;
}

header.scrolled {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

.lefthead p {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #525252;
}
.lefthead p span {
    color: #2387F7;
}

.righthead a {
    text-decoration: none;
    list-style: none;
    font-size: 17px;
    font-weight: 400;
    color: #525252;
    padding-right: 30px;
    transition: all 250ms;
}

.lasthead a {
    text-decoration: none;
    list-style: none;
    background: #2387F7;
    border-radius: 10px;
    padding: 12px 24px 12px 24px;
    color: #fff;
}
.lasthead a:hover {
    background: #1a6dc3;
}


/* End Header */


/* Hero */

.hero {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 90px 0px 90px;
}
.heroleft {
    width: 50%;
}
.heroright {
    width: 50%;
}
/* .zatcalogotxt {
    display: flex;
    align-items: center;
}
.zatcalogotxt p {
    font-size: 40px;
    font-weight: 700;
    color: #414141;
    line-height: 0.9;
    padding-left: 10px;
}
.zatcalogotxt p span {
    color: #2488F7;
} */
.heroleft h2 {
    font-size: 50px;
    font-weight: 800;
    color: #272727;
    padding: 20px 0px 0px 0px;
}

.heroleft h2 span {
    color: #2387F7;
}
.heroleftpara {
    color: #46474B;
    font-size: 17px;
    font-weight: 400;
    padding-top: 20px;
    margin-bottom: 40px;
}
.herobuttons {
    display: flex;
    justify-content: left;
    align-items: center;
}
.herobuttons a {
    list-style: none;
    text-decoration: none;
    background-color: #2387F7;
    color: #fff;
    padding: 15px 40px 15px 40px;
    border-radius: 10px;
    box-shadow: #000 0px 20px 30px -10px;
    transition: all 250ms;
}
.herobuttons a:hover {
    transform: translateY(-5px);
    background-color: #1a6dc3;
}
.herobuttons a:last-child {
    background-color: transparent;
    border: 1px solid #272727;
    color: #272727;
    font-weight: bold;
    margin-left: 20px;
}



.heroright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; 
}
.image-container {
    position: relative;
    width: 100%; 
    height: 0;
    padding-top: 100%; 
    overflow: hidden;
}
  
.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    animation-iteration-count: infinite;
}
  
  .s1 {
    animation: rotateClockwise 9s linear infinite;
  }
  
  .s2 {
    animation: rotateAntiClockwise 9s linear infinite;
  }
  
  .s3 {
    animation: rotateClockwise 9s linear infinite;
  }
  
  .s4 {
    animation: rotate3D 9s linear infinite;
    z-index: 1; 
  }
  
  @keyframes rotateClockwise {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotateAntiClockwise {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-360deg);
    }
  }
  
  @keyframes rotate3D {
    from {
      transform: rotateX(0deg) rotateY(0deg);
    }
    to {
      transform: rotateX(0deg) rotateY(260deg);
    }
  }


/* Hero End */

/* Web Dashboard */

 .webdashboard {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -90px;
 }
 .webdashboard img {
    max-width: 100%;
 }

/* End Web Dashboard */

.compdigi {
    font-size: 48px;
    font-weight: 700;
    color: #414141;
    text-align: center;
    margin-top: -80px;
}

.compdigi span {
    color: #2387F7;
}

/* Datases Erps */
.erps-databases {
    width: 100%;
    padding: 0px 30px 0px 90px;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    align-items: center;
}
.erps-databases-left {
    width: 50%;
}
.erps-databases-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #414141;
}
.erps-databases-left h2 span {
    color: #2387F7;
}
.erps-databases-left p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    padding-top: 20px;
}
.erps-databases-left a {
    background-color: #2387F7;
    padding: 12px 40px;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    list-style: none;
    box-shadow: #000 0px 20px 30px -10px;
    transition: all ease 250ms;
    font-size: 20px;
}
.erps-databases-left a:hover {
    transform: translateY(-5px);
    background-color: #1a6dc3;
}
.erps-databases-right {
    width: 50%;
}
.erps-databases-right img {
    max-width: 100%;
}
.erps-databases-right {
    display: flex;
    justify-content: left;
}
/* End Databased Erps */


.othserv {
    width: 100%;
    display: flex;
    justify-content: center;
}
.othserv h2 {
    color: #2B2B2B;
    font-size: 40px;
    font-weight: 700;
    border-bottom: 1px solid #DCD8D8;
    padding-bottom: 8px;
    padding-top: 70px;
}
.othserv h2 span {
    color: #2387F7;
}

/* Digital Solutions */

.digitalsolutions {
    width: 100%;
    padding-inline: 150px;
    /* margin-top: -80px; */
}

.solution-subhead {
    margin-top: 40px!important;
}
.solution-subhead1 {
    margin-top: 10px!important;
}

.e-invoising-solution p {
    font-size: 36px;
    font-weight: 700;
    color: #414141;
    text-align: center;
    padding-top: 10px;
}
.e-invoising-solution p span {
    color: #2488F7;
}
.invoicing-main {
    display: flex;
    justify-content: space-evenly;
    padding-top: 30px;
    margin-bottom: 50px;
}
.invoicing-left h2 {
    font-size: 30px;
    font-weight: 700;
    color: #414141;
    text-align: left;
}
.invoicing-left p {
    font-size: 17px;
    font-weight: 400;
    text-align: justify;
}
.invoicing-right h2 {
    font-size: 30px;
    font-weight: 700;
    color: #414141;
    text-align: left;
    
}
.invoicing-right p {
    font-size: 17px;
    font-weight: 400;
    text-align: justify;
}
.invoicing-left, .invoicing-right {
    background-color: #FBFBFB;
    border-radius: 2px;
    border: 2px solid #fff;
    padding: 50px 50px;
    margin-inline: 20px;
    box-shadow: 0px 4px 24.6px 11px #651FFF24;
    transition: all 250ms;
    width: 50%;
}
.invoicing-left:hover, .invoicing-right:hover {
    transform: translateY(-10px);
}
.invoicing-btn {
    margin-top: 30px;
    display: flex;
    justify-content: right;
}

.invoicing-btn a, .invoicing-btn a {
    text-decoration: none;
    list-style: none;
    background-color: #2387F7;
    border-radius: 7px;
    color: #fff;
    padding: 13px 20px;
}
.invoicing-btn a:hover, .invoicing-btn a:hover {
    background-color: #1a6dc3;
}
/* .e-invoising-solution p:nth-child(1) {
    padding-top: 50px;
} */

.invo-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0px 10px 0px;
}
.invo-center a {
    background-color: #2387F7;
    box-shadow: #000 0px 20px 30px -10px;
    padding: 15px 20px;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    list-style: none;
    transition: all ease 250ms;
}
.invo-center a:hover {
    transform: translateY(-5px);
    background-color: #1a6dc3;
}


/* End Digital Solutions */

/* It Services */

.it-services-cont {
    width: 100%;
    padding: 30px 30px 0px 90px;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}
.services-left {
    width: 40%;
}
.services-left h2 {
    font-size: 45px;
    font-weight: 800;
    color: #0B0D0E;
}
.services-left h2 span {
    color: #2387F7;
}
.services-left p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    padding-top: 20px;
}
.services-left a {
    background-color: #2387F7;
    padding: 13px 20px;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    list-style: none;
    font-size: 16px;
    font-weight: 400;
    box-shadow: #000 0px 20px 30px -10px;
    transition: all ease 250ms;
}
.services-left a:hover {
    transform: translateY(-5px);
    background-color: #1a6dc3;
}
.services-right {
    width: 60%;
}
.services-right img {
    max-width: 100%;
}
.services-right {
    display: flex;
    justify-content: center;
}

/* End It Services */


/* Remote Attendance */
.remote-attendance {
    width: 100%;
    padding: 50px 30px 0px 90px;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    align-items: center;
}
.remote-left {
    width: 40%;
}
.remote-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #414141;
}
.remote-left h2 span {
    color: #2387F7;
}
.remote-left p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 50px;
}
.remote-left a {
    background-color: #2387F7;
    padding: 12px 27px;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    list-style: none;
    box-shadow: #000 0px 20px 30px -10px;
    transition: all ease 250ms;
}
.remote-left a:hover {
    transform: translateY(-5px);
    background-color: #1a6dc3;
}
.remote-right {
    width: 60%;
}
.remote-right img {
    max-width: 100%;
}
.remote-right {
    display: flex;
    justify-content: left;
}
/* End Remote Attendance */

/* What Choose */
.what-choose {
    width: 100%;
    padding-inline: 90px;
    text-align: center;
    margin-top: 100px;
    background: var(--what-choose-background);
    background-repeat: no-repeat;
    background-size: cover;
}
.what-choose h2 {
    font-size: 48px;
    font-weight: 700;
    color: #414141;
}
.whychoose-para {
    color: #333333;
    font-size: 20px;
    padding-top: 10px;
}
.whatchoose-contain {
    display: flex;
    justify-content: space-evenly;
    /* align-items: center; */
    margin-top: 30px;
}
.whatchoose-box {
    position: relative;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 9.9px 0px rgba(35, 135, 247, 0.5);
    width: 298px;
    height: 187px;
    cursor: pointer;
    transition: transform 0.3s ease-out;
}
.whatchoose-box:nth-child(2) {
    background-color: #414141;
    margin-top: 80px;
}
.whatchoose-box img {
    position: absolute;
    top: -25%; 
    left: 50%;
    transform: translate(-50%, 0);
}
.whatchoose-box p {
    color: #2387F7;
    font-size: 27px;
    font-weight: 700;
    padding-top: 60px;
}
.industry-experts {
    color: #fff!important;
    padding-top: 80px!important;
}
.whatchoose-box:hover {
    animation: hanging 1s infinite ease-in-out;
}

@keyframes hanging {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg); 
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-5deg); 
    }
    100% {
        transform: rotate(0deg); 
    }
}

/* End What Choose */

/* Why CHosse */
.why-choose {
    width: 100%;
    text-align: center;
    padding: 70px 0px 0px 0px;

}
.why-choose h3 {
    font-size: 32px;
    font-weight: 700;
    color: #414141;
    padding-top: 10px;
}
.why-choose h3 span {
    color: #2387F7;
}
.zatcalogoimg {
    position: relative;
    /* margin-top: 60px; */
    z-index: 99;
}
.zatcalogoimg img {
    max-width: 100%;
}
.why-choose img {
    max-width: 100%;
    margin-top: 30px;
}
/* End Why CHosse */


/* What our client says */

.whatourclient {
    width: 100%;
    padding-inline: 10px;
}
.whatourclient h2 {
    font-size: 48px;
    font-weight: 700;
    color: #414141;
    text-align: center;
}
.whatourclient h2 span {
    color: #2488F7;
}
.whatourmain {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}
.whatmainequal {
    position: relative;
    width: 35%;
    background: #ffffff;
    box-shadow: 0px 1.85px 3.15px 0px rgba(49, 49, 49, 0.0241);
    box-shadow: 0px 0px 6.52px 0px rgba(49, 49, 49, 0.0393);
    border: 1px solid #EDEDED;
    padding: 60px 30px 25px 30px;
    margin: 60px 10px;
    transition: all 250ms;
}
.whatmainequal:hover {
    transform: translateY(-10px);
}
.quotfortop {
    position: absolute;
    top: -10%; 
    left: 13%;
    transform: translate(-50%, 0);
}
.mainequalpara {
    color: #5C5F6E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    border-bottom: 1px solid #ccc;
    padding: 20px 0px;
}
.feedimgtext {
    display: flex;
    align-items: center;
    padding: 10px 0px 0px 0px;
}
.feedimgtext p {
    padding-left: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #453232;
}
.feedimgtext p span {
    font-size: 14px;
    color: #797979;
}




/* End What our client says */

/* Our SUpport */
.oursupport {
    width: 100%;
    padding: 20px 100px 0px 100px;
}
.oursupmain {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 20px;
}
.supmainbox {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 24px 0px #00000005;
    width: 206px;
    height: 109px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.supmainbox img {
    max-width: 100%;
}
/* End Our SUpport */


/* Contact Area */

.content-area {
    width: 100%;
    padding-inline: 100px;
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 90px;
}
.area-left {
    width: 50%;
}
.area-right {
    width: 50%;
}
.area-left h2 {
    color: #0B0B0BCF;
    font-size: 50px;
    font-weight: 700;
}
.area-left h2 span {
    color: #2488F7;
}
.iconandtext {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.iconandtext img {
max-width: 100%;
}
.iconandtext p {
    color: #0B0B0BCF;
    font-size: 18px;
    font-weight: 400;
    padding-left: 20px;
}
.area-right {
    padding-inline: 50px;
}
.interest-form {
    padding: 0px 20px 20px 20px;
    border-radius: 10px;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

label {
    display: inline-block;
    cursor: pointer;
}

input[type="radio"] {
    display: none;
}

input[type="radio"] + span {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: white;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

input[type="radio"] + span:hover {
    background-color: #2387F7;
    color: #fff;
    border: 1px solid #ccc;
}

input[type="radio"]:checked + span {
    background-color: #007bff;
    color: white;
    border-color: #000;
}

.contact-info label {
    display: block;
    margin: 10px 0;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-bottom: 1px solid #ccc!important;
    /* border-radius: 5px; */
}
.textbox {
    height: 100px;
    border: 1px solid #ccc!important;
    border-radius: 10px;
}

.formbtn {
    display: block;
    width: 100%;
    padding: 12px 0px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 41px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formbtn:hover {
    background-color: #0056b3;
}
/* End Contact Area */

/* Footer */

footer {
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    padding: 80px 70px 50px 0px;
    background: linear-gradient(180deg, #000000 0%, #202020 100%);
}
.foot-right-top {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 18px;
    padding-bottom: 30px;
    border-bottom: 1px solid #606582;
}
.foot-right-bottom {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 10px;
}
.footer-left {
    width: 16%;
}
.footer-right {
    width: 80%;
}
.social-icons a img {
    cursor: pointer!important;
    margin-left: 30px;
}
.address {
    display: flex;
    align-items: center;
    padding-left: 20px;
    white-space: nowrap;
}
.address p {
    padding-left: 10px;
}
.address p a {
    text-decoration: none;
    list-style: none;
    color: #fff;
}
.menus-foot a {
    text-decoration: none;
    list-style: none;
    color: #fff;
    padding-left: 10px;
}


.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-row {
    display: flex;
    justify-content: space-around;

}

.logo-row img {
    max-width: 250px; 
    max-height: 200px; 
    margin: 10px;
    object-fit: contain; 
}

/* Contact Form Popup */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.hidden {
    display: none;
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}


/* End Contact Form Popup */


/* Dark Mode */

.container {
    position: fixed;
    display: flex;
    flex-direction: column;
    z-index: 999;
    align-items: center;
    top: 0;
    left: 0;
    padding-left: 30px;
        }
        .rope {
            width: 4px;
            height: 80px;
            background-color: #555;
            position: relative;
            transition: height 0.3s ease;
        }
        .bulb {
            width: 39px;
            height: 50px;
            background-color: #333;
            border-radius: 50% 50% 45% 45%;
            position: relative;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            transition: background-color 0.5s ease, box-shadow 0.5s ease;
        }
        .bulb:hover {
            cursor: pointer;
        }
        .bulb::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 20px;
            background-color: #555;
            border-radius: 50%;
        }
        .bulb::after {
            /* content: ''; */
            position: absolute;
            top: 80%;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 10px;
            background-color: #444;
            border-radius: 5px;
        }
        .rope.stretched {
            height: 180px;
        }
        .bulb.on {
            background-color: #ffeb3b;
            box-shadow: 0 20px 50px rgba(255, 235, 59, 0.7);
        }


        .container-pullhere {
            position: fixed;
            display: flex;
            flex-direction: column;
            z-index: 998;
            align-items: center;
            top: 0;
            left: 0;
            padding-left: 85px;
            padding-top: 90px;
            }

        .container-pullhere img {
            width: 130px;
            animation: bounce 2s infinite ease-in-out;
        }


        @keyframes bounce {
            0%, 100% {
              transform: translateY(0);
            }
            50% {
              transform: translateY(-15px);
            }
          }


        
        :root {
            --background-light: #fff;
            --background-dark: #1f1f1f;
            --form-background: #fff;
            --text-light: #000;
            --text-dark: #fff;
            --link-hover-light: #2387F7;
            --link-hover-dark: #1a6dc3;
            --lasthead-light: #2387F7;
            --lasthead-dark: #1a6dc3;
            --bullet-light: #000;
            --bullet-dark: #3C3C3C;
            --bullet-active-light: #000;
            --bullet-active-dark: #fff;
            --border-active-dark: #fff;
            --padding-dark-top-bottom: 15px 15px; 
            --padding-dark-top: 80px 0px; 

        }
        body.light-mode {
            --background-color: var(--background-light);
            --text-color: var(--text-light);
            --link-hover-color: var(--link-hover-light);
            --lasthead-bg: var(--lasthead-light);
            --bullet-color: var(--bullet-light);
            --bullet-active-color: var(--bullet-active-light);
        }
        body.dark-mode {
            --background-color: var(--background-dark);
            --text-color: var(--text-dark);
            --text-color-light: var(--text-light);
            --form-back-col: var(--form-background);
            --link-hover-color: var(--link-hover-dark);
            --lasthead-bg: var(--lasthead-dark);
            --bullet-color: var(--bullet-dark);
            --bullet-active-color: var(--bullet-active-dark);
            --border-active-color: var( --border-active-dark);
            --padding-dark-top-bottom-dark: var(--padding-dark-top-bottom);
            --padding-dark-top-dark: var(--padding-dark-top);
        }

        
        
body {
    background-color: var(--background-color);
    color: var(--text-color);
}
body.dark-mode header {
    background-color: var(--background-color);
}
header .lefthead p {
    color: var(--text-color); /* Use dynamic text color */
}
header .righthead a {
    color: var(--text-color); /* Use dynamic text color */
}
.heroleft h2 {
    color: var(--text-color);
}
.heroleft p {
    color: var(--text-color);
}
.herobuttons a:nth-child(2) {
    color: var(--text-color);
    border-color: var(--border-active-dark);
}
.compdigi {
    color: var(--text-color);
}
.erps-databases-left h2, .e-invoising-solution p,
.services-left h2, .othserv h2, .remote-left h2, .what-choose h2,
.whychoose-para, .why-choose h3, .whatourclient h2, .area-left h2,
.iconandtext p {
    color: var(--text-color);
}
.invoicing-left p, .invoicing-right p, .interest-form h3 {
    color: var(--text-color-light);
}
.interest-form {
    background: var(--form-back-col);
}
.interest-form {
    padding: var(--padding-dark-top-bottom-dark);
}
.whatourclient {
padding-top: 80px;
}
/* Light Mode */
body.light-mode {
    --what-choose-background: url('assets/img/whatchoosevector.png');
}

/* Dark Mode */
body.dark-mode {
    --what-choose-background: url('assets/img/whatchoosevectordark.png');
}

body.light-mode .zatcalogoimg img {
    content: url('assets/img/zatcasmartlogo.png');
}

/* Dark mode image */
body.dark-mode .zatcalogoimg img {
    content: url('assets/img/zatcasmartlogodark.png');
}



@media only screen and (max-width: 786px) { 
    html, body {
        overflow-x: hidden; 
        overflow-y: auto;  
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .container {
        padding-left: 10px;
    }
    header {
        padding: 15px 15px;
        z-index: 9999;
    }
    .righthead {
        display: none;
    }
    .lefthead p {
        font-size: 25px;
    }
    .lasthead a {
        font-size: 15px;
        padding: 10px 20px 10px 20px;
    }
    .rope {
        height: 120px;
    }
    .hero {
        flex-direction: column;
        padding: 100px 0px;
    }
    .heroleft {
        width: 100%;
        padding-inline: 55px;
    }
    .heroright {
        width: 100%;
    }
    .container-pullhere {
        display: none;
    }
    .heroleft h2 {
        font-size: 28px;
    }
    .heroleftpara {
        font-size: 15px;
    }
    .herobuttons a {
        font-size: 12px;
        padding: 10px 12px 10px 12px;
    }
    .compdigi {
        margin-top: 0px;
        font-size: 28px;
    }
    .erps-databases {
        padding: 0px 15px 0px 15px;
        flex-direction: column;
    }
    .erps-databases-right {
        width: 100%;
    }
    .erps-databases-left {
        width: 100%;
    }
    .erps-databases-left h2 {
        font-size: 25px;
        padding-top: 20px;
    }
    .erps-databases-left p {
        font-size: 16px;
    }
    .erps-databases-left a {
        padding: 12px 30px;
        font-size: 15px !important;
    }
    .digitalsolutions {
        padding-inline: 15px;
    }
    .invoicing-main {
        flex-direction: column;
    }
    .invoicing-left, .invoicing-right {
        width: 100%;
        margin-inline: 0px;
        padding: 40px 20px;
        margin-bottom: 20px;
    }
    .invoicing-left h2 {
        font-size: 25px;
    }
    .it-services-cont {
        flex-direction: column;
        padding: 0px 15px 0px 15px;
    }
    .services-left {
        width: 100%;
    }
    .services-right {
        width: 100%;
        padding-top: 70px;
    }
    .services-left h2 {
        font-size: 32px;
    }
    .services-left p {
        font-size: 17px;
    }
    .services-left a {
        font-size: 15px!important;
        padding: 10px 15px;
    }
    .othserv h2 {
        font-size: 30px;
    }
    .e-invoising-solution p {
        font-size: 25px;
    }
    .invoicing-left p {
        font-size: 16px;
    }
    .invoicing-right h2 {
        font-size: 25px;
    }
    .invoicing-right p {
        font-size: 15px;
    }
    .invo-center a {
        font-size: 15px!important;
        padding: 10px 15px;
    }
    .remote-attendance {
        padding: 50px 15px 0px 15px;
        flex-direction: column;
        margin-top: 20px;
    }
    .remote-right {
        width: 100%;
    }
    .remote-left {
        width: 100%;
    }
    .remote-left h2 {
        font-size: 32px;
        padding-top: 50px;
    }
    .remote-left p {
        font-size: 16px;
        padding-top: 30px;
    }
    .remote-left a {
        font-size: 15px!important;
        padding: 10px 15px;
    }
    .what-choose {
        margin-top: 50px;
        padding-inline: 15px;
    }
    .what-choose h2 {
        font-size: 32px;
    }
    .whychoose-para {
        font-size: 18px;
    }
    .whatchoose-contain {
        flex-direction: column;
    }
    .whatchoose-box {
        width: 100%;
    }
    .whatchoose-box:nth-child(3) {
        margin-top: 80px;
    }
    .whatchoose-box:nth-child(1) {
        margin-top: 50px;
    }
    .whatourclient h2 {
        font-size: 32px;
    }
    .whatourmain {
        flex-direction: column;
    }
    .whatmainequal {
        width: 100%;
        margin: 30px 0px;
    }
    .mainequalpara  {
        font-size: 15px;
    }
    .oursupport {
        padding: 20px 15px 0px 15px;
    }
    .oursupmain {
        flex-wrap: wrap;
    }
    .supmainbox {
        width: 45%;
        margin: 5px;
    }

    footer {
        padding: 30px 10px 10px 10px;
        display: flex;
        flex-direction: column;
    }
    .footer-left {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
    }
    .foot-right-bottom {
        padding-top: 20px;
        flex-direction: column;
        align-items: self-start;
    }
    .menus-foot {
        padding-bottom: 30px;
    }
    .address {
        padding: 10px 0px;
    }
    .social-icons img {
        padding-left: 5px;
    }
    .social-icons {
        width: 40%;
    }
    .content-area {
        padding-inline: 15px;
        flex-direction: column;
        margin-top: 40px;
    }
    .area-left {
        width: 100%;
    }
    .area-right {
        width: 100%;
        padding-inline: 0px;
        margin-top: 50px;
    }
    .area-left h2 {
        font-size: 38px;
    }
    .popup {
        z-index: 99999;
    }
}