* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Red Hat Display", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

.hamburger {
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media only screen and (min-width:630px) {

    .hamburger,
    .navbar-mobile {
        display: none !important;
    }
}

.hamburger .line {
    width: 22px;
    height: 3px;
    background: #70787d;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.hamburger.isactive .line:nth-child(2) {
    opacity: 0;
}

.hamburger.isactive .line:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
    height: 3px;
}

.hamburger.isactive .line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    height: 3px;
}

.inner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
}

.navbar-mobile ul.main-nav-list {
    overflow: hidden;
    list-style-type: none;
    margin: 0;
    padding: 79px 0 0 0;
}

.navbar-mobile ul.main-nav-list li {
    display: block;
    margin: 0;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.navbar-mobile ul.main-nav-list li:hover {
    background: #bcf4e8;
}

.navbar-mobile ul.main-nav-list li a {
    color: #1A1A1A;
    text-decoration: none;
    font-size: 14px;
    transition: all .5s;
    text-transform: capitalize;
    font-weight: 400;
    width: 100%;
    display: block;
    padding: 10px 20px;
    font-weight: 600;
}

.navbar-mobile ul.main-nav-list li.active a {
    color: #0060DF;
    font-weight: 600;
}

.navbar-mobile {
    background: #FFF;
    box-shadow: 4px 0px 10px 0px rgba(0, 0, 0, 0.11);
    width: 250px;
    height: 100vh;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;

    @media only screen and (min-width:1075px) {
        display: none !important;
    }
}

.navbar-mobile.active {
    display: block;
    animation: fade .5s;
}

@keyframes fade {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}


header {
    background-color: #FFFFFF;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 76px;
    border-bottom: 1px solid #E9E9E9;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* .logo img {
    width: 30px;
    height: 30px;
} */

.logo .logo-text {
    font-weight: 800;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.24px;
}

.navigation-links {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #2A2037;
    transition: all 0.3s ease-in-out;
}

.navigation-links a {
    padding: 8px 16px;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    color: #2A2037;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.navigation-links a:hover {
    border-radius: 8px;
    background: #F2FFFD;
}

.dropdown-link img, .dropdown-link-mobile img {
    margin-left: 8px;
}

.sub-nav-list {
    padding: 10px 0;
    position: absolute;
    top: 54px;
    right: -38px;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: none;

    li {
        list-style: none;

        a {
            padding-top: 5px;
            padding-bottom: 5px;
            display: block;
        }
    }
}

.sub-nav-list-mobile {
    padding: 10px 0;
    background: #fff;
    display: none;

    li {
        list-style: none;

        a {
            padding-top: 5px;
            padding-bottom: 5px;
            display: block;
        }
    }

    @media screen and (max-width: 1024px) {
        left: 0px;
        width: auto;
        position: unset;
        box-shadow: none;
        padding: 0px;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    top: 30px;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content .list {
    background: none;
    border: none;
    outline: 0;
    padding: 7px 15px;
    width: 100%;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    font-family: "Red Hat Display", sans-serif;
}

.dropdown-content .list:hover {
    background: #bcf4e8;
}

/* .dropdown:hover .dropdown-content {
    display: block;
} */

.show {
    display: block;
}


.section-combine {
    position: relative;
    overflow-x: hidden;
}

/* .section-combine::before {
    content: "";
    background: url("../images//product-page/hero-bg-3.png") no-repeat top 30% right;
    background-size: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -13%;
    right: 0;
    z-index: -1;
} */

.section-combine::before {
    content: "";
    border-radius: 637px;
    background: rgba(173, 251, 145, 0.12);
    filter: blur(97px);
    position: absolute;
    right: -5%;
    top: 17%;
    width: 40%;
    height: 38%;
    z-index: -1;
}

/* .section-combine::after {
    content: "";
    background: url("../images//product-page/hero-image-shadow.svg") no-repeat top 30% right;
    background-size: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -13%;
    right: 0;
} */

/* Hero Section */

.hero-section {
    display: flex;
    justify-content: space-between;
    padding: 22px 0 22px 77px;
    background: url(../images/product-page/hero-bg-2.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 6%;
    gap: 61px;
    position: relative;
}

.hero-section::before {
    content: "";
    border-radius: 514px;
    background: rgba(158, 155, 249, 0.28);
    filter: blur(200px);
    position: absolute;
    left: 40%;
    top: 0;
    width: 28%;
    height: 55%;
    z-index: -1;
}

.hero-content-section {
    padding-left: 43px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-section h1 {
    color: var(--Dark, #2A2037);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
    /* 137.5% */
    position: relative;
}

.hero-content-section .star-image {
    position: absolute;
    width: 65px;
    height: auto;
    top: -30px;
    left: -43px;
    user-select: none;
}

.hero-content-section .description {
    color: var(--Grey-04, #797B82);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 30px;
    margin-top: 16px;
}

.hero-content-section .description .bold {
    font-weight: 700;
}

.hero-content-section .sub-description {
    color: var(--Dark, #2A2037);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
    margin-top: 14px;
}

.hero-content-section .sub-description a {
    color: var(--Dark, #2A2037);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
}

.hero-content-section .sub-description a:hover {
    text-decoration: underline;
}

.hero-image {
    max-width: 793px;
    margin-right: -88px;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image::before {
    content: "";
    border-radius: 810px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 25.27%, rgba(0, 0, 0, 0.12) 88.99%);
    filter: blur(100px);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 85%;
    z-index: -1;
}

/* .hero-image::after{
    content: "";
    background: url("../images//product-page/hero-bg-3.png") no-repeat top 30% right;
    background-size: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: -1;
} */

.hero-image img {
    width: 100%;
    height: 100%;
}

/* .hero-section::before {
    content: "";
    background: url("../images/product-page/hero-image-shadow.svg") no-repeat bottom right;
    background-size: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 793px;
    bottom: 0px;
    right: 0;
} */


/* Choose Us Section */

.choose-us-section {
    padding: 80px 20px;
    background: url("../images/product-page/choose-bg-1.svg"), url("../images/product-page/choose-bg-2.svg"), url("../images/product-page/dotbg.svg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top 26px right, bottom right, left bottom 137px;
    background-size: auto, auto, auto;
}

.choose-us-section h2 {
    color: var(--Dark, #2A2037);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 123.529% */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.choose-us-section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    border-radius: 1000px;
    background: var(--Brand, rgba(67, 191, 152, 0.94));
}


.card-container {
    display: flex;
    gap: 20px;
    padding-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 387px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 24px;
    border: 1px solid #D6DADE;
    background: var(--Grey-01, #F9F9F9);
    padding: 12px 12px 16px 12px;
}

.card:hover {
    border-radius: 24px;
    border: 1px solid var(--Grey-03, #A6A7A8);
    background: var(--Grey-01, #F9F9F9);
    box-shadow: 0px 360px 101px 0px rgba(0, 0, 0, 0.00), 0px 231px 92px 0px rgba(0, 0, 0, 0.01), 0px 130px 78px 0px rgba(0, 0, 0, 0.02), 0px 58px 58px 0px rgba(0, 0, 0, 0.03), 0px 14px 32px 0px rgba(0, 0, 0, 0.04);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 328px;
    border-radius: 16px;
    max-width: 566px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
    border-radius: 16px;
    min-height: 328px;
}

.card:hover .card-image {
    transform: scale(1.3);
}

.card-content {
    padding: 18px 9px 0 15px;
    text-align: left;
}

.card-content h3 {
    color: var(--Dark, #2A2037);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: -0.45px;
}

.card-content p {
    color: var(--Grey-04, #797B82);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-top: 2px;
}

.tools-list {
    list-style: none;
    position: absolute;
    top: 50%;
    margin-top: -123px;
    left: 8%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tools-list li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tools-list li .svg-wrapper {
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
}

.tools-list li span {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
}

.card-two-overlay {
    position: absolute;
    top: 11%;
    left: 8%;
    display: flex;
    max-height: 34px;
}

.card-two-overlay .overlay-text {
    background: rgba(0, 0, 0, 0.60);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 9px;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.generate-btn {
    background-color: #FAF7F7;
    color: #000;
    padding: 9px 8px 9px 10px;
    border: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.images-list {
    position: absolute;
    top: 50%;
    margin-top: -138px;
    left: 8%;
    list-style: none;
    border-radius: 6px;
    border: 0.6px solid #ECECEC;
    background: #FFF;
    box-shadow: 0px 2.4px 6px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 9px 8px 5px 6px;

}

.images-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.images-list li img {
    width: 48px;
    height: 48px;
}

.images-list li:nth-child(1) img {
    border-radius: 4.324px;
    border: 1px solid #000;
    box-shadow: 0px 2.4px 6px 0px rgba(0, 0, 0, 0.10);
}

.images-list li span {
    color: #96A5B6;
    font-size: 7.2px;
    font-style: normal;
    font-weight: 400;
    line-height: 10.8px;
}

.images-list li:nth-child(1) span {
    color: #393C4C;
    font-weight: 500;
}


@media screen and (max-width: 1300px) {
    .hero-image {
        margin-right: -80px;
    }
}


@media screen and (max-width: 1200px) {
    .hero-section {
        padding-left: 0;
        gap: 20px;
    }

    .hero-content-section {
        width: 90%;
    }

    .hero-image {
        margin-right: -64px;
    }
}

.cta-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-wrap a {
    text-decoration: none;
}

.hero-content-section .cta-wrap {
    max-width: 566px;
    line-height: 0;
}

.cta-wrap a.cta-ff {
    transform: translateY(2px);
}

.cta-wrap img {
    width: 100%;
    transition: transform 0.2s ease-in-out;
}

.cta-wrap img:hover {
    transform: scale(1.05);
}



@media screen and (min-width: 1441px) {
    .hero-image {
        margin-right: 0;
    }

    /* .hero-section {
        background-size: auto;
    } */
}

/* How to Use Section */

.how-to-use-section {
    padding: 80px 20px;
    text-align: center;
    font-family: "Red Hat Display", Arial, Helvetica, sans-serif;
    background: url("../images/product-page/how-to-use-bg.svg"), url("../images/product-page/dotbg.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: top 38% left 10%, top 43% right;
}

.how-to-use-content-item {
    max-width: 1202px;
    width: 100%;
    margin: 0 auto;
}

.how-to-use-section h2 {
    color: #2A2037;
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 123.529% */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.how-to-use-section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    border-radius: 1000px;
    background: var(--Brand, rgba(67, 191, 152, 0.94));
}

/* Step Progress Styles */
.step-progress-container {
    display: flex;
    justify-content: center;
    margin: 60px 0 40px 0;
}

.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 680px;
}

.step-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 66.667px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F2FFFD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item.active {
    border: none;
}

.step-item.active .step-circle {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--Brand, rgba(67, 191, 152, 0.94));
    color: #fff;
}

.step-line {
    height: 3px;
    background: #F7F7F7;
    width: 80px;
    margin: 0 20px;
    position: relative;
    z-index: 1;
    transition: none;
    border-radius: 1000px;
}

/* .step-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #4CD4A9;
    transition: width 0.5s ease;
} */

.step-item.active+.step-line::before {
    width: 100%;
}

.dynamicVideoHeading,
.dynamicVideoDesc {
    transition: all 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-progress {
        max-width: 300px;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-line {
        width: 60px;
        margin: 0 5px;
    }
}

.how-to-use-section h3 {
    color: #2A2037;

    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 150% */
    margin-bottom: 10px;
}

.how-to-use-section p {
    color: #797B82;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 40px;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 478px;
    margin: 0 auto 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 434px 122px 0px rgba(73, 194, 155, 0.00), 0px 278px 111px 0px rgba(73, 194, 155, 0.01), 0px 156px 94px 0px rgba(73, 194, 155, 0.05), 0px 69px 69px 0px rgba(73, 194, 155, 0.09), 0px 17px 38px 0px rgba(73, 194, 155, 0.10);
    background-color: rgba(73, 194, 155, 0.08);
    ;
    padding: 6px;
    transition: box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
    ;
}

.tutorial-video {
    width: 100%;
    display: block;
    background-color: #f0f0f0;
    aspect-ratio: 16/9;
    object-fit: cover;
    height: 100%;
    border-radius: 20px;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 1.1s ease-in-out;
    border: 6px solid rgba(73, 194, 155, 0.08);
    border-radius: 24px;
    opacity: 1;
    cursor: pointer;
}

/* Pulse animation for play button - three expanding shadow layers */
@keyframes button-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 212, 169, 0.7);
    }

    15% {
        box-shadow: 0 0 0 10px rgba(76, 212, 169, 0.5), 0 0 0 0px rgba(76, 212, 169, 0), 0 0 0 0px rgba(76, 212, 169, 0);
    }

    30% {
        box-shadow: 0 0 0 15px rgba(76, 212, 169, 0), 0 0 0 20px rgba(76, 212, 169, 0.4), 0 0 0 0px rgba(76, 212, 169, 0);
    }

    45% {
        box-shadow: 0 0 0 15px rgba(76, 212, 169, 0), 0 0 0 20px rgba(76, 212, 169, 0), 0 0 0 30px rgba(76, 212, 169, 0.3);
    }

    60% {
        box-shadow: 0 0 0 15px rgba(76, 212, 169, 0), 0 0 0 20px rgba(76, 212, 169, 0), 0 0 0 40px rgba(76, 212, 169, 0.1);
    }

    75% {
        box-shadow: 0 0 0 15px rgba(76, 212, 169, 0), 0 0 0 20px rgba(76, 212, 169, 0), 0 0 0 40px rgba(76, 212, 169, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 212, 169, 0);
    }
}

/* Apply pulse animation only to initial play button - this is redundant now as the animation is applied directly to the button */
/* .play-button-wrapper.initial .play-button {
    animation: button-pulse 2.5s infinite;
} */

.play-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(67, 191, 152, 0.94);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 24px 16px 32px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(76, 212, 169, 0.7);
    font-family: "Red Hat Display", Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: button-pulse 2.5s infinite;
    width: 210px;
    height: 97px;
}

.play-button:hover {
    background-color: #3bc399;
    animation: none;
    /* Stop animation on hover */
}

.play-button svg {
    width: 24px;
    height: 24px;
}

/* Hide video controls completely */
.tutorial-video::-webkit-media-controls {
    display: none !important;
}

.tutorial-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.tutorial-video::-webkit-media-controls-panel {
    display: none !important;
}

/* For Firefox */
.tutorial-video::-moz-media-controls {
    display: none !important;
}

/* For IE/Edge */
.tutorial-video::-ms-media-controls {
    display: none !important;
}

/* Remove controls property */
.tutorial-video.playing {
    controls: none;
}

/* Hide play button wrapper when video is playing */
.video-container.playing .play-button-wrapper {
    /* display: none; */
    opacity: 0;
}

/* Hide watch again button when video is playing */
.video-container.playing+.watch-again-button {
    display: none !important;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }

    .play-button {
        padding: 12px 20px 12px 24px;
        font-size: 16px;
        width: 171px;
        height: 70px;
    }
}

/* Replay button styles */
.play-button-wrapper.replay .play-button {
    background-color: rgba(67, 191, 152, 0.94);
    padding: 14px 20px 14px 24px;
    font-size: 16px;
    box-shadow: 0 0 25px rgba(76, 212, 169, 0.5);
}

.play-button-wrapper.replay .play-button:hover {
    background-color: #3bc399;
    box-shadow: 0 0 35px rgba(76, 212, 169, 0.7);
}

.play-button-wrapper.replay {
    display: none;
    /* Initially hidden */
}

/* Watch again button styles */
.watch-again-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #F2FFFD;
    border: 2px solid rgba(67, 191, 152, 0.94);
    color: rgba(67, 191, 152, 0.94);
    border-radius: 16px;
    padding: 13px 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    font-family: "Red Hat Display", Arial, Helvetica, sans-serif;
    box-shadow: 0 0 10px rgba(76, 212, 169, 0.2);
    width: 145px;
    height: 50px;
}

.watch-again-button:hover {
    background-color: rgba(67, 191, 152, 0.94);
    box-shadow: 0 0 15px rgba(76, 212, 169, 0.3);
    color: #F2FFFD;

    svg path {
        fill: #F2FFFD;
    }
}

.watch-again-button svg {
    width: 20px;
    height: 20px;
}

.watch-again-button svg path {
    transition: all 0.3s ease;
}

/* Pulse animation for step circles */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 212, 169, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(76, 212, 169, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 212, 169, 0);
    }
}

.step-item.pulse-animation .step-circle {
    animation: pulse 0.8s 1;
}


/* AI Features Section */

.ai-features-section {
    padding: 80px 20px;
    background: url("../images/product-page/ai-feature-bg.svg") no-repeat center center;
    background-size: auto;
}

.ai-features-section h2 {
    color: var(--Dark, #2A2037);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 123.529% */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ai-features-section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    border-radius: 1000px;
    background: var(--Brand, rgba(67, 191, 152, 0.94));
}

.ai-card-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.ai-card-left {
    border-radius: 24px;
    border: 1px solid rgba(214, 218, 222, 0.40);
    background: #FFF;
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 1026px;
    width: 100%;
    margin-bottom: 104px;
    /* float: left; */
}

.ai-content {
    padding: 28px 28px;
    max-width: 404px;
}

.ai-content img {
    width: 56px;
    height: 56px;
}

.ai-content h3 {
    color: var(--Dark, #2A2037);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    /* 143.75% */
    letter-spacing: -0.45px;
    margin-top: 24px;
}

.ai-content div {
    color: var(--Grey-04, #797B82);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-top: 8px;
}


.ai-card-left .right-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.ai-card-right {
    border-radius: 24px;
    border: 1px solid rgba(214, 218, 222, 0.40);
    background: #FFF;
    box-shadow: 20px 26px 72px 0px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: row-reverse;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 1026px;
    width: 100%;
    margin-bottom: 104px;
    float: right;
}

.ai-card-right .right-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Install Section */

.install-section {
    text-align: center;
    margin-bottom: 140px;
    padding-top: 80px;
    padding: 0 20px;
    font-family: "Red Hat Display", Arial, Helvetica, sans-serif;
}

.install-content-item {
    max-width: 1200px;
    margin: 0 auto;
    background: url(../images/product-page/homepage.jpg) center center / cover no-repeat;
    padding: 110px 180px 80px;
    border-radius: 24px;
}

.install-content-item h2 {
    position: relative;
    color: #2A2037;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    margin: 0 auto 42px;
    background: url(../images/product-page/install-arrow.png) left bottom no-repeat;
}

.install-content-item h2 span {
    position: relative;
    z-index: 1;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #FFF;
    paint-order: stroke fill;
    color: #2A2037;
}

/* For better cross-browser compatibility */
@supports (-webkit-text-stroke: 3px #FFF) or (text-stroke: 3px #FFF) {
    .install-content-item h2 span {
        text-shadow:
            -1px -1px 0 #FFF,
            1px -1px 0 #FFF,
            -1px 1px 0 #FFF,
            1px 1px 0 #FFF;
    }
}

/* Fallback for browsers that don't support text-stroke */
@supports not ((-webkit-text-stroke: 3px #FFF) or (text-stroke: 3px #FFF)) {
    .install-content-item h2 span {
        text-shadow:
            3px 3px 0 #FFF,
            -3px -3px 0 #FFF,
            3px -3px 0 #FFF,
            -3px 3px 0 #FFF,
            3px 0 0 #FFF,
            -3px 0 0 #FFF,
            0 3px 0 #FFF,
            0 -3px 0 #FFF;
    }

    @media (max-width: 768px) {
        .install-content-item h2 span {
            text-shadow:
                2px 2px 0 #FFF,
                -2px -2px 0 #FFF,
                2px -2px 0 #FFF,
                -2px 2px 0 #FFF,
                2px 0 0 #FFF,
                -2px 0 0 #FFF,
                0 2px 0 #FFF,
                0 -2px 0 #FFF;
        }
    }

    @media (max-width: 576px) {
        .install-content-item h2 span {
            text-shadow:
                1.5px 1.5px 0 #FFF,
                -1.5px -1.5px 0 #FFF,
                1.5px -1.5px 0 #FFF,
                -1.5px 1.5px 0 #FFF,
                1.5px 0 0 #FFF,
                -1.5px 0 0 #FFF,
                0 1.5px 0 #FFF,
                0 -1.5px 0 #FFF;
        }
    }

    @media (max-width: 375px) {
        .install-content-item h2 span {
            text-shadow:
                1px 1px 0 #FFF,
                -1px -1px 0 #FFF,
                1px -1px 0 #FFF,
                -1px 1px 0 #FFF,
                1px 0 0 #FFF,
                -1px 0 0 #FFF,
                0 1px 0 #FFF,
                0 -1px 0 #FFF;
        }
    }
}

.install-content-item h2::before {
    content: "";
    position: absolute;
    top: -89px;
    left: -154px;
    width: 214.827px;
    height: 181.488px;
    background: url(../images/product-page/install-title1.png) center center / cover no-repeat;
}

.install-content-item h2::after {
    content: "";
    position: absolute;
    top: -77px;
    right: -113px;
    width: 170.104px;
    height: 163.856px;
    background: url(../images/product-page/install-title2.png) center center / cover no-repeat;
}

.install-content-item p {
    color: #797B82;

    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}



/* Responsive styles for install section */
@media (max-width: 1200px) {
    .install-content-item {
        padding: 90px 120px 70px;
    }

    .install-content-item h2 {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 992px) {
    .install-content-item {
        padding: 80px 80px 60px;
    }

    .install-content-item h2 {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 32px;
    }

    .install-content-item h2::before {
        top: -70px;
        left: -100px;
        width: 170px;
        height: 145px;
    }

    .install-content-item h2::after {
        top: -60px;
        right: -80px;
        width: 135px;
        height: 130px;
    }
}

@media (max-width: 768px) {

    .install-content-item {
        padding: 70px 40px 50px;
        background-position: center center;
        background-size: 100% 100%;
    }

    .install-content-item h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 24px;
        background: none;
    }

    .install-content-item h2 span {
        -webkit-text-stroke-width: 2px;
    }

    .install-content-item h2::before {
        top: -50px;
        left: -40px;
        width: 120px;
        height: 100px;
    }

    .install-content-item h2::after {
        top: -40px;
        right: -30px;
        width: 100px;
        height: 95px;
    }

    .install-content-item p {
        font-size: 16px;
    }

    .cta-wrap {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .install-content-item {
        padding: 60px 20px 40px;
    }

    .install-content-item h2 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    .install-content-item h2 span {
        -webkit-text-stroke-width: 1.5px;
    }

    .install-content-item h2::before {
        top: -40px;
        left: -20px;
        width: 100px;
        height: 85px;
        opacity: 0.8;
    }

    .install-content-item h2::after {
        top: -30px;
        right: -15px;
        width: 80px;
        height: 75px;
        opacity: 0.8;
    }

    .install-content-item p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 375px) {
    .install-content-item {
        padding: 50px 15px 30px;
    }

    .install-content-item h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .install-content-item h2 span {
        -webkit-text-stroke-width: 1px;
    }
}


/* Footer Section */

.footer {
    background-color: #2A2037;
    text-align: center;
    padding: 50px 20px;
}

.footer-note {
    margin-bottom: 33px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-links a:hover {
    text-decoration: underline;
}


/* Responsive */

@media only screen and (max-width:1256px) {
    .card {
        width: 305px;
    }

    .image-wrapper {
        height: 100%;
        min-height: 252px;
        max-height: 252px;
    }

    .card-image {
        min-height: auto;
    }

    .tools-list {
        margin-top: -121px;
    }

    .card-two-overlay {
        width: 84%;
    }

    .card-two-overlay .overlay-text {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .images-list {
        margin-top: -121px;
    }

    .images-list li img {
        width: 38px;
        height: 38px;
    }

    .ai-card-left,
    .ai-card-right {
        max-width: 860px;
        padding: 20px 20px 16px 20px;
    }

    .ai-content {
        padding: 0 28px;
    }

    .ai-content h3 {
        font-size: 31px;
        margin-top: 24px;
    }

    .ai-content div {
        font-size: 14px;
    }

    .how-to-use-section {
        background-position: top 30% left 10%, top 45% right;
    }

    .ai-features-section {
        background-size: cover;
    }
}

@media screen and (max-width: 1080px) {
    .hero-content-section h1 {
        font-size: 36px;
        line-height: 48px;
    }

    .hero-content-section .description {
        font-size: 14px;
        line-height: 20px;
    }

    .how-to-use-section h3 {
        font-size: 26px;
        line-height: 40px;
    }

    .how-to-use-section p {
        font-size: 14px;
        line-height: 20px;
    }

    .choose-us-section h2,
    .how-to-use-section h2,
    .ai-features-section h2 {
        font-size: 30px;
        line-height: 34px;
    }
}

@media only screen and (max-width:1023px) {

    .hero-section {
        flex-direction: column;
        padding: 50px 20px;
        align-items: center;
        background-size: 10%;
    }

    .choose-us-section,
    .how-to-use-section,
    .ai-features-section {
        padding: 50px 20px;
    }

    .install-section {
        margin-bottom: 50px;
    }

    .brNone {
        display: none;
    }

    .hero-image {
        margin-right: 0px;
    }

    .ai-card-left,
    .ai-card-right {
        max-width: none;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .ai-content h3 {
        font-size: 26px;
        line-height: 36px;
        margin-top: 20px;
    }

    .video-container {
        height: 100%;
    }

    .ai-card-left .image-wrapper,
    .ai-card-right .image-wrapper {
        max-width: 419px;
    }

    .ai-content {
        max-width: 100%;
    }
}

@media only screen and (max-width:768px) {
    .ai-content {
        padding: 0;
    }

    .hero-content-section {
        padding-left: 0px;
    }

    .hero-content-section .star-image {
        left: -11px;
        width: 50px;
    }

    .footer-note,
    .footer-links a {
        font-size: 12px;
        line-height: normal;
    }

    .footer-links {
        gap: 12px;
    }

    header {
        gap: 76px;
    }

    .navigation-links {
        gap: 32px;
    }

    .choose-us-section, .how-to-use-section {
        background-size: 10%;
    }
}

@media screen and (max-width: 630px) {
    .navigation-links {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    .tools-list {
        margin-top: -106px;
        gap: 5px;
    }

    .images-list {
        margin-top: -105px;
        gap: 4px;
    }

    .images-list li img {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width:360px) {
    .image-wrapper {
        height: auto;
        min-height: auto;
        max-height: none;
    }
}