.landing-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

.left-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.logo-card {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 30px;
}

.logo-left {
    width: 80px;
}

.user-logo-left {
    width: 50px;
}

.logo-right {
    font-size: 65px;
    font-weight: bold;
    bottom: 4px;
    position: relative;

}

.user-logo-right {
    font-size: 40px;
    position: relative;
    top: 3px;
}

.logo-right span {
    color: var(--primary-color);
}

.login-card {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.login-left {
    width: 280px;
}

/* .logo-card {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.logo-left {
    width: 40px;
}

.user-logo-left {
    width: 40px;
}

.logo-right {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    bottom: 3px;
} */

.user-logo-right {
    font-size: 40px;
    position: relative;
    top: 3px;
}

.logo-right span {
    color: var(--primary-color);
}

.nav-list a {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.button-2 {
    padding: 6px 12px !important;
    font-size: 15px !important;
}

/*Icon Section*/
.icon-section {
    position: relative;
}

.bg-icon {
    position: absolute;
    width: 90px;
}

.bg-icon-1 {
    left: 15%;
    top: 20%;
    rotate: 10deg;
}

.bg-icon-2 {
    right: 15%;
    bottom: 20%;
    rotate: -10deg;
}

.bg-icon-3 {
    right: 20%;
    top: 20%;
    rotate: 10deg;
    width: 50px;
}

.bg-icon-4   {
    left: 20%;
    bottom: 20%;
    rotate: -10deg;
    width: 50px;
}

.bg-icon-5  {
    left: -25px;
    bottom: 45%;
    rotate: 50deg;
    width: 50px;
}

.bg-icon-6 {
    right: -25px;
    top: 45%;
    rotate: 50deg;
    width: 50px;
}

/*Main Section*/

.main-section {
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 0px 0 60px 0;
}
.bg-white {
    background-color: white;
}

.box-section {
    background-color: white;
    padding: 50px 30px;
    max-width: 85%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.tagline-div {
    display: inline-flex;
    flex-direction: row;
    border-radius: 30px;
    border: 1px solid rgb(196, 190, 186);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px -1.6px;
    padding-right: 24px;
    margin-bottom: 35px;
    gap: 10px;
}
.tagline-logo {
    border-radius: 50%;
    border: 1px solid rgb(196, 190, 186);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px -1.6px;
    padding: 5px;
}
.tagline-logo img{
    width: 30px;
    bottom: 5px;
    position: relative;
}

.tagline {
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
}

.main-section h3 {
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.main-section p {
    font-size: 18px;
    font-weight: 400px;
    color: rgb(14, 14, 15);
    text-align: center;
    margin-top: 16px;
}

.box-section p {
    max-width: 800px;
    /* margin: auto */
}
.button-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.main-button {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: auto;
    height: auto;
    padding: 7px 20px;
    border: 2px solid var(--primary-color);
    color: #FFFFFF;
    background-color: var(--primary-color);
    border-radius: 6px 2px 6px 2px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.main-button:hover {
    background-color: var(--primary-color-dark);
}

.main-button-1 {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: auto;
    height: auto;
    padding: 7px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: #FFFFFF;
    border-radius: 6px 2px 6px 2px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.main-button-1:hover {
    background-color: var(--primary-color-dark);
    color: #FFFFFF;
}

.main-button-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    border: none;
    color: #FFFFFF;
    background-color: var(--primary-color);
    border-radius: 6px 2px 6px 2px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.main-button-2:hover {
    background-color: var(--primary-color-dark);
    
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

@keyframes fadeUpBounce {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    60% {
      opacity: 1;
      transform: translateY(-10px); /* Goes slightly above the final position */
    }
    100% {
      transform: translateY(0); /* Settles back down */
    }
  }
  
  .fade-bounce {
    opacity: 0; /* Start hidden */
    animation: fadeUpBounce 1s ease-out forwards;
  }
  


/*Card 1 Style*/
.cards-1 {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.card-1 {
    margin-top: 15px;
    padding: 0 15px;
    max-width: 260px;
}

.card-1-content {
    padding: 48px 24px;
    border-radius: 10px;
    background-color: var(--body-color) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.card-1-img {
    width: 80px;
    margin-bottom: 12px;
}

.card-1-img i {
    font-size: 40px;
    color: var(--primary-color);
}

.card-1-content h5 {
    font-weight: bold;
}

.card-1-content p {
    color: gray;
    font-size: 16px;
}

.c-gray {
    color: gray !important;
}


/*Contact Section*/
.contact-section {
    max-width: 90%;
    margin: auto;
    text-align: center;
    /* padding: 0 0 50px 0; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-section h3 {
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    font-weight: 400px;
    color: rgb(14, 14, 15);
    text-align: center;
    margin-top: 16px;
    max-width: 700px;
}

.contact-box {
    background-color: white;
    padding: 48px;
    border-radius: 15px;
    margin-bottom: 80px;
}

.contact-box p {
    color: gray;
    text-align: start;
    font-size: 15px;
}
/*Contact form*/
.form-control {
    margin-bottom: 16px !important;
    /* padding: 16px !important; */
    /* height: 48px !important; */
}

input, select {
    height: 48px !important;
}

/*Card 2 Style*/
.cards-web-2 {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.card-web-2 {
    margin-top: 20px;
    padding: 0 15px;
    /* max-width: 300px; */
    flex: 1;
}

.card-web-2-content {
    padding: 20px 32px;
    border-radius: 10px;
    background-color: white;
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
    gap: 20px;
    /* width: 300px; */
}

.card-web-2-img {
    width: 70px;
    height: 70px;
    background-color: var(--body-color);
    border-radius: 10px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-web-2-img img {
    width: 60px;
}
.card-web-2-img {
    font-size: 30px;
    color: var(--primary-color);
}

.card-web-2-content h5 {
    font-weight: bold;
    text-align: start;
    margin-bottom: 5px;
}

.card-web-2-content p {
    color: gray;
    font-size: 16px;
    margin: 0;
    text-align: start;
}

.reach-us {
    margin: auto;
    max-width: 700px;
}

.copy-right {
    padding: 10px;
    text-align: center;
}


/*Request demo pop up*/
.demo-div {
    padding: 50px;

}

.demo-svg {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .demo-svg, .demo-from {
    flex: 1;
} */

.system {
    width: 500px;
    animation: zoom-in-zoom-out 8s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.05, 1.05);
    }

    100% {
        transform: scale(1, 1);
    }
}

textarea {
    height: auto !important;
}

/*Mobile Responsive Style*/

@media only screen and (max-width: 600px) {
    .nav-list {
        display: none;
    }

    .bg-icon {
        display: none;
    }

    .main-section {
        padding: 50px 15px 60px 15px;
    }

    .main-section h3 {
        font-size: 40px;
    }
    
    .box-section{
        margin-left: 15px;
        margin-right: 15px;
        max-width: 100%;
        margin-bottom: 50px;
    }

    .box-section h3{
        font-size: 30px;
    }

    .card-1 {
        max-width: 100%;
    }

    .contact-section h3 {
        font-size: 40px;
    }

    .contact-section p {
        font-size: 17px;
    }

    .contact-box {
        margin-bottom: 50px;
        padding: 20px;
    }

    .cards-web-2 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .card-web-2-content {
        padding: 20px;
    }

    .card-web-2-content h5 {
        font-size: 16px;
    }

    .card-web-2-content p {
        font-size: 14px;
    }

    .demo-div {
        padding: 20px;
    }
}