.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("https://images.unsplash.com/photo-1637825891035-1930cbd564dd?q=80&w=3540&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
        no-repeat center center/cover;
    color: white;
    padding: 50px 20px;
    min-height: 550px;
    gap: 28px;
}

.hero-text {
    max-width: 90%;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-text h1 span {
    color: white;
}

.hero-text p {
    font-size: 1.1rem;
    margin-top: 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        text-align: left;
        padding: 50px;
        height: 65vh;
    }

    .hero-text {
        max-width: 50%;
    }

    .hero-image img {
        max-width: 500px;
    }
}

/* service section  */
.service-section {
    display: flex;
    padding: 24px;
    gap: 29px;
    background-color: #fff;
    align-items: flex-start;
}

.service-heading {
    max-width: 300px;
    color: #000;
    font-size: 26px;
    font-weight: 400;
    /* padding: 20px 0; */
    gap: 10px;
    position: sticky;
    top: 20px;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 54px;
    flex: 1;
}

.service-description {
    color: #000;
    font-size: 30px;
    font-weight: 200;
    line-height: 40px;
    /* max-width: 1019px; */
    margin-bottom: 25px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 29px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-image {
    width: 100%;
    aspect-ratio: 1.4;
    border-radius: 8px;
    object-fit: cover;
}

.service-caption {
    color: rgba(0, 0, 0, 0.7);
    font-size: 28px;
    line-height: 48px;
}

.bold-text {
    font-weight: 700;
}

@media (max-width: 991px) {
    .service-section {
        padding: 100px 60px;
    }

    .service-description {
        font-size: 32px;
        line-height: 48px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .service-section {
        padding: 60px 20px;
        flex-direction: column;
    }

    .service-heading {
        width: 100%;
        padding: 0;
    }

    .service-description {
        font-size: 24px;
        line-height: 36px;
    }

    .service-image {
        height: 300px;
    }

    .service-caption {
        font-size: 20px;
        line-height: 32px;
    }
}

/* service section end here  */

/* tech section  */
.section-capabilities,
.section-benefits {
    padding: 40px 20px;
    background-color: #111204;
    color: white;
}

.section-capabilities .title-section,
.section-benefits .title-section {
    color: #b816b6;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.section-capabilities .title-main,
.section-benefits .title-main {
    font-size: 3.375rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: -0.05rem;
    text-align: center;
}

@media (max-width: 640px) {
    .section-capabilities .title-main,
    .section-benefits .title-main {
        font-size: 2rem;
        line-height: 2.25rem;
    }
}

.capabilities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.capability-item {
    background-color: #b816b6;
    color: #fff;
    padding: 0.6875rem 2.1875rem;
    border-radius: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 300;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .capability-item {
        padding: 0.5rem 1.25rem;
        font-size: 0.9375rem;
        width: 100%;
        text-align: center;
    }
}

.load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #fff;
    cursor: pointer;
}

.load-more .ti-loader {
    animation: spin 1s linear infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefits-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    line-height: 140%;
    font-weight: 300;
}

@media (max-width: 640px) {
    .benefits-description {
        font-size: 1.125rem;
    }
}

.btn-pricing {
    background-color: #b816b6;
    color: #111204;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.benefits-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 991px) {
    .benefits-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-features {
        grid-template-columns: 1fr;
    }
}

.tech-service-item {
    position: relative;
    padding: 2.5rem 1.25rem;
    /* flex-wrap: wrap; */
}

.tech-service-item .service-tech-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.tech-service-item .service-tech-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background-color: #b816b6;
}

.tech-service-item .service-tech-icon .ti {
    color: #111204;
    font-size: 1.5rem;
}

.tech-service-item .service-tech-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tech-service-item .service-tech-description {
    color: #9593a4;
    font-size: 1rem;
    line-height: 1.4375rem;
}

.webflow-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* tech section end here  */

/* why choose us  */

.why-choose-us {
    display: flex;
    flex-direction: column;
    padding: 100px 150px;
    gap: 42px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .why-choose-us {
        padding: 60px 40px;
    }
}

@media (max-width: 640px) {
    .why-choose-us {
        padding: 40px 20px;
    }
}

.why-choose-us-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-choose-us-tag {
    color: #fff;
    position: relative;
    width: 83px;
    height: 41px;
    border-radius: 30px;
    background-color: #fe5e54;
    font: 700 12.5px "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us-title {
    color: #312f2f;
    letter-spacing: -0.88px;
    font: 600 40px "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .why-choose-us-title {
        font-size: 32px;
    }
}

.why-choose-us-subtitle {
    color: #939394;
    letter-spacing: -0.357px;
    font: 500 21px "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .why-choose-us-subtitle {
        font-size: 18px;
    }
}

.why-choose-us-content {
    display: flex;
    align-items: center;
    gap: 110px;
    width: 100%;
}

@media (max-width: 991px) {
    .why-choose-us-content {
        flex-direction: column;
        gap: 60px;
    }
}

.team-section {
    flex: 1;
}

.team-container {
    position: relative;
    width: 470px;
    /* height: 624px; */
}

@media (max-width: 640px) {
    .team-container {
        width: 100%;
        height: auto;
    }
}

.team-background {
    width: 470px;
    height: 100%;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0px;
    background-color: #5501b3;
}

@media (max-width: 640px) {
    .team-background {
        width: 100%;
        height: 100%;
    }
}

.team-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 36px;
    padding-bottom: 0px;
}

.team-image {
    width: 315px;
    height: 369px;
    object-fit: cover;
}

@media (max-width: 640px) {
    .team-image {
        width: 100%;
        height: auto;
    }
}

.team-info {
    width: 100%;
}

.expert-card {
    border-radius: 20px;
    padding: 29px;
    margin-bottom: 8px;
    background-color: #312f2f;
}

@media (max-width: 640px) {
    .expert-card {
        padding: 20px;
    }
}

.expert-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.expert-icon-wrapper {
    width: 71px;
    height: 71px;
    position: relative;
}

.expert-icon {
    width: 71px;
    height: 71px;
    object-fit: cover;
}

.expert-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.expert-title {
    color: #fff;
    letter-spacing: -0.456px;
    font: 600 24px "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .expert-title {
        font-size: 20px;
    }
}

.expert-description {
    color: #fff;
    letter-spacing: -0.357px;
    font: 500 21px "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .expert-description {
        font-size: 18px;
    }
}

.try-us-button {
    color: #fff;
    letter-spacing: -0.34px;
    padding: 24px;
    border-radius: 30px;
    text-align: center;
    background-color: #312f2f;
    font: 600 20px "General Sans", sans-serif;
    width: 100%;
    border: none;
    cursor: pointer;
}

.design-section {
    flex: 1;
    max-width: 563px;
}

.design-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.design-tag {
    color: #312f2f;
    position: relative;
    width: 75px;
    height: 41px;
    border: 1px solid #fe5e54;
    border-radius: 30px;
    font: 700 12.5px "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-title {
    color: #312f2f;
    letter-spacing: -0.714px;
    font: 600 34px/1.2 "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .design-title {
        font-size: 28px;
    }
}

.design-description {
    color: #939394;
    letter-spacing: -0.357px;
    font: 500 21px "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .design-description {
        font-size: 18px;
    }
}

.overview-section {
    margin-top: 31px;
}

.overview-title {
    color: #312f2f;
    letter-spacing: -0.34px;
    margin-bottom: 17px;
    font: 600 20px "General Sans", sans-serif;
}

.overview-description {
    color: #939394;
    letter-spacing: -0.357px;
    font: 500 21px/1.4 "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .overview-description {
        font-size: 18px;
    }
}

.bottom-section {
    display: flex;
    align-items: center;
    gap: 76px;
    margin-top: 42px;
}

@media (max-width: 991px) {
    .bottom-section {
        flex-direction: column;
        gap: 40px;
    }
}

.bottom-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.bottom-title {
    color: #312f2f;
    letter-spacing: -0.714px;
    font: 600 34px/1.2 "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .bottom-title {
        font-size: 28px;
    }
}

.bottom-subtitle {
    color: #939394;
    letter-spacing: -0.357px;
    font: 500 21px "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .bottom-subtitle {
        font-size: 18px;
    }
}

.bottom-description {
    color: #939394;
    letter-spacing: -0.357px;
    font: 500 21px/1.4 "General Sans", sans-serif;
}

@media (max-width: 640px) {
    .bottom-description {
        font-size: 18px;
    }
}

.try-plan-button {
    color: #fff;
    letter-spacing: -0.34px;
    padding: 24px;
    border-radius: 30px;
    width: 195px;
    text-align: center;
    background-color: #fe5e54;
    font: 600 20px "General Sans", sans-serif;
    border: none;
    cursor: pointer;
}

@media (max-width: 640px) {
    .try-plan-button {
        width: 100%;
    }
}

.image-container {
    position: relative;
}

@media (max-width: 991px) {
    .image-container {
        width: 100%;
    }
}

.image-background {
    width: 547px;
    height: 547px;
    border-radius: 20px;
    border: 1px solid #5501b3;
    background-color: #5501b3;
}

@media (max-width: 991px) {
    .image-background {
        width: 100%;
    }
}

.hand-image {
    width: 400px;
    height: 452px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 0 0 20px 0;
}

@media (max-width: 991px) {
    .hand-image {
        width: 80%;
        height: auto;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
