@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap");

:root {
    --primary-color: #f14f44;
    --dark-color: #1f1f1f;
    --text-color: #666666;
    --light-background: #f0f2f4;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Sora", sans-serif;
    color: var(--text-color);
    background-color: var(--light-background);
}

body::before {
    content: "";
    position: fixed;
    top: -4px;
    left: 1%;
    z-index: 9999;
    width: 98%;
    height: 1px;
    border-radius: 0 0 50% 50%;
    box-shadow: 0 3px 9px 2px rgba(0, 0, 0, 0.40);
    pointer-events: none;
}

.announcement-bar {
    padding: 10px;
    background-color: var(--light-background);
    color: var(--text-color);
    text-align: center;
    font-size: 14px;
    /* box-shadow: inset 0 2px 14px -8px rgba(0, 0, 0, 0.8); */
}


.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px;
    padding: 4px 25px;
    border-radius: 10px;
    background-color: var(--white-color);
    position: sticky;
    top: 12px;
    z-index: 1000;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}

.site-header.nav-hidden {
    transform: translateY(calc(-100% - 25px));
}

.site-header.nav-scrolled {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.30);
}

.logo img {
    display: block;
    width: 285px;
    max-width: 100%;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    padding: 8px 14px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
    border-radius: 7px;
    background-color: transparent;
}

.navigation a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #0093e9;
    clip-path: circle(
        0 at var(--hover-x, 100%) var(--hover-y, 100%)
    );
    transition: clip-path 0.4s ease;
}

.navigation a:hover::before,
.navigation a.active::before {
    clip-path: circle(
        150% at var(--hover-x, 100%) var(--hover-y, 100%)
    );
}

.navigation a:hover,
.navigation a.active {
    color: var(--white-color);
}

/* Styling hero section */

.hero {
    position: relative;
    min-height: 530px;
    padding: 100px 7% 50px;
    background-color: var(--light-background);
}

.hero-top {
    display: grid;
    /* grid-template-columns: 60% 40%; */
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: start;
    /* gap: 60px; */
    gap: 20px;
}

.hero-title {
    margin: 0;
    color: var(--dark-color);
    font-size: 62px;
    font-weight: 600;
    line-height: 1.20;
    /* letter-spacing: -4px; */
}

.blue-text {
    color: #0093e9;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 0.9px var(--dark-color);
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateX(70px);
    animation: heroWordEntrance 0.65s ease forwards;
    animation-delay: calc(0.15s + var(--word) * 0.06s);
}

@keyframes heroWordEntrance {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-information {
    padding-top: 10px;
}

.hero-information p {
    max-width: 460px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

.hero-description-line {
    display: block;
    opacity: 0;
    transform: translateX(-60px);
    animation: heroInformationEntrance 0.65s ease forwards;
    animation-delay: calc(0s + var(--line) * 0.18s);
}

@keyframes heroInformationEntrance {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    position: relative;
    width: 120px;
    height: 120px;
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(80px);
    animation: heroBadgeEntrance 0.75s ease 0.35s forwards;
}

@keyframes heroBadgeEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateBadge 28s linear infinite;
}

.badge-center-icon {
    position: relative;
    z-index: 1;
    width: 55px;
    height: 55px;
    object-fit: contain;
    opacity: 0.65;
}

.badge-ring text {
    fill: var(--dark-color);
    font-size: 7.5px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.hero-badge span {
    font-size: 25px;
    font-weight: bold;
}

/* .hero-button {
    display: inline-block;
    margin-top: 70px;
    padding: 23px 38px;
    border-radius: 12px;
    background-color: var(--white-color);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
}

.hero-button:hover {
    background-color: #0093e9;
    color: var(--white-color);
}

.hero-image {
    display: transpare;
    width: 100px;
    height: 100px;
} */

.hero-media {
    position: relative;
    width: calc(100% + 14vw - 38px);
    margin-top: 70px;
    margin-left: calc(-7vw + 19px);
}

.hero-button {
    position: absolute;
    top: -28px;
    left: 6%;
    z-index: 2;
    display: inline-block;
    padding: 18px 30px;
    border-radius: 10px;
    background-color: var(--white-color);
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    position: absolute;
    z-index: 2;
    overflow: hidden;
    isolation: isolate;

    opacity: 0;
    transform: translateY(70px);
    animation: heroButtonEntrance 0.7s ease 0.4s forwards;
}

@keyframes heroButtonEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #0093e9;
    clip-path: circle(
        0 at var(--hover-x, 100%) var(--hover-y, 100%)
    );
    transition: clip-path 0.4s ease;
}

.hero-button:hover::before {
    clip-path: circle(
        150% at var(--hover-x, 100%) var(--hover-y, 100%)
    );
}

.hero-button:hover {
    color: var(--white-color);
}

.hero-image {
    display: block;
    width: 100%;
    height: 425px;
    overflow: hidden;
    border-radius: 25px;
    background-image: url("images/home/hero-image.jpg");
    background-position: center -20px;
    background-size: 100vw auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* .image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 35px;
    border-radius: 0 25px 0 25px;
    background-color: var(--white-color);
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 600;
} */

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Styling about Section */

.about {
    display: grid;
    grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
    gap: 120px;
    padding: 50px 1% 3px;
    background-color: var(--light-background);
    align-items: start;
    position: relative;
    box-shadow: inset 0 -3px 0 var(--white-color);
}

.about-left {
    position: sticky;
    top: 5px;
    align-self: start;
    padding-top: 10px;
    margin-bottom: 90px;
}

.about-logo {
    display: block;
    width: 500px;
    max-width: 100%;
    margin: 0 0 10px;
}

.about-introduction {
    max-width: 600px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

/* about logo and information effect starts */
.about-logo {
    opacity: 0;
    transform: translateX(-90px);
    transition:
        opacity 0.7s ease,
        transform 0.4s ease;
}

.about-introduction {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.about-left.about-visible .about-logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about-left.about-visible .about-introduction {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

/* about logo and information effect ends */

.about-label {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 15px;
}

.about-label a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-label a:hover {
    color: #0093e9;
}

.about-label a > span:first-child,
.about-button > span {
    color: #0093e9;
}

.about-content h2 {
    margin-bottom: 35px;
    color: var(--dark-color);
    font-size: 50px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -2px;
}

/* about - left column (<p> and <h2>) effects starts */
.about-word {
    display: inline-block;
    opacity: 0;
    transform: translateX(-45px);
}

.about-content.about-content-visible .about-word {
    animation: aboutWordEntrance 0.55s ease forwards;
    animation-delay: calc(0.2s + var(--word) * 0.02s);
}

@keyframes aboutWordEntrance {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* about - left column (<p> and <h2>) effects ends */

.about-tabs {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.about-tab {
    padding: 0;
    border: none;
    background: transparent;
    color: transparent;
    -webkit-text-stroke: 1px var(--dark-color);
    font: inherit;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.about-tab.active,
.about-tab:hover {
    color: var(--dark-color);
    -webkit-text-stroke: 0;
}

.about-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: start;
}

.about-left,
.about-content,
.about-tab-content,
.about-product-image {
    min-width: 0;
}

.about-tab-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

.about-tabs.shared-tabs {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.about-tabs.shared-tabs.tabs-visible {
    opacity: 1;
    transform: translateY(0);
}

#about-tab-text.shared-tab-text {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

#about-tab-text.shared-tab-text.tab-text-visible {
    opacity: 1;
    transform: translateY(0);
}

#about-tab-text.shared-tab-text.tab-text-switching {
    opacity: 0;
    transform: translateY(15px);
}

/* about - button effect starts */

.about-button {
    display: inline-block;
    margin-top: 65px;
    padding: 15px 25px;
    border-radius: 12px;
    background-color: var(--white-color);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    
    position: relative;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
    
    opacity: 0;
    transform: translateY(50px);
}

.about-content.about-content-visible .about-button {
    animation: aboutButtonEntrance 0.65s ease 1s forwards;
}

@keyframes aboutButtonEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #0093e9;
    clip-path: circle(
        0 at var(--hover-x, 100%) var(--hover-y, 100%)
        );
    transition: clip-path 0.4s ease;
}
    
.about-button:hover::before {
    clip-path: circle(
        150% at var(--hover-x, 100%) var(--hover-y, 100%)
    );
}
        
    
.about-button:hover {
    color: var(--white-color);
}

/* about - button effect ends */

/* about - product image effect starts */

.about-product-image {
    overflow: hidden;
    border-radius: 20px 20px 20px 0;

    opacity: 0;
    clip-path: inset(0 100% 0 0 round 25px);
}

.about-product-image img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: top center;
    max-width: 100%;

    transform: scale(1.1) translateX(-30px);
}

.about-content.about-content-visible .about-product-image {
    animation: aboutImageReveal 0.9s ease 1.05s forwards;
}

.about-content.about-content-visible .about-product-image img {
    animation: aboutImageSettle 1s ease 1s forwards;
}

@keyframes aboutImageReveal {
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0 round 25px);
    }
}

@keyframes aboutImageSettle {
    to {
        transform: scale(1) translateX(0);
    }
}

/* about - product image effect ends */

/* about - product bottom bar effect starts */

.about-bottom-bar {
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 78%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 25px;
    border-radius: 0 20px 0 0;
    background-color: var(--white-color);
    
    overflow: hidden;
}

.about-bottom-bar img {
    width: 200px;
    height: 60px;

    opacity: 0;
    transform: translateX(-60vw);
}

.about-content.about-content-visible
    ~ .about-bottom-bar img {
    animation: bottomBarLogoEntrance 1.3s ease 1.1s forwards;
}

@keyframes bottomBarLogoEntrance {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* about - product bottom bar effect ends */

/* Styling features section */

.features {
    padding: 100px 7% 20px;
    background-color: var(--white-color);
}

.features-heading {
    margin: 0 auto 60px;
    text-align: center;
}

.features-label {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 16px;
}

.features-heading h2 {
    color: var(--dark-color);
    font-size: 50px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -2px;
}

/* Services heading effect starts*/

.features-heading-word {
    display: inline-block;
    opacity: 0;
    transform: translateX(45px);
}

.features-heading.features-heading-visible
    .features-heading-word {
    animation: featuresWordEntrance 0.55s ease forwards;
    animation-delay: calc(0.2s + var(--word) * 0.09s);
}

@keyframes featuresWordEntrance {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* features heading effect ends*/

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 20px;

    border: 1px solid transparent;
    transition: border-color 0.35s ease 0.5s;  
}

.feature-grid.feature-cards-visible {
    border-color: #d8d8d8;
}

.feature-card {
    min-width: 0;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: 55px 45px 30px;
    background-color: var(--white-color);
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;

    opacity: 0;
    transform-origin: center;
    transition:
        opacity 0.65s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.1s ease;
    transition-delay: var(--card-delay, 0s);

    cursor: pointer;
}

.feature-card:hover {
    z-index: 2;
    box-shadow: inset 0 0 0 1px #0093e9;
}

.feature-card:nth-child(3n) {
    border-right: none;
}

.feature-card:nth-last-child(-n + 3) {
    border-bottom: none;
}

/* features card effect starts */

/* Top row */
.feature-card:nth-child(1) {
    transform: translate(100%, 100%) scale(0.45);
    --card-delay: 0.2s;
    border-radius: 18px 0 0 0;
}

.feature-card:nth-child(2) {
    transform: translateY(100%) scale(0.45);
    --card-delay: 0.12s;
}

.feature-card:nth-child(3) {
    transform: translate(-100%, 100%) scale(0.45);
    --card-delay: 0.2s;
    border-radius: 0 18px 0 0;
}

/* Middle row */
.feature-card:nth-child(4) {
    transform: translateX(100%) scale(0.45);
    --card-delay: 0.12s;
}

.feature-card:nth-child(5) {
    transform: scale(0.35);
    --card-delay: 0s;
}

.feature-card:nth-child(6) {
    transform: translateX(-100%) scale(0.45);
    --card-delay: 0.12s;
}

/* Bottom row */
.feature-card:nth-child(7) {
    transform: translate(100%, -100%) scale(0.45);
    --card-delay: 0.2s;
    border-radius: 0 0 0 18px;
}

.feature-card:nth-child(8) {
    transform: translateY(-100%) scale(0.45);
    --card-delay: 0.12s;
}

.feature-card:nth-child(9) {
    transform: translate(-100%, -100%) scale(0.45);
    --card-delay: 0.2s;
    border-radius: 0 0 18px 0;
}

.feature-grid.feature-cards-visible .feature-card {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.feature-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 75px;
    object-fit: contain;
}

.feature-card h3 {
    margin-bottom: 22px;
    color: var(--dark-color);
    font-size: 32px;
    line-height: 1.25;
}

.feature-card h3 span {
    color: transparent;
    -webkit-text-stroke: 1px #0093e9;
    transition:
        color 0.3s ease,
        -webkit-text-stroke 0.3s ease;
}

.feature-card:hover h3 span {
    color: #0093e9;
    -webkit-text-stroke: 0;
}

.feature-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

.feature-link {
    position: relative;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 30px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #0093e9;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.feature-card:hover .feature-link {
    color: #0093e9;
}

.feature-card:hover .feature-link::after {
    width: 100%;
}

/* features card effect ends */

.feature-stats {
    position: relative;
    left: 50%;
    width: calc(100vw - 50px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 0.3fr));
    gap: 20px;
    margin-top: 120px;
    transform: translateX(-50%);
}

.stat-card {
    position: relative;
    min-width: 0;
    min-height: 100px;
    padding: 35px 30px;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 20px;
    background-color: var(--white-color);
    margin-bottom: 10px;
    
    opacity: 0;
    transform-origin: center;
    transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.1s ease;
}

/* feature stat cards effect starts*/

.stat-card:nth-child(1) {
    transform: translateX(150%) scale(0.5);
    transition-delay: 0.15s;
}

.stat-card:nth-child(2) {
    transform: translateX(50%) scale(0.5);
}

.stat-card:nth-child(3) {
    transform: translateX(-50%) scale(0.5);
}

.stat-card:nth-child(4) {
    transform: translateX(-150%) scale(0.5);
    transition-delay: 0.15s;
}

.feature-stats.stats-visible .stat-card {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.stat-card p {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 15px;
    line-height: 1.1;
}

.stat-card strong {
    color: transparent;
    -webkit-text-stroke: 1px var(--dark-color);
    font-size: 45px;
    font-weight: 500;
    white-space: nowrap;
    
    transition:
        color 0.3s ease,
        -webkit-text-stroke 0.3s ease;
}

.stat-card:hover {
    z-index: 2;
    box-shadow: inset 0 0 0 1px #0093e9;
}

.stat-card:hover strong {
    color: #0093e9;
    -webkit-text-stroke: 0;
}

.stat-watermark {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #F2F2F2;
    width: 60px;
    height:60px;

    transition: color 0.3s ease;
}

.stat-card:hover .stat-watermark {
    color: #0093e9;
}

/* feature stat cards effect ends*/

/* Styling testimonials section */

.testimonials {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
    gap: 70px;
    padding: 80px 7%;
    background-color: var(--light-background);
    color: var(--dark-color);
    position: relative;
    overflow: clip;
}

.testimonial-globe {
    position: absolute;
    left: 20%;
    bottom: 90px;
    width: 750px;
    height: 450;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.testimonial-list {
    position: relative;
    z-index: 1;
}

.testimonials-left {
    position: sticky;
    top: 30px;
    align-self: start;
    min-width: 0;
    z-index: 1;
}

.testimonials-label {
    margin-bottom: 25px;
    font-size: 16px;
}

.testimonials-left h2 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -2px;
}

/* testimonial effect starts */

.testimonial-word {
    display: inline-block;
    opacity: 0;
    transform: translateX(-45px);
}

.testimonials-left.testimonials-visible
    .testimonial-word {
    animation: testimonialWordEntrance 0.4s ease forwards;
    animation-delay: calc(0.2s + var(--word) * 0.04s);
}

@keyframes testimonialWordEntrance {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.happy-customers {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 70px;
    
    opacity: 0;
    transform: translateY(45px);
}

.testimonials-left.testimonials-visible
.happy-customers {
    animation: happyCustomersEntrance 0.7s ease 0.8s forwards;
}

.testimonials-left.testimonials-visible
.customer-avatars img:first-child {
    transform: scale(1);
    transition-delay: 1s;
}

.testimonials-left.testimonials-visible
.customer-avatars img:last-child {
    transform: scale(1);
    transition-delay: 1.1s;
}

@keyframes happyCustomersEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customer-avatars {
    display: flex;
}

.customer-avatars img {
    width: 65px;
    height: 65px;
    border: 3px solid var(--light-background);
    border-radius: 50%;
    object-fit: cover;
    
    transform: scale(0);
    transition: transform 0.2s ease;
}

/* testimonial effect ends */

.customer-avatars img + img {
    margin-left: -15px;
}

.happy-customers strong {
    color: var(--dark-color);
    font-size: 22px;
}

.happy-customers p {
    margin-top: 4px;
    font-size: 16px;
}

.testimonial-list {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 25px;
}


.testimonial-card {
    padding: 30px 35px;
    border-radius: 25px;
    background-color: var(--white-color);
    
    opacity: 0;
    transform: translateX(100px) scale(0.92);
    transition:
    opacity 0.7s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

/* testimonial card effect starts */

.testimonial-list.testimonial-list-visible
    .testimonial-card {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.testimonial-list.testimonial-list-visible:not(.cards-ready)
    .testimonial-card:nth-child(1) {
    transition-delay: 0.15s;
}

.testimonial-list.testimonial-list-visible:not(.cards-ready)
    .testimonial-card:nth-child(2) {
    transition-delay: 0.35s;
}

.testimonial-list.testimonial-list-visible:not(.cards-ready)
    .testimonial-card:nth-child(3) {
    transition-delay: 0.55s;
}

.testimonial-text {
    color: var(--dark-color);
    font-size: 20px;
    line-height: 1.5;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    
    opacity: 0;
    transform: translateY(20px);
    transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.testimonial-list.testimonial-list-visible
    .testimonial-card:nth-child(1)
    .testimonial-footer {
        opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}

.testimonial-list.testimonial-list-visible
.testimonial-card:nth-child(2)
.testimonial-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.95s;
}

.testimonial-list.testimonial-list-visible
.testimonial-card:nth-child(3)
.testimonial-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.15s;
}

.testimonial-list.cards-ready
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* testimonial card effect ends */

.testimonial-customer {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-customer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-customer h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.testimonial-customer p {
    color: #0093e9;
    font-size: 16px;
}

.testimonial-rating {
    padding: 3px 10px;
    border-radius: 20px;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 2px;
}

/* Styling text-ticker section */

.text-ticker {
    overflow: hidden;
    padding: 60px 0;
    background-color: var(--white-color);

    opacity: 1;
    clip-path: inset(0);
}

/* text-ticker effect starts */

.text-ticker.ticker-visible {
    animation: tickerSectionReveal 1s
    cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes tickerSectionReveal {
    from {
        opacity: 0;
        clip-path: inset(0 50% 0 50%);
    }

    to {
        opacity: 1;
        clip-path: inset(0);
    }
}

.text-ticker:hover .ticker-track span {
    color: #0093e9;
    -webkit-text-stroke-color: #0093e9;
}

/* text-ticker effect ends */

.ticker-track {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: ticker 56s linear infinite;
}

.ticker-track span {
    color: transparent;
    -webkit-text-stroke: 1px var(--dark-color);
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
    /* text-transform: lowercase; */
    white-space: nowrap;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 40px));
    }
}

/* Styling footer */

.site-footer {
    position: relative;
    padding: 80px 7% 30px;
    background-color: var(--dark-color);
    color: var(--white-color);
    overflow: hidden;
}

.footer-circuit {
    position: absolute;
    left: 30%;
    top: 150px;
    z-index: 0;
    width: 520px;
    height: auto;
    opacity: 0.07;
    pointer-events: none;
    animation: rotateFooterCircuit 30s linear infinite;
}

.footer-main,
.footer-bottom {
    position: relative;
    z-index: 1;
}

@keyframes rotateFooterCircuit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(480px, 0.8fr);
    gap: 70px;
    align-items: start;
}

.footer-information {
    min-width: 0;
    max-width: 100%;
    padding-right: 50px;
    transform: translateX(-40px);
}

.footer-logo {
    display: block;
    width: 220px;
    max-width: 100%;
}

.footer-divider {
    width: 105%;
    height: 1px;
    margin: 40px 0 70px;
    background-color: #3b3b3b;
}

/* footer logo and divider effect starts */

.footer-logo,
.footer-divider {
    opacity: 0;
    transform: translateX(-60px);
}

.footer-information.footer-visible .footer-logo {
    animation: footerSlideIn 0.65s ease 0.15s forwards;
}

.footer-information.footer-visible .footer-divider {
    animation: footerSlideIn 0.65s ease 0.3s forwards;
}

@keyframes footerSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* footer logo and divider effect ends */

.footer-information > h2 {
    max-width: 850px;
    margin-bottom: 65px;
    font-size: 35px;
    line-height: 1.3;
}

/* footer information effect starts */

.footer-heading-word {
    display: inline-block;
    opacity: 0;
    transform: translateX(-40px);
}

.footer-information.footer-visible .footer-heading-word {
    animation: footerWordIn 0.4s ease forwards;
    animation-delay: calc(0.25s + var(--word) * 0.06s);
}

@keyframes footerWordIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* footer information effect ends */

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 55px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;

/* footer contact items effect starts */

opacity: 0;
transform: translateY(40px);
}

.footer-information.footer-visible .footer-contact-item {
    animation: footerContactIn 0.4s ease forwards;
}

.footer-information.footer-visible .footer-contact-item:nth-child(1) {
    animation-delay: 1.1s;
}

.footer-information.footer-visible .footer-contact-item:nth-child(2) {
    animation-delay: 1.2s;
}

.footer-information.footer-visible .footer-contact-item:nth-child(3) {
    animation-delay: 1.3s;
}

.footer-information.footer-visible .footer-contact-item:nth-child(4) {
    animation-delay: 1.4s;
}

@keyframes footerContactIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* footer contact items effect ends */

.footer-icon {
    color: #777777;
    font-size: 42px;
}

.footer-contact-item h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.footer-contact-item p {
    color: #aaaaaa;
    font-size: 16px;
}

/* footer contact item effect starts */

.footer-email-link {
    color: inherit;
    text-decoration: none;
}

.footer-email-link,
.footer-email-link h3,
.footer-email-link .footer-icon {
    transition: color 0.3s ease;
}

.footer-email-link:hover,
.footer-email-link:hover h3,
.footer-email-link:hover .footer-icon {
    color: #0093e9;
}

.footer-location-link {
    color: inherit;
    text-decoration: none;
}

.footer-location-link,
.footer-location-link h3,
.footer-location-link .footer-icon {
    transition: color 0.3s ease;
}

.footer-location-link:hover,
.footer-location-link:hover h3,
.footer-location-link:hover .footer-icon {
    color: #0093e9;
}

/* footer contact item effect ends */

.footer-form-card {
    min-width: 0;
    min-height: 600px;
    margin-top: 0px;
    padding: 45px;
    border-radius: 25px;
    background-color: var(--white-color);
    color: var(--dark-color);

/* footer form-card effect starts */

opacity: 0;
transform: translateX(80px) scale(0.96);
}

.footer-information.footer-visible + .footer-form-card {
    animation: footerFormIn 0.85s cubic-bezier(0.22, 1, 0.36, 1)
        0.45s forwards;
}

@keyframes footerFormIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}
    
/* footer form-card effect ends */    
    
.footer-form-card > h2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.footer-form-description {
    max-width: 470px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

.footer-form {
    margin-top: 35px;
}

.footer-form-field {
    position: relative;
    border-bottom: 1px solid #dddddd;

    transition: border-color 0.3s ease;
}

.footer-form-field input,
.footer-form-field textarea {
    width: 100%;
    padding: 25px 45px 25px 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--dark-color);
    font: inherit;
    font-size: 15px;
}

.footer-form-field textarea {
    min-height: 140px;
    resize: none;
}

.footer-form-field > span {
    position: absolute;
    top: 25px;
    right: 0;
    font-size: 20px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-form-field:focus-within {
    border-bottom-color: #0093e9;
}

.footer-form-field:focus-within > span {
    color: #0093e9;
    transform: scale(1.12);
}

.footer-form-field input::placeholder,
.footer-form-field textarea::placeholder {
    transition: opacity 0.2s ease;
}

.footer-form-field input:focus::placeholder,
.footer-form-field textarea:focus::placeholder {
    opacity: 0;
}

.form-field-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-form button {
    margin-top: 30px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    background-color: var(--dark-color);
    color: var(--white-color);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

/* footer button effect starts */

position: relative;
z-index: 0;
overflow: hidden;
isolation: isolate;
}

.footer-form button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #0093e9;
    clip-path: circle(
        0 at var(--hover-x, 100%) var(--hover-y, 100%)
    );
    transition: clip-path 0.4s ease;
}

.footer-form button:hover::before {
    clip-path: circle(
        150% at var(--hover-x, 100%) var(--hover-y, 100%)
    );
}

.footer-form button:hover {
    color: var(--white-color);
}
    
/* footer button effect ends */

#form-message {
    margin-top: 15px;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #3b3b3b;
    color: #aaaaaa;

    
}

.footer-bottom p {
    font-size: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 50px;
}

.footer-bottom-links a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.footer-bottom-links a:hover {
    color: #0093e9;
}

/* Small Desktop */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.menu-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.menu-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.menu-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* @media (max-width: 1200px) {
    .site-header {
        padding-inline: 20px;
    }

    .logo img {
        width: 230px;
    }

    .navigation {
        gap: 12px;
    }

    .navigation a {
        padding: 8px 10px;
        font-size: 13px;
    }
} */

/* Tablet */

/* @media (max-width: 992px) {
    .site-header {
        padding: 8px 18px;
    }

    .logo img {
        width: 210px;
    }

    .menu-toggle {
        display: block;
    }

    .navigation {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 15px;
        border-radius: 10px;
        background-color: var(--white-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        pointer-events: none;
        transition: 0.3s ease;
    }

    .navigation.menu-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navigation a {
        text-align: center;
    }
} */

/* Mobile Phones */

/* @media (max-width: 768px) {
    .announcement-bar {
        padding: 8px 12px;
        font-size: 12px;
    }

    .site-header {
        top: 8px;
        margin-inline: 8px;
        padding: 7px 12px;
    }

    .logo img {
        width: 170px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .navigation {
        top: calc(100% + 8px);
    }

    .navigation a {
        padding: 11px;
        font-size: 13px;
    }
} */

/* Complete responsive layout */

@media (max-width: 1200px) {
    .site-header {
        padding-inline: 20px;
    }

    .logo img {
        width: 230px;
    }

    .navigation {
        gap: 12px;
    }

    .navigation a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .hero {
        padding-inline: 5%;
    }

    .hero-title {
        font-size: clamp(48px, 5vw, 58px);
    }

    .hero-media {
        width: calc(100% + 10vw - 30px);
        margin-left: calc(-5vw + 15px);
    }

    .about {
        gap: 70px;
        padding-inline: 3%;
    }

    .about-content h2,
    .features-heading h2 {
        font-size: 44px;
    }

    .feature-card {
        min-height: 460px;
        padding: 45px 32px 28px;
    }

    .feature-icon {
        margin-bottom: 55px;
    }

    .feature-card h3 {
        font-size: 27px;
    }

    .feature-stats {
        width: calc(100vw - 40px);
    }

    .testimonials {
        gap: 45px;
        padding-inline: 5%;
    }

    .testimonials-left h2 {
        font-size: 44px;
    }

    .site-footer {
        padding-inline: 5%;
    }

    .footer-main {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
        gap: 45px;
    }

    .footer-information {
        padding-right: 0;
        transform: none;
    }

    .footer-contact-grid {
        gap: 30px;
    }

    .footer-contact-item h3 {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 8px 18px;
    }

    .logo img {
        width: 210px;
    }

    .menu-toggle {
        display: block;
    }

    .navigation {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 15px;
        border-radius: 10px;
        background-color: var(--white-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        pointer-events: none;
        transition: 0.3s ease;
    }

    .navigation.menu-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navigation a {
        text-align: center;
    }

    body {
        overflow-x: hidden;
    }

    .hero {
        padding: 75px 5% 45px;
    }

    .hero-top {
        grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
        gap: 35px;
    }

    .hero-title {
        font-size: clamp(43px, 5.5vw, 52px);
    }

    .hero-badge {
        width: 105px;
        height: 105px;
        margin-top: 30px;
    }

    .hero-media {
        width: 100%;
        margin-top: 55px;
        margin-left: 0;
    }

    .hero-image {
        height: 370px;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 75px 5% 0;
        box-shadow: none;
    }

    .about-left {
        position: static;
        display: grid;
        grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
        align-items: center;
        gap: 40px;
        margin-bottom: 0;
        padding-top: 0;
    }

    .about-logo {
        width: 380px;
        margin: 0;
    }

    .about-content h2 {
        font-size: 44px;
    }

    .about-details {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    }

    .about-product-image img {
        height: 410px;
    }

    .about-bottom-bar {
        position: relative;
        left: -5vw;
        bottom: auto;
        width: calc(100% + 10vw);
        margin-top: 45px;
    }

    .features {
        padding: 80px 5% 25px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        overflow: visible;
        border: 0;
    }

    .feature-grid.feature-cards-visible {
        border-color: transparent;
    }

    .feature-card,
    .feature-card:nth-child(n) {
        min-height: 420px;
        padding: 38px 30px 26px;
        border: 1px solid #e0e0e0;
        border-radius: 18px;
        transform: translateY(55px) scale(0.94);
    }

    .feature-grid.feature-cards-visible .feature-card {
        transform: translateY(0) scale(1);
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 42px;
    }

    .feature-stats {
        position: static;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 75px;
        transform: none;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 75px 5%;
    }

    .testimonials-left {
        position: static;
    }

    .testimonials-left h2 {
        max-width: 720px;
    }

    .happy-customers {
        margin-top: 45px;
    }

    .testimonial-globe {
        left: 5%;
        top: 180px;
        bottom: auto;
        width: 650px;
        max-width: 90vw;
    }

    .ticker-track span {
        font-size: 90px;
    }

    .site-footer {
        padding: 70px 5% 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-divider {
        width: 100%;
        margin: 35px 0 50px;
    }

    .footer-form-card {
        width: 100%;
        min-height: auto;
    }

    .footer-circuit {
        left: 35%;
        top: 280px;
        width: 480px;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 8px 12px;
        font-size: 12px;
    }

    .site-header {
        top: 8px;
        margin-inline: 8px;
        padding: 7px 12px;
    }

    .logo img {
        width: 170px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .navigation {
        top: calc(100% + 8px);
    }

    .navigation a {
        padding: 11px;
        font-size: 13px;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 20px 35px;
    }

    .hero-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.16;
    }

    .hero-information {
        padding-top: 0;
    }

    .hero-information p {
        max-width: 620px;
        font-size: 15px;
    }

    .hero-badge {
        width: 95px;
        height: 95px;
        margin-top: 25px;
    }

    .badge-center-icon {
        width: 44px;
        height: 44px;
    }

    .hero-media {
        width: 100%;
        margin-top: 50px;
        margin-left: 0;
    }

    .hero-button {
        left: 20px;
        padding: 15px 22px;
    }

    .hero-image {
        height: clamp(240px, 62vw, 340px);
        border-radius: 18px;
    }

    .about {
        gap: 45px;
        padding: 65px 20px 0;
    }

    .about-left {
        display: block;
    }

    .about-logo {
        width: min(420px, 100%);
        margin-bottom: 25px;
    }

    .about-introduction,
    .about-tab-content p {
        font-size: 15px;
    }

    .about-content h2 {
        font-size: clamp(34px, 8.5vw, 42px);
        letter-spacing: -1.5px;
    }

    .about-content .about-tab-content {
        height: 190px;
    }

    .about-tabs {
        flex-wrap: wrap;
        gap: 18px 28px;
        margin-bottom: 30px;
    }

    .about-tab {
        font-size: 18px;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-button {
        margin-top: 35px;
    }

    .about-product-image img {
        height: clamp(300px, 90vw, 430px);
    }

    .about-bottom-bar {
        left: -20px;
        width: calc(100% + 40px);
        height: 72px;
        margin-top: 35px;
    }

    .about-bottom-bar img {
        width: 160px;
        height: auto;
    }

    .features {
        padding: 65px 20px 20px;
    }

    .features-heading {
        margin-bottom: 40px;
    }

    .features-heading h2 {
        font-size: clamp(34px, 8.5vw, 42px);
        letter-spacing: -1.5px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card:nth-child(n) {
        min-height: 390px;
        padding: 34px 25px 24px;
    }

    .feature-card h3 {
        font-size: 26px;
    }

    .feature-card p {
        font-size: 15px;
    }

    .feature-stats {
        gap: 14px;
        margin-top: 55px;
    }

    .stat-card {
        padding: 28px 22px;
    }

    .stat-card strong {
        font-size: 38px;
    }

    .stat-watermark {
        top: 28px;
        right: 22px;
        width: 48px;
        height: 48px;
    }

    .testimonials {
        gap: 45px;
        padding: 65px 20px;
    }

    .testimonials-left h2 {
        font-size: clamp(34px, 8.5vw, 42px);
        letter-spacing: -1.5px;
    }

    .testimonial-card {
        padding: 26px 24px;
        border-radius: 18px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-footer {
        align-items: flex-start;
        gap: 18px;
        margin-top: 30px;
    }

    .testimonial-customer img {
        width: 52px;
        height: 52px;
    }

    .testimonial-customer h3 {
        font-size: 16px;
    }

    .testimonial-customer p {
        font-size: 14px;
    }

    .text-ticker {
        padding: 45px 0;
    }

    .ticker-track {
        gap: 50px;
    }

    .ticker-track span {
        font-size: 65px;
    }

    .site-footer {
        padding: 60px 20px 25px;
    }

    .footer-information > h2 {
        margin-bottom: 45px;
        font-size: 30px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-form-card {
        padding: 35px 28px;
        border-radius: 20px;
    }

    .footer-form-field textarea {
        min-height: 110px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 20px 35px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 11px;
    }

    .logo img {
        width: 145px;
    }

    .hero-title,
    .about-content h2,
    .features-heading h2,
    .testimonials-left h2 {
        overflow-wrap: anywhere;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-image {
        height: 230px;
    }

    .about-content h2,
    .features-heading h2,
    .testimonials-left h2 {
        font-size: 32px;
    }

    .about-tabs {
        gap: 15px 20px;
    }

    .about-tab {
        font-size: 16px;
    }

    .feature-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 145px;
    }

    .testimonial-footer {
        flex-direction: column;
    }

    .testimonial-rating {
        align-self: flex-start;
    }

    .customer-avatars img {
        width: 54px;
        height: 54px;
    }

    .ticker-track span {
        font-size: 50px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-information > h2 {
        font-size: 26px;
    }

    .footer-contact-item {
        gap: 14px;
    }

    .footer-icon,
    .footer-icon svg {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .footer-contact-item h3 {
        overflow-wrap: anywhere;
        font-size: 15px;
    }

    .footer-contact-item p,
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 13px;
    }

    .footer-form-card {
        padding: 30px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}