/*************************/

.home-banner-design {
    position: relative;
}

.home-banner-design::before {
    clip-path: polygon(100% 0, 100% 30%, 42% 100%, 0 100%, 0 0);
    background: linear-gradient(to right, #f9f9f9, #f1e9db);
    z-index: -1;
    position: absolute;
    top: 0px;/* styles.css */
    :root {
        --primary-color: #305e8c;
        --secondary-color: #cc9718;
        --dark-color: #414141;
        --gradient-primary: linear-gradient(to right, #305e8c, #6e1fc5);
        --gradient-light: linear-gradient(to right, #f0eadcbf, #f7f6f3fc);
        --font-primary: "Montserrat", sans-serif;
        --font-serif: "Source Serif 4", Georgia, serif;
    }

    /* Base Styles */
    body {
        font-family: var(--font-primary);
        color: #474747;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        margin: 0;
    }

    .container {
        width: 92%;
        max-width: 1190px;
        padding: 0 22px;
        margin: 0 auto;
    }

    /* Button Styles */
    .btn {
        display: inline-block;
        padding: 12px 24px;
        font-weight: 600;
        background: var(--gradient-primary);
        color: white;
        text-decoration: none;
        border-radius: 4px;
        transition: opacity 0.3s;
    }

    .btn:hover {
        opacity: 0.9;
    }

    /* Home Banner */
    .home-banner {
        position: relative;
        padding: 80px 0;
    }

    .home-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #f9f9f9, #f1e9db);
        clip-path: polygon(100% 0, 100% 30%, 42% 100%, 0 100%, 0 0);
        z-index: -1;
    }

    .home-banner .banner-content {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .home-banner .banner-text {
        flex: 1;
    }

    .home-banner .banner-tag {
        display: inline-block;
        padding: 8px 16px;
        background: white;
        border-radius: 20px;
        color: var(--secondary-color);
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .home-banner h3 {
        font-family: var(--font-serif);
        font-size: 67px;
        font-weight: 800;
        line-height: 1;
        color: var(--dark-color);
        margin-bottom: 24px;
    }

    /* Features Section */
    .features {
        padding: 80px 0;
    }

    .features-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .feature-card {
        text-align: center;
        padding: 24px;
    }

    .feature-card img {
        height: 100px;
        margin-bottom: 16px;
    }

    .feature-card h5 {
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    /* Portfolio Section */
    .portfolio {
        padding: 80px 0;
        background: var(--gradient-light);
    }

    .portfolio-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .portfolio-carousel img {
        max-height: 230px;
        object-fit: contain;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    }

    /* Tech Stack Section */
    .tech-stack {
        padding: 80px 0;
    }

    .tech-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }

    .tech-item {
        text-align: center;
        padding: 16px;
        border: 1px solid #dfdfdf;
        transition: box-shadow 0.3s;
    }

    .tech-item:hover {
        box-shadow: 0 0 15px -4px #d9d9d9;
    }

    .tech-item img {
        height: 46px;
        max-width: 130px;
        object-fit: contain;
    }

    /* Clients Section */
    .clients {
        padding: 80px 0;
        background: #e2dfdf;
    }

    .clients-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .client-logo img {
        padding: 15px;
        width: 250px;
        height: auto;
        object-fit: contain;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .home-banner h3 {
            font-size: 44px;
        }

        .features-grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    /* Utility Classes */
    .link {
        color: var(--primary-color);
        font-weight: 700;
        text-decoration: none;
        position: relative;
    }

    .link::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: currentColor;
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .link:hover::after {
        transform: scaleX(1);
    }
    width: 100%;
    bottom: 0px;
    left: 0px;
    height: 100%;
    content: "";
}

/* .clients-section .logo-img{
  position:relative;
} */

.clients-section .logo-img img {
  padding: 15px;
  object-fit: contain;
  width: 250px;
  height: auto;
}

/* .clients-section .logo-img::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 220px;
  height: 50px;
  background-color: rgb(128 128 128 / 18%);
} */

.clients-section {
    background: #e2dfdf;
}

.portfolio-section.technologies .nav-tabs li.active a {
    color: #dd10bc;
}

.portfolio-section.technologies .nav-tabs li.active {
    border-bottom: 3px solid #dd10bc;
}

.portfolio-section.technologies .box {
    text-align: center;
    padding: 10px;
    border: 1px solid #dfdfdf;
}

.portfolio-section.technologies .box img {
    height: 46px;
    max-width: 130px;
    object-fit: contain;
    /* width: 55px; */
}

.portfolio-section.technologies .box:hover {
    box-shadow: 0 0 15px -4px #d9d9d9 !important;
}

.home-banner-design .main-heading {
    line-height: 1;
}

.home-banner-design .explain {
    line-height: 1.5;
}

.home-third-section .container span.typed-text {
    color: #cc9718;
    font-size: 45px;
}
.home-third-section .container span.cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 2px;
    animation: blink 1s infinite;
}
.home-third-section .container span.cursor.typing {
    animation: none;
}

@keyframes blink {
    0% {
        background-color: #ccc;
    }
    49% {
        background-color: #ccc;
    }
    50% {
        background-color: transparent;
    }
    99% {
        background-color: transparent;
    }
    100% {
        background-color: #ccc;
    }
}

.home-third-section img {
    height: 100px;
    margin-bottom: 10px;
}

.testimonial-section .testimonial-carousel {
    margin: 0 -7px;
}
.testimonial-section .testimonial-carousel .testimonial {
    background-color: #fff;
    padding: 30px;
    position: relative;
    border-radius: 9px;
    padding-top: 38px;
    margin: 70px 7px 34px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2),
        0 15px 10px -15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-section .testimonial-img {
    width: 58px;
    position: absolute;
    top: -36px;
}

.testimonial-section
    .testimonial-carousel
    .testimonial
    .testimonial-description {
    min-height: 200px;
    line-height: 1.7;
    border-bottom: 1px solid #474747;
}

.portfolio-carousel .portfolio-img {
    width: 100%;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2),
        0 15px 10px -15px rgba(0, 0, 0, 0.3);
    height: 230px;
    width: auto;
    object-fit: contain;
    /* width: 100%;

  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 15px 10px -15px rgba(0, 0, 0, 0.3); */
}

.portfolio-carousel a {
    margin: 0 10px;
    padding: 10px;
}

.testimonial-section .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.4s ease-in-out;
}
.testimonial-section .slick-slide,
.testimonial-section
    .slick-slide[aria-hidden="true"]:not(.slick-cloned)
    ~ .slick-cloned[aria-hidden="true"] {
    transform: scale(0.9, 0.9);
    transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.testimonial-section .slick-center,
.testimonial-section
    .slick-slide[aria-hidden="true"]:not([tabindex="-1"])
    + .slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);
}
.testimonial-section .slick-current.slick-active {
    transform: scale(1.1);
}

.testimonial-section .slick-prev {
    left: 0px;
}

.testimonial-section .slick-next {
    right: 0px;
}

.testimonial-carousel .slick-next:before,
.testimonial-carousel .slick-prev:before {
    color: #4d4c4c;
    font-size: 33px;
}

.testimonial-carousel .slick-dots li button:before {
    font-size: 11px !important;
}

.testimonial-carousel .slick-dots {
    bottom: -28px !important;
}

/******************About us Page*********************/
.about-page-support .box {
    min-height: 208px;
    background-color: #fff;
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.11);
    padding: 25px 20px;
    padding-top: 20px;
    background: #fff;
    transition: all 0.2s cubic-bezier(0.17, 0.38, 0.45, 0.85);
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
}

.about-page-support .box:hover {
    box-shadow: 0px 0px 20px 0px rgba(14, 41, 50, 0.17);
    transform: scale(1.1);
}

.about-page-last-sec {
    background-image: url(https://primal7movement.com/cdn/shop/files/about_bg.png?v=1614312806);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-page-last-sec .box {
    background-color: #fff;
}

/*************Portfolio******************/

.portfolio-section .portfolio-box {
    display: block;
    width: 100%;
}

.portfolio-section .portfolio-box .portfolio-img {
    width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    height: 232px;
    object-fit: cover;
    transition: transform 0.2s ease;
    object-position: top;
    box-shadow: rgba(0, 0, 0, 0.07) 0 0.83px 0.57px 0,
        rgba(0, 0, 0, 0.106) 0 2.14px 2.81px 0,
        rgba(0, 0, 0, 0.106) 0 4.71px 7.71px 0,
        rgba(0, 0, 0, 0.094) 0 9.81px 16.21px 0,
        rgba(0, 0, 0, 0.12) 0 21px 29px 0;
}

.portfolio-section .portfolio-box > div {
    position: relative;
    z-index: 0;
    white-space: nowrap;
    padding-bottom: calc(205 / 334 * 100%);
    overflow: hidden;
}

.portfolio-box-content {
    position: relative;
}

.portfolio-box-content .hover {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0;

    display: flex;

    flex-wrap: wrap;

    flex-direction: column;

    justify-content: flex-end;

    background: rgba(255, 255, 255, 0.8);
    opacity: 0;

    transition: z-index 0.3s ease, opacity 0.3s ease-in-out;
}

.portfolio-box-content:hover .hover {
    z-index: 2;
    opacity: 1;
}

.portfolio-box-content:hover img {
    transform: scale(1.05);
}

.portfolio-box-content .btn1 {
    display: block;
    width: 286px;
    height: 48px;
    line-height: 48px;
    background: #000;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 auto 28px;
    transition: background 0.3s ease;
}

.portfolio-box-content .btn2 {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.28571em;
    color: #000;
    text-transform: uppercase;
    margin: 0 auto 36px;
}

.portfolio-section .nav-tabs {
    display: flex;
    list-style: none;
    padding-left: 0px;
}

.portfolio-section .nav-tabs li {
    padding: 0 28px 5px 28px;
    border-bottom: 1px solid #dedede;
    font-size: 17px;
    font-weight: 500;
}
.portfolio-section .nav-tabs li.active {
    border-bottom: 3px solid #dd5510;
}

.portfolio-section .nav-tabs li.active a {
    color: #dd5510;
    font-weight: 700;
}

.portfolio-section .rep-btns .btn-1 {
    padding: 10px 19px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    width: calc(1.2 / 3 * 100%);
}

.portfolio-section .rep-btns .btn-2 {
    padding: 10px 15px;
    text-align: center;
    width: calc(2 / 3 * 100%);
    display: inline-block;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    background-color: rgb(0 0 0 / 7%);
}
.data-driven-section {
    background-color: #f5faff;
    position: relative;
}

.data-driven-section::before {
    background-image: url(https://res.cloudinary.com/hevo/image/upload/v1654344477/hevo-website/hevo-pipeline/abstract-bg/pipeline-feature-section-abstract-left_jnk2ma.svg);
    left: 0;
    top: 0;
    width: 178px;
    height: 260px;
    position: absolute;
    content: "";
}
/************************/
.contact-page-support .box {
    min-height: 220px;
    background-color: #fff;
    box-shadow: -2px 5px 20px 1px rgb(216 212 203);
    padding: 25px 20px;
    position: relative;
    background: #fff;
    transition: all 0.2s cubic-bezier(0.17, 0.38, 0.45, 0.85);
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    border-bottom: 5px solid #d4dcd4;
}

.contact-page-support .box i {
    position: absolute;
    top: -27px;
    padding: 20px;
    background: white;
    font-size: 28px;
    box-shadow: -1px 1px 8px 0px rgb(204 202 198);
    border-radius: 50%;
    background: white;
    color: #56534c;
}

.contact-us-form input,
.contact-us-form textarea {
    border: #e0e0e0 1px solid;
    padding: 9px 20px;
    font-size: 18px;
}

.contact-us-form input::placeholder,
.contact-us-form textarea::placeholder {
    color: rgb(44, 43, 43);
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    padding: 3px 0px;
}

.form-section {
    position: relative;
    z-index: 1;
}
.form-section::before {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: calc(100% - 30%);
    content: "";
    bottom: 0px;
    left: 0px;
    z-index: -1;
}

.name-container {
    max-height: 223px;
    overflow: hidden;
}

.portfolio-modal .features-points p {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin: 0px 3px 10px;
    color: #474747;
    border: 1px solid grey;
}

.features-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/*  */
