* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto', sans-serif;        
    font-size: 14px;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
  }

  a {
        all: unset;        
        cursor: pointer; /* Optional: keeps the clickable behavior */
    }
  
  @media only screen and (max-width: 1600px) {
    /* For mobile phones: */
    *{
      font-size: 12px;
    }
  }
  
  @media only screen and (max-width: 1000px) {
    /* For mobile phones: */
    *{
      font-size: 10px;
    }
  }
  
  
  html, body { height: 100%; }
  body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }
  
    :root{    
      --ColorPrimary:#EAA63E;
    }

input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  input[type="number"] {
    -moz-appearance: textfield;
  }


.desktopHeader {
    position: fixed;
    width: 100%;
    padding: 1.5rem 12rem 1.5rem 12rem;
    background-color: #fff;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.desktopHeader .headerLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 8rem;
}
.desktopHeader .headerLeft .logoSection {
    width: 12rem;
    height: 3.5rem;
}
.desktopHeader .headerLeft .logoSection img {
    width: 100%;
    height: 100%;
}
.desktopHeader .headerLeft nav ul {
    list-style: none;
    list-style-type: none;
}
.desktopHeader .headerLeft nav li {
    display: inline;
    padding: 1.5rem;
    font-size: 1.2rem;
}
.desktopHeader .headerLeft nav li:hover {
    color: var(--ColorPrimary);
    cursor: pointer;
    text-decoration-line: overline;
}
.desktopHeader .headerRight {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
.desktopHeader .headerRight p {
    font-size: 1.4rem;
    text-wrap: nowrap;
    color: var(--ColorPrimary);

    a{
        text-decoration: none;
    }
}
.desktopHeader .headerRight p:hover {
    background-color: #f5ca7c;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
    border-radius: 1.5rem;
}
.desktopHeader .headerRight .btn {
    background-color: var(--ColorPrimary);
    color: #fff;
    padding: 1rem;
    border: none;
    text-wrap: nowrap;
    border-radius: 1.5rem;
}
.desktopHeader .headerRight .btnsansback {
    background-color: #fff;
    color: var(--ColorPrimary);
    border: 1px solid var(--ColorPrimary);
}
.desktopHeader .headerRight .btn:hover {
    cursor: pointer;
    font-weight: 600;
}
.mobileHeader {
    width: 100%;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: relative;
    z-index: 9;
    border-bottom: 1px solid #ddd;
}
.mobileHeader .headerLeft .logoSection {
    width: 12rem;
    height: 3.5rem;
}
.mobileHeader .headerLeft .logoSection img {
    width: 100%;
    height: 100%;
}
.mobileHeader .headerRight i {
    font-size: 3rem;
    color: var(--ColorPrimary);
}
.mobileHeader .menuList {
    width: 100%;
    position: absolute;
    background-color: #fff;
    padding: 1rem;
    top: 5rem;
    left: 0;
    border-top: 1px solid #ddd;
    display: none;
}
.mobileHeader .menuList ul {
    list-style: none;
    list-style-type: none;
}
.mobileHeader .menuList li {
    padding: 1.5rem;
    font-size: 1.2rem;
}
.mobileHeader .menuList li:hover {
    color: var(--ColorPrimary);
    cursor: pointer;
    text-decoration-line: overline;
}
.mobileHeader .menuList .buttonSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;

    p{
        a{
            text-decoration: none;
        }
    }
}
.mobileHeader .menuList .buttonSection .btn {
    background-color: var(--ColorPrimary);
    color: #fff;
    padding: 1rem;
    border: none;
    text-wrap: nowrap;
    border-radius: 1.5rem;
    width: 100%;
}


.mobileHeader .headerRight{
    #mnuHide{
        display: none;
    }
}

.mobileHeader .menuList .buttonSection .btnsansback {
    background-color: #fff;
    color: var(--ColorPrimary);
    border: 1px solid var(--ColorPrimary);
    width: 100%;
}
.mobileHeader .menuList .buttonSection .btn:hover {
    cursor: pointer;
    font-weight: 600;
}
.mobileHeader .menuList.show {
    display: block;
}
.sidebodyContainer {
    background-color: #f5f2f2;
    width: 100%;
    padding: 4rem 10rem 4rem 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
    z-index: 10;
}
.sidebodyContainer h1 {
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
}
.sidebodyContainer h2 {
    font-size: 2rem;
    font-weight: 400;
    padding: 4rem;
    text-align: center;
}
.sidebodyContainer .inputGrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 40rem;
    text-align: center;
    background-color: var(--ColorPrimary);

}
.sidebodyContainer .inputGrp .grpLeft {
    width: 70%;
    border: 2px solid var(--ColorPrimary);
}

.sidebodyContainer .inputGrp .grpLeft input {
    width: 100%;
    padding: 1rem;
    border: none;
}
.sidebodyContainer .inputGrp .grpRight {
    width: 30%;
}
.sidebodyContainer .inputGrp .grpRight .btn {
    border: none;
    padding: 1rem;
    width: 100%;
    background-color: var(--ColorPrimary);
    color: #fff;
    font-size: 1.2rem;
}
.sidebodyContainer .inputGrp .grpRight .btn:hover {
    cursor: pointer;
}
.sidebodyContainer .videoDiv {
    margin-top: 4rem;
}
.sidebodyContainer .videoDiv {
    width: 50vw;
    height: 60vh;
}
.simplifyContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 5rem 10rem 5rem 10rem;
    flex-wrap: wrap;
}
.simplifyContainer .contentLeft {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.simplifyContainer .contentLeft h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--ColorPrimary);
}
.simplifyContainer .contentLeft h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 2rem;
}
.simplifyContainer .contentLeft p {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #546078;
}
.simplifyContainer .contentLeft ul {
    list-style: none;
    list-style-type: none;
}
.simplifyContainer .contentLeft ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1rem;
}

.simplifyContainer .contentLeft ul li p {
    flex: 1;
    font-size: 1.3rem;
    color: #546078;
    font-weight: 300;
}

.simplifyContainer .contentLeft ul li p::before {
    content: url('assets/images/download.svg');
    display: inline-block;
    margin-right: 10px; /* Adjust spacing between image and text */
    vertical-align: middle;
    width: 30px; /* Set the image width */
    height: auto; /* Maintain aspect ratio */
}

.simplifyContainer .contentRight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 2.5rem;
}
.simplifyContainer .contentRight .svgDiv {
    width: 100%;
    height: 100%;
}
.simplifyContainer .contentRight .svgDiv:hover {
    cursor: pointer;
}
.schemesContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 5rem 10rem 5rem 10rem;
    flex-wrap: wrap;
}
.schemesContainer .contentLeft {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.schemesContainer .contentLeft h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--ColorPrimary);
}
.schemesContainer .contentLeft h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 2rem;
}
.schemesContainer .contentLeft p {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #546078;
}
.schemesContainer .contentLeft ul {
    list-style: none;
    list-style-type: none;
}
.schemesContainer .contentLeft ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1rem;
}

.schemesContainer .contentLeft ul li p {
    flex: 1;
    font-size: 1.3rem;
    color: #546078;
    font-weight: 300;
}

.schemesContainer .contentLeft ul li p::before {
    content: url('assets/images/download.svg');
    display: inline-block;
    margin-right: 10px; /* Adjust spacing between image and text */
    vertical-align: middle;
    width: 30px; /* Set the image width */
    height: auto; /* Maintain aspect ratio */
}

.schemesContainer .contentRight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 2.5rem;
}
.schemesContainer .contentRight .svgDiv {
    width: 100%;
    height: 100%;
}
.modulesContainer {
    width: 100%;
    margin-top: 5rem;
    background-color: #f5f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 10rem 5rem 10rem;
    flex-wrap: wrap;
}
.modulesContainer h2 {
    font-size: 2.5rem;
    font-weight: 500;
}
.modulesContainer p.header {
    font-size: 1.6rem;
    font-weight: 350;
    margin: 1rem;
    text-align: justify;
}
.modulesContainer .boxesContainer {
    display: flex;
    margin: 1rem;
    column-gap: 2rem;
    flex-wrap: nowrap;
}
.modulesContainer .boxesContainer .box {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding: 2rem;
}
.modulesContainer .boxesContainer .box p.header {
    font-size: 1.8rem;
    font-weight: 500;
}
.modulesContainer .boxesContainer .box p.text {
    font-size: 1.2rem;
    font-weight: 300;
}
.cashflowContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 5rem 10rem 5rem 10rem;
    flex-wrap: wrap;
}
.cashflowContainer .contentLeft {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.cashflowContainer .contentLeft h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--ColorPrimary);
}
.cashflowContainer .contentLeft h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 2rem;
}
.cashflowContainer .contentLeft p {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #546078;
}
.cashflowContainer .contentLeft ul {
    list-style: none;
    list-style-type: none;
}
.cashflowContainer .contentLeft ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1rem;
}

.cashflowContainer .contentLeft ul li p {
    flex: 1;
    font-size: 1.3rem;
    color: #546078;
    font-weight: 300;
}

.cashflowContainer .contentLeft ul li p::before {
    content: url('assets/images/download.svg');
    display: inline-block;
    margin-right: 10px; /* Adjust spacing between image and text */
    vertical-align: middle;
    width: 30px; /* Set the image width */
    height: auto; /* Maintain aspect ratio */
}

.cashflowContainer .contentRight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 2.5rem;
}
.cashflowContainer .contentRight .svgDiv {
    width: 100%;
    height: 100%;
}
.cashflowContainer .contentRight .svgDiv:hover {
    scale: 1.5;
    transition: 1s;
}
.repledgeContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 5rem 10rem 5rem 10rem;
    flex-wrap: wrap;
}
.repledgeContainer .contentLeft {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.repledgeContainer .contentLeft h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--ColorPrimary);
}
.repledgeContainer .contentLeft h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 2rem;
}
.repledgeContainer .contentLeft p {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #546078;
}
.repledgeContainer .contentLeft ul {
    list-style: none;
    list-style-type: none;
}
.repledgeContainer .contentLeft ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1rem;
}

.repledgeContainer .contentLeft ul li p {
    flex: 1;
    font-size: 1.3rem;
    color: #546078;
    font-weight: 300;
}

.repledgeContainer .contentLeft ul li p::before {
    content: url('assets/images/download.svg');
    display: inline-block;
    margin-right: 10px; /* Adjust spacing between image and text */
    vertical-align: middle;
    width: 30px; /* Set the image width */
    height: auto; /* Maintain aspect ratio */
}

.repledgeContainer .contentRight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 2.5rem;
}
.repledgeContainer .contentRight .svgDiv {
    width: 100%;
    height: 100%;
}
.mobileappContainer {
    width: 100%;
    background-color: var(--ColorPrimary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}
@keyframes smooth-appear {
    to {
        opacity: 1;
   }
}
.mobileappContainer img {
    width: 20vw;
    border-radius: 2rem;
    opacity: 0;
    animation: smooth-appear 5s ease forwards;
}
.mobileappContainer .loans {
    position: absolute;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 20%;
    animation: loans-appear 2s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .loans .loan {
    background-color: var(--ColorPrimary);
    border-radius: 50%;
    width: 9.5rem;
    height: 9.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .loans .loan .innerLoan {
    background-color: #fff;
    border-radius: 50%;
    width: 8.5rem;
    height: 8.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .loans .loan .innerLoan p {
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
}
.mobileappContainer .loans p {
    color: var(--ColorPrimary);
}
@keyframes loans-appear {
    to {
        left: 30%;
   }
}
.mobileappContainer .recents {
    position: absolute;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    bottom: 20%;
    animation: recents-appear 4s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .recents .recent {
    background-color: var(--ColorPrimary);
    border-radius: 50%;
    width: 9.5rem;
    height: 9.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .recents .recent .innerrecent {
    background-color: #fff;
    border-radius: 50%;
    width: 8.5rem;
    height: 8.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .recents .recent .innerrecent p {
    font-weight: 500;
    font-size: 1.2rem;
    text-align: center;
}
.mobileappContainer .recents p {
    color: var(--ColorPrimary);
}
@keyframes recents-appear {
    to {
        left: 30%;
   }
}
.mobileappContainer .graphs {
    position: absolute;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: #fff;
    right: 0;
    top: 20%;
    animation: graphs-appear 2s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .graphs .graph {
    background-color: var(--ColorPrimary);
    border-radius: 50%;
    width: 9.5rem;
    height: 9.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .graphs .graph .innergraph {
    background-color: #fff;
    border-radius: 50%;
    width: 8.5rem;
    height: 8.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .graphs .graph .innergraph p {
    font-weight: 500;
    font-size: 1.2rem;
    text-align: center;
}
.mobileappContainer .graphs p {
    color: var(--ColorPrimary);
}
@keyframes graphs-appear {
    to {
        right: 30%;
   }
}
.mobileappContainer .customers {
    position: absolute;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: #fff;
    right: 0;
    bottom: 20%;
    animation: graphs-appear 4s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .customers .customer {
    background-color: var(--ColorPrimary);
    border-radius: 50%;
    width: 9.5rem;
    height: 9.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .customers .customer .innercustomer {
    background-color: #fff;
    border-radius: 50%;
    width: 8.5rem;
    height: 8.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobileappContainer .customers .customer .innercustomer p {
    font-weight: 500;
    font-size: 1.2rem;
    text-align: center;
}
.mobileappContainer .customers p {
    color: var(--ColorPrimary);
}
@keyframes customers-appear {
    to {
        right: 30%;
   }
}
.everySizeContainer {
    width: 100%;
    height: 100%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    row-gap: 6rem;
    align-items: center;
    justify-content: center;
}
.everySizeContainer .heading h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 2rem;
    text-align: center;
}
.everySizeContainer .boxes {
    display: flex;
    width: 60%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.everySizeContainer .boxes .Box {
    background-color: #f8fafc;
    width: 15rem;
    height: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    row-gap: 1rem;
    padding: 1rem;
}
.everySizeContainer .boxes .Box img {
    width: 60%;
    height: 60%;
    border-radius: 50%;
}
.everySizeContainer .boxes .Box p {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}
.everySizeContainer .boxes .Box:hover img {
    scale: 1.3;
    transition: 500ms;
    cursor: pointer;
}
.automationContainer {
    width: 100%;
    height: 100%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    row-gap: 6rem;
    align-items: center;
    justify-content: center;
    background-color: #eeeff1;
}
.automationContainer h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 2rem;
    text-align: center;
}
.automationContainer ul {
    display: flex;
    width: 100%;
    padding: 5rem;
    align-items: center;
    justify-items: center;
    list-style: none;
    list-style-type: none;
}
.automationContainer ul li {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    row-gap: 1rem;
    padding: 1rem;
}
.automationContainer ul li p.caption {
    width: 60%;
    height: 60%;
    font-size: 4rem;
    color: var(--ColorPrimary);
}
.automationContainer ul li p.text {
    font-size: 1.25rem;
    font-weight: 400;
}
.automationContainer ul .Box:hover img {
    scale: 1.3;
    transition: 500ms;
    cursor: pointer;
}
.testimonialsContainer {
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2.5rem;
}
.testimonialsContainer h1 {
    font-size: 2.5rem;
    font-weight: 800;
}
.testimonialsContainer ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 1rem;
    height: 100%;
}
.testimonialsContainer ul li {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 2rem;
    width: 40%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}
.testimonialsContainer ul li p.name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ColorPrimary);
}
.testimonialsContainer ul li p.company {
    font-size: 1.2rem;
    padding-top: 0.895rem;
}
.testimonialsContainer ul li p.desc {
    font-style: italic;
    padding-top: 1rem;
}
.testimonialsContainer ul li hr {
    margin-top: 0.7rem;
    width: 10%;
}
.testimonialsContainer .testiRows {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2.5rem;
}
.testimonialsContainer .testiRows .testirow {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.testimonialsContainer .testiRows .testirow .testimonial {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 2rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}
.testimonialsContainer .testiRows .testirow .testimonial p.name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ColorPrimary);
}
.testimonialsContainer .testiRows .testirow .testimonial p.company {
    font-size: 1.2rem;
    padding-top: 0.895rem;
}
.testimonialsContainer .testiRows .testirow .testimonial p.desc {
    font-style: italic;
    padding-top: 1rem;
}
.testimonialsContainer .testiRows .testirow .testimonial hr {
    margin-top: 0.7rem;
    width: 10%;
}

.featureMain{
    margin: 8rem ;
    padding: 5rem;
    border-radius: 2rem;
    
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(240, 226, 203, 1) 100%, rgba(134, 206, 117, 1) 100%, rgba(237, 221, 83, 1) 100%);

    h1{
        font-size: 2.5rem;
        text-align: center;
    }
    h2{
        font-size: 1.3rem;
        font-weight: 400;
        padding: 1rem;
        line-height: 1.5rem;        
    }
    p{
        font-size: 1.3rem;
        line-height: 2rem;
        padding: 1rem;
    }

    .desc{
        display: flex;
        img{
            width: 25%;
        }
        p{
            width: 75%;
        }
    }
}

.featuresList{
    display: flex;
    flex-direction: row;
    padding: 5rem;
    margin-top: 8rem;

    .contentLeft{
        display: flex;
        flex-direction: column;
        width: 50%;

        h3{
            font-size: 1.5rem;
            text-transform: uppercase;
            color: var(--ColorPrimary);
        }
        h2{
            font-size: 3rem;
            font-weight: 800;
            margin-top: 2rem;
        }

        p{
            font-size: 1.5rem;            
            margin-top: 2rem;
            color: #546078;
        }

        ul{
            list-style: none;
            list-style-type: none;        
            li{
                display: flex;
                flex-direction: row;
                align-items: center;
                column-gap: 1rem;

                /* img{
                    flex: 0;
                } */

                p{
                    
                    font-size: 1.3rem; 
                    color: #546078; 
                    font-weight: 300;
                }

                p::before {
                    content: url('assets/images/download.svg');
                    display: inline-block;
                    margin-right: 10px; /* Adjust spacing between image and text */
                    vertical-align: middle;
                    width: 30px; /* Set the image width */
                    height: auto; /* Maintain aspect ratio */
                }
            }
        }
    }

    .contentRight{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
        padding: 2.5rem;
        .svgDiv{
            width: 100%;
            height: 100%;
        }
        .svgDiv:hover{
            cursor: pointer;            
        }
    }
}

footer{
    width: 100%;    
    background-color: var(--ColorPrimary);
    
    display: flex;
    flex-direction: column;
    padding: 1.5rem 12rem 1.5rem 12rem;

    .content{
        display: flex;
        flex-direction: row;    
        justify-content: center;
        column-gap: 2rem;
        .contentLeft{
            width: 50%;
            h1{
                font-size: 2.5rem;
                color: #fff;
                padding: 1rem;
            }

            p{
                font-size: 1.2rem;
                color: #fff;
                text-align: justify;
            }
        }

        .contentRight{                        
            width: 50%;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            column-gap: 1rem;

            .links{
                width: 50%;
                display: flex;
                flex-direction: column;
                row-gap: .8rem;
                

                h1{
                    font-size: 2rem;
                    color: #fff;
                }

                ul{
                    list-style: none;
                    list-style-type: none;

                    li{
                        padding: .5rem;
                        a{
                            font-size: 1.2rem;
                            color: #fff;
                        }
                    }
                }
            }

            .contact{
                width: 50%;
                
                row-gap: .8rem;

                h2{
                    font-size: 2rem;
                    color: #fff;
                    padding-bottom: 1rem;
                }

                p{
                    font-size: 1.3rem;
                    color: #fff;
                    margin-bottom: 1rem;
                }

                .social{
                    
                    column-gap: .5rem;
                    i{
                        color: #fff;
                        font-size: 2.5rem;
                    }

                    i:hover{
                        transform: scale(1.5);
                        transition: 500ms;
                        cursor: pointer;
                    }
                }
            }
        }
    }

    hr{
        margin: 2rem;
    }
    p{
        font-size: 1.5rem;
        color: #fff;
    }
}

.aboutusContainer{
    padding: 10rem 10rem 5rem 10rem;
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    .contentLeft{
        display: flex;
        flex-direction: column;
        width: 50%;

        h3{
            font-size: 1.5rem;
            text-transform: uppercase;
            color: var(--ColorPrimary);
        }
        h1{
            font-size: 3.5rem;
            font-weight: 800;
            margin-top: 2rem;
            
        }

        p{
            font-size: 1.5rem;            
            margin-top: 2rem;
            color: #546078;
            text-align: justify;
        }

        ul{
            list-style: none;
            list-style-type: none;        
            li{
                display: flex;
                flex-direction: row;
                align-items: center;
                column-gap: 1rem;

                p{
                    flex: 1;                
                    font-size: 1.3rem; 
                    color: #546078; 
                    font-weight: 300;
                }

                p::before {
                    content: url('assets/images/download.svg');
                    display: inline-block;
                    margin-right: 10px; /* Adjust spacing between image and text */
                    vertical-align: middle;
                    width: 30px; /* Set the image width */
                    height: auto; /* Maintain aspect ratio */
                }
            }
        }
    }


    .contentRight{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
        padding: 5.5rem;

        .svgDiv{
            width: 100%;
            height: 100%;
        }
    }

    button{
        width: 50%;
        border-radius: 9999px;
        padding: 1rem;
        margin: 1rem;
        border: none;
        background-color: var(--ColorPrimary);
        color: #fff;
    }
}


.aboutusMilestone{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 15rem 2rem 15rem;
    text-align: center;
    background-color: #F8F9FB;

    h1{
        font-size: 2.5rem;
        font-weight: bolder;
    }

    ul{
        list-style: none;
        list-style-type: none;
        display: flex;
        flex-direction: row;        
        align-items: center;
        justify-content: center;
        column-gap: 1rem;
        row-gap: 1rem;
        flex-wrap: wrap;

        li{
            flex: 0 0 40%; 
            background-color: #fff;
            padding: 3rem;
            min-height: 15rem;
            max-height: 15rem;

            p.caption{
                font-size: 5rem;
                font-weight: 500;
                color: var(--ColorPrimary);                
            }
            p.desc{
                font-size: 1.5rem;
            }
        }
    }
}

.pricingContainer{
    display: none;
    width: 100%;
    height: 100%;
    margin-top: 5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2rem;

    
        h1{
            font-size: 2.5rem;
            font-weight: 450;
        }
        
        h2{
            font-size: 1.5rem;
            font-weight: 400;
        }

    .priceTabs{
        display: flex;
        align-items: center;        
        width: 100%;
        justify-content: space-evenly;
        background-color: #fff;
        flex-wrap: wrap;
        row-gap: 3rem;

        .priceTab{
            box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
            padding: 6rem;
            border-radius: 1rem;

            p.version{
                font-size: 1.7rem;
                font-weight: 500;
            }

            p.rate{
                font-size: 3.5rem;
                font-weight: 400;
                padding: 1rem;
                color: var(--ColorPrimary);
            }

            p.desc{
                font-size: 1.3rem;
                margin-top: -1rem;
            }

            p.optional{
                font-size: 1.2rem;
                margin-top: 1rem;
            }   

            ul.custom-bullets {
                list-style: none;
                padding-top: 1.5rem;
                margin: 0;

                li{
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    padding-top: 1rem;
                    column-gap: 1rem;
                    i.yes{
                        font-size: 1.75rem;
                        color: green;
                    }
                    i.no{
                        font-size: 1.75rem;
                        color: rgb(214, 107, 107);
                        opacity: .6;
                    }
                    p{
                        font-size: 1.2rem;
                    }
                    p.no{
                        text-decoration: line-through;
                        color: #a8a5a5;
                    }
                    

                }
              }
          

        }
    } 
}

.contactSalesContainer{
    padding: 10rem 10rem 5rem 10rem;
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    .contentLeft{
        width: 50%;        
        display: flex;
        flex-direction: column;

        h1{
            font-size: 2rem;
            color: black;            
            font-weight: bold;
            padding: 1rem;
        }

        h2{
            font-size: 1.2rem;
            padding: 1rem;
        }

        .chipContainer{
             display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;

            .chipBox{
                 flex: 0 0 48%; /* two boxes per row with some gap */
                background: #f2f2f2;
                padding: 20px;
                box-sizing: border-box;
                border-radius: 2rem;
                padding: 2rem;

                /* flex: 0 0 48%; 
                background-color: #f3eeee;
                border-radius: 10px;
                display: flex;
                flex-direction: column;
                padding: 2rem;
                margin: 1rem;
                */
                p{
                    font-size: 1.4rem;
                    margin-top: 1rem;
                    color: #546078;
                } 
            }
        }

        .chipContainer > .chipBox:only-child,
        .chipContainer > .chipBox:nth-last-child(1):nth-child(odd) {
            grid-column: span 2;
        }
    }

    .contentRight{
        width: 50%;
        padding: 20px;

         input,select {
            width: 100%;
            padding: 12px 14px;
            margin-bottom: 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
            box-sizing: border-box;
            outline: none;
            }

             input:focus,
             select:focus {
                border-color: var(--ColorPrimary);
            }

             button {
            padding: 12px;
            background-color: var(--ColorPrimary);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            }

             button:hover {
            background-color: #4a0072;
            }

             h2 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: bold;
            line-height: 1.4;
            }
    }

}

.keralaContainer{
    padding: 10rem 10rem 5rem 10rem;
    margin-top: 3rem;
    
    h1{
        font-size: 2rem;
    }
    p{
        font-size: 1.2rem;
    }

    h2{
        font-size: 1.4rem;
    }

    section{
        margin: 1rem; padding: 1rem;
    }

    ol, ul{
        li{
            padding: .8rem;
            font-size: 1.2rem;
        }
    }

    table{
        width: 100%;
        th,td{
            padding: 1rem;
            border-color: #ddd;
        }
    }

}
@media only screen and (max-width: 1024px) {
    .desktopHeader {
        display: none;
   }
    .mobileHeader {
        display: flex;
   }
    .sidebodyContainer {
        padding: 2rem 2rem 2rem 2rem;
        margin-top: 0;
   }
    .sidebodyContainer h1 {
        font-size: 2.5rem;
   }
    .sidebodyContainer h2 {
        font-size: 2rem;
        font-weight: 400;
        text-align: justify;
   }
    .sidebodyContainer .inputGrp {
        width: 30rem;
        background-color: var(--ColorPrimary);
   }
    .sidebodyContainer 
    .inputGrp .grpRight {
        width: 30%;
   }
    .sidebodyContainer .inputGrp .grpRight .btn {
        border: none;
        padding: 0.87rem;
        width: 100%;
        background-color: var(--ColorPrimary);
        color: #fff;
        font-size: 1.2rem;
   }
    .sidebodyContainer .videoDiv {
        width: 80vw;
        height: 30vh;
   }
    .simplifyContainer {
        padding: 1.5rem;
   }
    .simplifyContainer .contentLeft, .simplifyContainer .contentRight {
        width: 100%;
   }
    .schemesContainer {
        padding: 1.5rem;
   }
    .schemesContainer .contentLeft, .schemesContainer .contentRight {
        width: 100%;
   }
    .modulesContainer {
        padding: 1.5rem;
   }
    .modulesContainer .boxesContainer {
        row-gap: 2rem;
        flex-wrap: wrap;
   }
    .modulesContainer .boxesContainer .box {
        width: 100%;
   }
    .cashflowContainer {
        padding: 1.5rem;
   }
    .cashflowContainer .contentLeft, .cashflowContainer .contentRight {
        width: 100%;
   }
    .repledgeContainer {
        padding: 1.5rem;
   }
    .repledgeContainer .contentLeft, .repledgeContainer .contentRight {
        width: 100%;
   }
    .mobileappContainer {
        padding: 1.5rem;
   }
    .mobileappContainer .loans, .mobileappContainer .recents, .mobileappContainer .graphs, .mobileappContainer .customers {
        display: none;
   }
    .mobileappContainer img {
        border-radius: 1rem;
   }
    .everySizeContainer .boxes {
        row-gap: 2rem;
   }
    .automationContainer ul {
        width: 100%;
        padding: 0;
        flex-wrap: wrap;
   }
    .automationContainer ul li p.caption {
        font-size: 2rem;
   }
    .testimonialsContainer .testiRows {
        flex-wrap: wrap;
   }
    /* .pricingContainer {
        display: none;
   }
    .pricingContainer .priceTabs {
        flex-wrap: wrap;
   } */
    footer .content {
        flex-direction: column;
        row-gap: 2rem;
   }
    footer .content .contentLeft, footer .content .contentRight {
        width: 100%;
   }

   .aboutusContainer{
        margin-top: 0;
        padding: 2rem;
        flex-wrap: wrap;

        .contentLeft, .contentRight{
            width: 100%;
        }
    }

    .contactSalesContainer{
        flex-wrap: wrap;
        row-gap: 2rem;
        .contentLeft, .contentRight{
            width: 100%;
        }
    }

    .aboutusMilestone{
        width: 100%;
        padding: 0;

        ul{
            li{
                flex: 0 0 100%;
                margin: .5rem;
            }
        }
    }
}
