:root {
    --first-font: "Inter", sans-serif;
    --second-font: "Geist Mono", monospace;
    --primary-color: #F53003;
    --secondary-color: #0A1A2F;
    --accent-color: #006F53;
    --text-color: #7C7C7C;
    --gray-color: #f7f7f7;
    --border-color: #e5e5e5;
    --black: #141414;
    --light-dark: #31312e;
    --white: #ffffff;
    --h1: normal 500 60px/1.2 var(--first-font);
    --h2: normal 500 36px/44px var(--first-font);
    --h3: normal 500 24px/34px var(--first-font);
    --h4: normal 500 18px/28px var(--first-font);
    --common-text: normal 400 16px/24px var(--first-font);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font: var(--common-text);
    color: var(--text-color);
    background-color: var(--white);
    letter-spacing: normal;
}

body.no-scroll {
    overflow: hidden;
}

h1,
.h1 {
    font: var(--h1) !important;
}

h2,
.h2 {
    font: var(--h2) !important;
}

h3,
.h3 {
    font: var(--h3) !important;
}

h4,
.h4 {
    font: var(--h4) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--black);
    letter-spacing: normal;
}

a {
    display: block;
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    outline: none;
}

button {
    outline: none;
    border: none;
}

.btn {
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    gap: 10px;
    background-color: var(--black);
    color: var(--white);
    padding: 14px 28px;
    text-align: center;
    border: 1px solid var(--black);
    font-weight: 500;
    transition: all ease-in-out 300ms;
}

svg path {
    transition: all ease-in-out 300ms;
}

.btn:not(.btn-transparent, .btn-primary, .btn-white):hover,
.btn:not(.btn-transparent, .btn-primary, .btn-white):focus {
    background-color: var(--light-dark);
}

.btn-transparent {
    background-color: transparent;
    color: var(--black);
    border-color: var(--border-color);
}

.btn-transparent:hover,
.btn-transparent:focus {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-white {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--black);
}

/* overlay css */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.subtitle {
    position: relative;
    display: inline-block;
    color: var(--black);
    font-family: var(--second-font);
    padding: 0 0 0 18px;
    margin: 0 0 15px;
    line-height: 1;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: ZoomOutAnimation 2s ease-in-out infinite;
    -webkit-animation: ZoomOutAnimation 2s ease-in-out infinite;
    will-change: transform;
}
@keyframes ZoomOutAnimation {
    0% {
        transform: translateY(-50%) scale(1);
        -webkit-transform: translateY(-50%) scale(1);
        -moz-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
        -o-transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        -webkit-transform: translateY(-50%) scale(1.1);
        -moz-transform: translateY(-50%) scale(1.1);
        -ms-transform: translateY(-50%) scale(1.1);
        -o-transform: translateY(-50%) scale(1.1);
    }
    100% {
        transform: translateY(-50%) scale(0.9);
        -webkit-transform: translateY(-50%) scale(0.9);
        -moz-transform: translateY(-50%) scale(0.9);
        -ms-transform: translateY(-50%) scale(0.9);
        -o-transform: translateY(-50%) scale(0.9);
    }
}

/* Feature icon animations */
@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        -moz-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -o-transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.9;
        transform: scale(1.08) rotate(8deg);
        -webkit-transform: scale(1.08) rotate(8deg);
        -moz-transform: scale(1.08) rotate(8deg);
        -ms-transform: scale(1.08) rotate(8deg);
        -o-transform: scale(1.08) rotate(8deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        -moz-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -o-transform: scale(1) rotate(0deg);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.08) rotate(-8deg);
        -webkit-transform: scale(1.08) rotate(-8deg);
        -moz-transform: scale(1.08) rotate(-8deg);
        -ms-transform: scale(1.08) rotate(-8deg);
        -o-transform: scale(1.08) rotate(-8deg);
    }
}

@keyframes boxFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        -webkit-transform: translateY(0) rotate(0deg);
        -moz-transform: translateY(0) rotate(0deg);
        -ms-transform: translateY(0) rotate(0deg);
        -o-transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-4px) rotate(2deg);
        -webkit-transform: translateY(-4px) rotate(2deg);
        -moz-transform: translateY(-4px) rotate(2deg);
        -ms-transform: translateY(-4px) rotate(2deg);
        -o-transform: translateY(-4px) rotate(2deg);
    }
    66% {
        transform: translateY(2px) rotate(-2deg);
        -webkit-transform: translateY(2px) rotate(-2deg);
        -moz-transform: translateY(2px) rotate(-2deg);
        -ms-transform: translateY(2px) rotate(-2deg);
        -o-transform: translateY(2px) rotate(-2deg);
    }
}

.feature-icon-spin svg {
    animation: iconRotate 3s linear infinite;
    -webkit-animation: iconRotate 3s linear infinite;
    -moz-animation: iconRotate 3s linear infinite;
    -ms-animation: iconRotate 3s linear infinite;
    -o-animation: iconRotate 3s linear infinite;
}

.star-1 {
    animation: starTwinkle 3s ease-in-out infinite;
    -webkit-animation: starTwinkle 3s ease-in-out infinite;
    -moz-animation: starTwinkle 3s ease-in-out infinite;
    -ms-animation: starTwinkle 3s ease-in-out infinite;
    -o-animation: starTwinkle 3s ease-in-out infinite;
    transform-origin: center;
    -webkit-transform-origin: center;
}

.star-2 {
    animation: starTwinkle 3s ease-in-out infinite 1.5s;
    -webkit-animation: starTwinkle 3s ease-in-out infinite 1.5s;
    -moz-animation: starTwinkle 3s ease-in-out infinite 1.5s;
    -ms-animation: starTwinkle 3s ease-in-out infinite 1.5s;
    -o-animation: starTwinkle 3s ease-in-out infinite 1.5s;
    transform-origin: center;
    -webkit-transform-origin: center;
}

.box-icon svg {
    animation: boxFloat 4s ease-in-out infinite;
    -webkit-animation: boxFloat 4s ease-in-out infinite;
    -moz-animation: boxFloat 4s ease-in-out infinite;
    -ms-animation: boxFloat 4s ease-in-out infinite;
    -o-animation: boxFloat 4s ease-in-out infinite;
    transform-origin: center;
    -webkit-transform-origin: center;
}

/* Backend features card icon animations */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
    }
}

.pulse-icon {
    animation: iconPulse 2s ease-in-out infinite;
    -webkit-animation: iconPulse 2s ease-in-out infinite;
    -moz-animation: iconPulse 2s ease-in-out infinite;
    -ms-animation: iconPulse 2s ease-in-out infinite;
    -o-animation: iconPulse 2s ease-in-out infinite;
    transform-origin: center;
    -webkit-transform-origin: center;
}

/* Testimonial quote icon animation */
@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        -webkit-transform: translateY(0) scale(1);
        -moz-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        -o-transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) scale(1.05);
        -webkit-transform: translateY(-5px) scale(1.05);
        -moz-transform: translateY(-5px) scale(1.05);
        -ms-transform: translateY(-5px) scale(1.05);
        -o-transform: translateY(-5px) scale(1.05);
        opacity: 0.9;
    }
}

.testimonial-card svg {
    animation: quoteFloat 3s ease-in-out infinite;
    -webkit-animation: quoteFloat 3s ease-in-out infinite;
    -moz-animation: quoteFloat 3s ease-in-out infinite;
    -ms-animation: quoteFloat 3s ease-in-out infinite;
    -o-animation: quoteFloat 3s ease-in-out infinite;
    transform-origin: center;
    -webkit-transform-origin: center;
}

.mobile-menu.show {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

/* features section css */
.home-feature-sec .feature-icon {
    box-shadow: 0px 0.75px 0.75px 0px #FFFFFFA3 inset;
    box-shadow: 0px 0px 0px 1px #3D3D3D1F;
}

.form-control {
    font-size: 14px;
    width: 100%;
    color: var(--black);
    border: 1px solid #F2F2F2;
    padding: 12px 15px;
    outline: none;
}

.form-control::placeholder {
    color: #A3A3A3;
}

/* Features section */
.feature-sec .feature-tab {
    transition: all 300ms ease-in-out;
}

.feature-sec .feature-tab::after {
    content: '';
    position: absolute;
    opacity: 0;
    visibility: hidden;
    background-color: var(--black);
    transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
}

.feature-sec .feature-tab:hover::after,
.feature-sec .feature-tab.active::after {
    opacity: 1;
    visibility: visible;
}

.feature-image::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30%;
    z-index: 2;
    backdrop-filter: blur(54.82px);
    -webkit-backdrop-filter: blur(54.82px);
    background: rgba(255, 255, 255, 0.35);
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
    pointer-events: none;
}

.feature-sec .feature-image.active {
    animation: fadeIn 0.25s ease-in-out;
}

.feature-sec .feature-image img.active {
    animation: fadeIn 0.25s ease-in-out;
}

.feature-sec .feature-image-inner:before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    height: 50px;
    width: 100%;
    transform: translateX(-50%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.32) 100%);
    backdrop-filter: blur(2px);
}

.feature-sec .feature-tab-wrp::-webkit-scrollbar,
.templates-sec .template-tab-wrp ul::-webkit-scrollbar {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* templates-sec css start */
.templates-sec .template-tab-content {
    display: none;
}

.templates-sec .template-tab-content.active {
    display: block;
}

.templates-sec .template-tab-wrp ul li a.active {
    color: var(--black);
}

.templates-sec .template-tab-wrp ul li a {
    border-bottom: 1px solid transparent;
}

/* templates-sec css end */

/* component sec css */
.component-sec .component-card::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    height: 7px;
    width: 7px;
    background-color: var(--border-color);
    border-radius: 2px;
}

/* partner logo slider */
.partner-logo-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* testimonial-sec css */
.testimonial-sec .swiper-slide {
    opacity: 0.3;
    transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -ms-transition: all ease 300ms;
    -o-transition: all ease 300ms;
}

.testimonial-sec .swiper-slide-active {
    opacity: 1;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
}

.testimonial-sec .swiper-slide-prev,
.testimonial-sec .swiper-slide-next {
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
}

/* about page css */

/* contact form css */
.contact-sec form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 8px;
}
.contact-sec form input,
.contact-sec form textarea {
        font-size: 14px;
    width: 100%;
    color: var(--black);
    border: 1px solid #F2F2F2;
    padding: 12px 15px;
    outline: none;
    background-color: transparent;
}
.contact-sec form textarea {
    resize: none;
}
.contact-sec form input:focus {
    border-color: var(--primary-color);
}
.contact-sec form br {
    display: none;
}
.contact-sec form>p:not(:last-of-type) {
    margin-bottom: 32px;
}