.banner__container {
    height: 100vh;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    overflow-y: hidden;
    background-color: rgb(255, 249, 242);
}
.banner__heading__for__animation {
    display: inline-block;
    font-size: 50px;
}
.banner {
    background-repeat: no-repeat;
    /* background: url("/assets/banner.png"); */
    background: url("../assets/banner.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    width: 100vw;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner__layerone {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(83, 168, 83, 0.318);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 76%);
    z-index: 0;
}

.banner__layertwo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 128, 0, 0.073);
    clip-path: polygon(32% 0, 100% 84%, 100% 100%, 90% 98%, 0 54%);
    z-index: 1;
}
.banner__layerthree {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 128, 0, 0.073);
    clip-path: polygon(49% 0, 100% 0, 100% 90%, 15% 98.5%);
    z-index: 1;
}


.banner__contents {
  position: absolute;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: white;
  z-index: 10;
  line-height: 30px;
  padding: 0px 5rem;
}
.banner__content__heading__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    line-height: 60px;
    font-size: 50px;
}
.banner_text-contents {
  flex: 1 1 0%;
}
.banner__hexagon__image {
  flex: 1 1 0%;
}

.banner__content__heading__container div {
    font-size: 0;
}

.banner__contents p {
  max-width: 700px;
  margin-bottom: 25px;
  text-align: left;
}
.promise__container {
    padding-top: 5rem;
    overflow: hidden;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    background-color: rgba(255, 249, 242, 0.073);
    position: relative;
}
.promise__background__bubble {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}
.green {
    background-color: #378a37; /* Deep, natural green */
    /* width: 9rem;
    height: 9rem; Balanced and earthy */
}

.red {
    background-color: #e35f5f; /* Warm, soft red */
    /* width: 10rem;
    height: 10rem;   */
}

.blue {
    background-color: #4747ef; /* Vibrant, saturated blue */
    /* width: 8rem;
    height: 8rem;   */
}

.orange {
    background-color: #f1b547; /* Warm sunset orange */
    /* width: 9.5rem;
    height: 9.5rem;   */
}

.purple {
    background-color: #9653d9;
    /* width: 11rem;
    height: 11rem; */
}

.promise__image {
    height: 50vh;

    display: flex;
    justify-content: center;
    align-items: center;
}
.promise__image img {
    object-fit: contain;
}

/* .promise__content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #494949;
} */

.promise__content p {
    margin: 25px 0;
    line-height: 30px;
    color: black;
    font-size: large;
    font-weight: bold;
}

/* .promise__content button {
    background-color: red;
} */

.promise__icons__container {
    display: flex;
    justify-content: space-around;
}

.promise__icon {
    height: 90px;
    width: 90px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    margin-bottom: 10px;
}

.promise__icon > img {
    object-fit: contain;
}

.promise__icon__texts {
    display: block;

    text-align: center;
    font-size: medium;
    font-weight: bold;
}

.promise__content button {
    margin-top: 30px;
}

.explore__service__container {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(255, 249, 242);
}
.explore__service__background__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: url("../assets/explore-services.png");
}
.explore__service__container h2.heading {
    margin-top: 8rem;
    background: -webkit-linear-gradient(90deg, #f5f5f5, #93a5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 10;
}

.explore__service__container p {
    margin-top: 20px;
    color: white;
    line-height: 30px;

    max-width: 500px;
    font-size: 18px;
    z-index: 10;
}
.explore__moreservice {
    position: absolute;
    bottom: 2rem;

    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    gap: 8px;

    transition-duration: 300ms;
    right: 50%;
    transform: translateX(50%);
}

.explore__moreservice svg {
    height: 1rem;
}

.explore__service__card__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
    z-index: 10;
}

.explore__service__card__container h4 {
    color: white;
    margin-top: 20px;
}

.explore__service__dark__layer {
    background-color: green;
    z-index: -10;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(100% 0, 100% 89%, 37% 96%, 0 87%, 0 13%);
}
.explore__service__light__layer {
    background-color: rgba(0, 128, 0, 0.352);
    z-index: -10;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(100% 23%, 100% 89%, 37% 96%, 0 100%, 0 0);
}

.workflow__container {
    background: url("../assets/workflow.jpg");
    background-position: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.workflow__container h2 {
    /* font-size: 2rem; */

    text-align: center;
    margin-top: 50px;
    /* font-weight: 900; */
    /* color: #494949; */
}
.workflow__card__overlap {
    position: sticky;
    top: 20%;
}
.workflow__cards__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    line-height: 18px;
    gap: 100px;
}
.workflow__card {
    position: relative;
    text-align: center;
    display: flex;

    flex-direction: column;
    align-items: center;
    font-size: small;
    border-radius: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #efefef;
}
.workflow__icon {
    position: absolute;
    border: 5px solid white;
    top: -35px;
    left: 0;
    z-index: 5;
    background-color: green;
    margin-left: 45%;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 50%;
}
.workflow__card h4 {
    margin-top: 2rem;
    font-size: large;
}
.workflow__image {
    height: 400px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}
.workflow__card p {
    font-size: 15px;
    color: #494949;
    width: 15rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.softwares__container {
    position: relative;
    background: url("../assets/where-expertise.png");
    padding-top: 5rem;
    color: white;
    background-position: center;
    background-attachment: fixed;
}

.softwares__layer1 {
    background-color: rgba(0, 128, 0, 0.24);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -10;
    bottom: 0;
}
.softwares__container h2.heading {
    text-align: center;
    margin-top: 3rem;
    /* font-size: 2rem; */
    background: -webkit-linear-gradient(90deg, #f6f6f6, #ffea00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.softwares__container p {
    text-align: center;
    margin-top: 10px;
    font-size: 1.2rem;
}

.softwares__image img {
    object-fit: contain;
    height: 70vh;
}
.logo__container {
    overflow-x: hidden;
    max-height: screen;
}
.logo__container .logo__slider {
    display: flex;

    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 20px;
}

.logo__container .logo__slider div {
    min-width: 200px;

    height: 100px;
}

.logo__container .logo__slider div img {
    object-fit: contain;
}

.contact__container {
    display: flex;
    flex-wrap: wrap;

    overflow: hidden;
    align-items: center;
    justify-content: space-between;
}
.contact__form {
    flex: 1;
}

.contact__form h2 {
    /* font-size: 2rem; */
}
.contact__form p {
    margin-top: 1rem;
    color: #494949;
    max-width: 500px;
}

.contact__form form {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    padding-right: 2rem;
    gap: 20px;
}
.contact_form form label {
    background-color: blue;
}
.contact__form form label span {
    margin-bottom: 10px;
    display: block;
}
.contact__form form label input,
.contact__form form textarea {
    width: 100%;
    max-width: 500px;
    border: none;
    outline: none;
    background-color: #edebeb;
    border-radius: 0.7rem;
    padding: 13px;
}

.contact__form form label input:focus,
.contact__form form textarea:focus {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.contact__form form button {
    width: 100%;
    max-width: 500px;
    border-radius: 0.7rem;
}

.contact__image {
    flex: 1;
}

.feedback__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feedback__header h2 {
    /* font-size: 2rem; */
}

.feedback__header h3 {
    font-size: 1.5rem;
    color: #378a37;
    margin-top: 0.5rem;
}
.feedback__arrow__container {
    display: flex;
}
.feedback__arrow__container svg {
    width: 30px;
    height: 20px;
    margin-left: 20px;
}

.feedback__card__container__outerlayer {
    max-width: 100vw;
    overflow-x: hidden;
}
.feedback__card__container {
    display: flex;
    gap: 25px;
    margin-top: 1rem;
    padding-bottom: 3rem;
}
.feedback__card {
    max-width: 400px;
    min-width: 400px;
    /* background-color: #ffd700; */
    background-color: #edebeb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.feedback__starts__containner {
    display: flex;
    margin-bottom: 0.7rem;
    gap: 0.2rem;
}
.feedback__starts__containner svg {
    height: 12px;
}

.feedback__card p {
    color: rgb(88, 88, 88);
    font-size: small;
}

.feedback__user__profile__image {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.feedback__user__profile {
    display: flex;
    align-items: center;
    margin-top: 0.7rem;
}
.feedback__user__profile__name {
    margin-left: 10px;
}
.feedback__user__profile__name h5 {
    font-size: 0.8rem;
}
.feedback__user__profile__name span {
    font-size: 0.7rem;
    color: gray;
}
.questions__container {
    margin-top: 2rem;
}
.questions__container h2 {
    text-align: center;
}
.questions__container__outer__layer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 20px;
}
.question__card {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-radius: 0.2rem;
    width: 500px;
    padding: 1.5rem;
    margin-bottom: 20px;
}
.question__card__icon {
    width: 30px;
    margin-right: 1.5rem;
}
.question__card__question {
    display: flex;
    align-items: center;
}
.question__card__answer {
    margin-left: 3.5rem;
    margin-top: 0;
    max-height: 0px;
    transition: max-height 0.1s ease, clip-path 0s ease;

    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.question__card.active .question__card__answer {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    max-height: 200px;
    margin-top: 0.5rem;
}

.question__card.active .question__card__icon__minus {
    display: none;
}

.question__card__icon__plus {
    display: none;
}
.question__card__icon svg {
    width: 20px;
}
.question__card.active .question__card__icon__plus {
    display: inline;
}
.question__card__answer p {
    font-size: small;
    color: gray;
}
.blogs__cards__container {
    display: grid;

    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
    margin-bottom: 3rem;
    gap: 1rem;
}
.blog__card {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition-duration: 300ms;
}
.blog__card:hover {
    transform: scale(1.01);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.blog__card__contents__container {
    padding: 1rem;
}

.blog__card__contents__container p a {
    color: #019f30;
}
.blog__card__contents__container h3 a {
    margin-bottom: 1rem;
    color: #019f30;
}
.blog__card__contents__container p {
    text-indent: 20px;
}

#request__consulting__popup {
    position: fixed;
    inset: 0;

    background: radial-gradient(circle, transparent 0%, rgb(0, 0, 0) 100%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#request__consulting__popup.active {
    display: flex;
}

.request__consulting__layerone {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            rgba(0, 255, 0, 0.119) 0.1em,
            transparent 0.1em
        ),
        linear-gradient(90deg, rgba(0, 255, 0, 0.119) 0.1em, transparent 0.1em);
    background-size: 3em 3em;
}
#request__consulting__popup {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.request__consulting__popup__content__container {
    display: flex;
    background: rgb(255, 255, 255);
    border-radius: 0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 101;
}
.request__consulting__popup__image {
    flex: 1;
}
#request__consulting__popup form {
    flex: 1;

    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

#request__consulting__popup form input,
#request__consulting__popup form textarea {
    border: none;
    outline: none;
    padding: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 0.3rem;
}

#request__consulting__popup form input:focus,
#request__consulting__popup form textarea:focus {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.request__consulting__popup__content__container form button {
    border-radius: 0.3rem;
    background-color: rgb(55, 138, 55);
    border: none;
    outline: none;
    font-weight: bold;
    color: whitesmoke;
    padding: 12px 30px;
    border-radius: 0.3rem;
}
.request__consulting__popup__content__container form button:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
        rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

/* Animation starts here ***********************************/
.logo__slider {
    animation: 15s slide1 linear infinite;
}

.feedback__card__container__slide__right {
    animation: 10s slide2 linear Infinite;
}
.feedback__card__container__slide__left {
    animation: 15s slide3 linear Infinite;
}

/* Animation ends here ***********************************/

@media only screen and (max-width: 840px) {
     .banner__contents {
    padding: 0px 2rem;
  }
 .banner__hexagon__image {
    display: none;
  }
    .banner__content__heading__container {
        line-height: 35px;
        font-size: 30px;
    }
    .promise__container {
        grid-template-columns: 1fr;
    }
    .promise__image {
        margin-top: 50px;
        margin-right: 1rem;
    }
    /* .promise__content h2 {
        font-size: 1.5rem;
    } */
    .promise__content p {
        font-size: small;
    }
    .promise__icon {
        height: 50px;
        width: 50px;
    }
    .promise__icon svg {
        height: 30px;
    }
    .promise__icon__texts {
        font-size: x-small;
    }
    .explore__service__card__container {
        grid-template-columns: 1fr;
    }
    .explore__service__card__container > div {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        padding: 25px 15px;
    }

    .explore__service__card__contents h4,
    .explore__service__card__contents p {
        margin-top: 3px;
    }
    .explore__service__card__contents h4 {
        font-size: large;
    }

    .workflow__cards__container {
        flex-direction: column;
        padding-top: 3rem;
        padding-bottom: 3rem;
        line-height: 18px;
        gap: 200px;
    }
    .workflow__card {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        padding-bottom: 5px;
        margin-bottom: 3rem;
        width: 90vw;
    }
    .workflow__image {
        height: 350px;
    }

    .workflow__card p {
        font-size: 15px;
        color: #494949;
        width: 90%;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    .contact__container {
        flex-direction: column;
    }
    .contact__form h2 {
        font-size: 1.5rem;
    }

    .contact__form p {
        font-size: 0.9rem;
    }
    .contact__form form {
        margin-bottom: 2rem;
    }
    .questions__container__outer__layer {
        flex-direction: column;
    }
    .question__card {
        width: 100%;
    }
    .blog__card {
        /* max-width: 70vw; */
    }
    .request__consulting__popup__image {
        display: none;
    }

    #request__consulting__popup form {
        width: 90vw;
    }
    .explore__service__container {
        max-width: 100vw;
    }
    .softwares__image img {
        padding-left: 1.5rem;
        object-position: right;
    }

    .logo__slider {
        animation: 7s slide1 linear infinite;
    }

    .feedback__card__container__slide__right {
        animation: 7s slide2 linear Infinite;
    }
    .feedback__card__container__slide__left {
        animation: 7s slide3 linear Infinite;
    }
}

@media only screen and (max-width: 600px) {
    .banner__content__heading__container .banner__heading__for__animation {
        font-size: 1.5rem;
        line-height: 1px;
    }
    .banner__contents p {
        font-size: 0.8rem;
    }
    .feedback__card {
        max-width: 90vw;
        min-width: 90vw;
    }

    .blogs__cards__container {
        grid-template-columns: 1fr;
        /* flex-direction: column; */
    }
    .blog__card {
        /* width: 90vw; */
    }
    .blog__card__contents__container h3 {
        margin-bottom: 1rem;
    }
    .blog__card__contents__container p {
        font-size: small;
    }
}
@keyframes slide1 {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes slide2 {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes slide3 {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}
