@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --primary-color: #ff4d6d;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white-color: #ffffff;
    --black-color: #000000;
    --text-color: #6c757d;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
    --font-weight-bolder: 800;
    --font-family: 'Poppins', sans-serif;
    --title-font: 'Manrope', sans-serif;
    --transition-speed: 0.3s;
}


/* common css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    user-select: none;
    backface-visibility: hidden;
}

.ws-button {
    position: relative;
    display: inline-block;
    width: max-content;
    height: 45px;
    font-size: 1rem;
    color: var(--primary-color);
    line-height: 45px;
    border: 1px solid var(--white-color);
    border-radius: 6px;
    padding: 0 30px;
    text-align: center;
    z-index: 1;
    transition: ease-in .2s;
}

.ws-primary-button {
    color: var(--white-color);
    background-image: linear-gradient(89.97deg, var(--primary-color) 1.84%, var(--secondary-color) 102.67%);
    background-clip: border-box;
    background-size: 200%;
    animation: textanim 2s linear infinite;
}

.ws-primary-button::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 0;
    height: 100%;
    background: linear-gradient(89.97deg, var(--secondary-color) 1.84%, var(--primary-color) 102.67%);
    border-radius: 6px;
    z-index: -1;
    transition: ease-in .2s;
}

.ws-primary-button:hover::after {
    width: 100%;
}

.background-shapes img {
    position: absolute;
    top: 0;
    z-index: 0;
    top: -30px;
    right: 0;
    animation: float-bob-y 3s linear infinite;
}

/* header css */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header .logo img {
    max-height: 50px;
}

.header .main-menu {}

.header .main-menu ul {
    display: flex;
    gap: 20px;
}

.header .main-menu ul li {
    position: relative;
    display: inline-block;
}

.header .main-menu ul li a {
    display: inline-block;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.header .header-btn {
    margin-left: 20px;
}

/* banner section */
.banner-section {
    position: relative;
    background: url("../images/shapes/banner-shape.webp") no-repeat center;
    background-size: cover;
    background-color: var(--white-color);
    padding: 100px 0;
    z-index: 1;
    overflow: hidden;
}

.banner-section .banner-content {
    margin-bottom: 30px;
}

.banner-section .banner-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-section .banner-content p {
    font-size: 17px;
    line-height: 32px;
    text-align: justify;
    font-weight: 400;
}

.banner-section .banner-image {
    text-align: center;
    animation: float-bob-x 3s linear infinite;
    z-index: -1;
    height: 560px;
    margin-left: 70px;
}

.banner-section .banner-image img {
    max-width: 100%;
    height: auto;
}



.color-text {
    background-image: linear-gradient(89.97deg, var(--primary-color) 1.84%, var(--secondary-color) 102.67%);
    background-clip: text;
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textanim 2s linear infinite;
}



.video-icon {
    position: relative;
    left: 50px;
    display: inline-block;
    height: 60px;
    width: 60px;
    background: var(--white-color);
    border-radius: 50%;
    text-align: center;
}

.video-icon i {
    line-height: 60px;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    text-indent: 4px;
}

.video-icon i:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 20px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow: 0 0 rgb(55 52 168 / 10%), 0 0 0 15px rgb(55 52 168 / 10%),
        0 0 0 30px rgb(55 52 168 / 10%);
    animation: ripple-wave1 1s linear infinite;
    animation-play-state: running;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


/* feature section */
.features-section {
    padding: 120px 0 100px;
    position: relative;
    background-color: var(--white-color);
}

.features-section>img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 95%;
    z-index: 0;
}

.features-section .section-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-heading p {
    font-size: 16px;
    line-height: 30px;
    color: var(--text-color);
    margin: 0 auto;
    text-align: justify;
}

.features-section .feature-item {
    position: relative;
    background: linear-gradient(#fff, #fff 50%, var(--primary-color) 50%, var(--secondary-color));
    background-size: 100% 200%;
    border: 1px solid #EAEAEA;
    border-radius: 15px;
    padding: 30px 30px 60px;
    cursor: pointer;
    transition: background .4s;
    height: 100%;
}

.features-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(316.55deg, var(--primary-color) 7.75%, var(--secondary-color) 94.53%);
    border-radius: 15px;
}

.feature-icon img {
    animation: spin 4s linear infinite;
}

.features-section .feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
}

.features-section .feature-description {
    font-size: 16px;
    line-height: 30px;
    color: var(--text-color);
    text-align: justify;
}

/* partners section */
.our-partners-section {
    padding: 100px 0;
    background-color: var(--white-color);
}


/* our service section */
.our-service-section {
    padding: 100px 0;
    background-color: var(--white-color);
    position: relative;
}

.service-item {
    position: relative;
    height: 100%;
    background-color: #E8FFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 55px 40px;
    text-align: center;
    z-index: 1;
    transition: .1s ease-in-out;
    cursor: pointer;
}

.service-content h6 {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin: 24px 0 10px;
}

.service-content p {
    font-size: .93rem;
    line-height: 24px;
    color: var(--text-color);
    text-align: justify;
}

.our-service-section .background-shapes img {
    top: 0;
    right: auto;
    left: 0;
    animation: float-bob-x 3s linear infinite;
}


/* our service process section */

.our-service-process {
    padding: 100px 0;
    background-color: var(--white-color);
    position: relative;
}

.our-service-process .section-heading {
    position: relative;
    margin-bottom: 120px;
    z-index: 10;
}

.our-service-process .section-heading h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    text-align: left;
}

.our-service-process .section-heading p {
    font-size: 1rem;
    color: var(--text-color);
    max-width: 70%;
    margin: 20px auto 16px 0;
}

.our-service-process .process-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.our-service-process .section-heading a {
    margin-top: 20px;
    display: inline-block;
}

.service-process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 1;
}

.service-process-wrapper img {
    position: absolute;
    bottom: 70%;
    left: 0;
    width: 90%;
    z-index: -1;
}

.process-item {
    position: relative;
    max-width: 60%;
    margin-left: auto;
    z-index: 1;
}

.process-item .process-number {
    position: absolute;
    top: 12%;
    right: 0;
    width: max-content;
    font-size: 150px;
    font-weight: var(--font-weight-bolder);
    font-family: var(--title-font);
    line-height: 44px;
    color: rgba(0, 0, 0, 0.05);
    z-index: -1;
}


.process-item .icon {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 20px;
    margin-bottom: 32px;
}

.process-item .icon span {
    display: inline-block;
    width: 23px;
    height: 23px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.process-item p {
    text-align: justify;
}

.process-item:nth-child(2) {
    bottom: 6%;
}

/* newsletter section */
.newsletter-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.newsletter-section h2 {
    color: var(--white-color);
    font-size: 2rem;
    font-weight: 600;
}

.newsletter-section .ws-button {
    height: auto;
    font-size: 1.10rem;
    margin-top: 24px;
    padding: 22px 40px;
    line-height: 1;
}

/* testimonial section */
.testimonial-section {
    position: relative;
    padding: 140px 0 60px;
    z-index: 1;
    overflow: hidden;
}

.testimonial-section::before {
        position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: url("../images/shapes/testimonial-curve.webp") no-repeat left -40%;
    background-size: cover;
    z-index: -1;
}

.testimonial-item {
    position: relative;
    background-color: var(--white-color);
    border: 1px solid #EDEDED;
    box-shadow: none;
    margin-top: 30px;
    transition: box-shadow var(--transition) ease-in;
}

.testimonial-item .testimonial-review {
    padding: 50px 24px 24px;
}

.testimonial-review .quote-icon {
    position: absolute;
    top: -15px;
    left: 24px;
    display: inline-block;
    height: 60px;
    width: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
}

.testimonial-ratings span {
    color: #FE8B75;
}

.testimonial-slider .owl-stage-outer {
    overflow: visible;
    padding-bottom: 32px;
}

.testimonial-slider .owl-item {
    opacity: 0;
    visibility: hidden;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonial-slider .owl-item.active {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    pointer-events: auto;
}

/*  */
/* keyframes */

@keyframes float-bob-x {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes textanim {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

@keyframes ripple-wave1 {
    to {
        box-shadow: 0 0 0 15px rgba(55, 52, 168, 0.1),
            0 0 0 30px rgba(55, 52, 168, 0.1), 0 0 0 45px rgba(55, 52, 168, 0.02);
    }
}

@keyframes textanim {
    100% {
        background-position: 200%;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* responsive part */
@media (min-width: 1200px) {
    .container-right {
        padding-left: calc((100% - 1140px) / 2 + 15px);
        padding-right: 0;
    }

    .banner-section .banner-image {
        position: absolute;
        width: 53%;
        top: 60px;
        right: 0;
    }

    .section-heading p {
        max-width: 50%;
    }

    .process-item:nth-child(2) {
        bottom: -19px;
    }

    .process-item:nth-child(3) {
        bottom: 115px;
    }

    .process-item:last-child {
        bottom: 343px;
    }
}