.light-background,
:root {
    --surface-color: #ffffff;
}
.dark-background,
:root {
    --contrast-color: #ffffff;
}
a,
a:hover {
    text-decoration: none;
}
.php-email-form .error-message,
.php-email-form .loading,
.php-email-form .sent-message {
    display: none;
    padding: 15px;
    margin-bottom: 24px;
}
.header,
body {
    color: var(--default-color);
    background-color: var(--background-color);
}
#preloader,
.footer,
.header,
body {
    background-color: var(--background-color);
}
.hero .wave1 use,
.hero .wave2 use,
.hero .wave3 use {
    fill: var(--default-color);
}
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
    --background-color: #ffffff;
    --default-color: #040677;
    --heading-color: #040677;
    --accent-color: #fca939;
    --nav-color: #ffffff;
    --nav-hover-color: #fca939;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #fca939;
    scroll-behavior: smooth;
}
.dark-background,
.header {
    --default-color: #ffffff;
    --heading-color: #ffffff;
}
.light-background {
    --background-color: #f4f5fe;
}
.dark-background {
    --background-color: #08005e;
    --surface-color: #0c0091;
}
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }
    .header {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }
    .header {
        font-size: 18px;
    }
    .cta-button {
        display: block;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .header {
        font-size: 16px;
        text-align: center;
    }
    .menu {
        display: none;
    }
}
body {
    font-family: var(--default-font);
}
a {
    color: var(--accent-color);
    transition: 0.3s;
}
a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}
.php-email-form .error-message {
    background: #df1529;
    color: #fff;
    text-align: left;
    font-weight: 600;
}
.php-email-form .sent-message {
    color: #fff;
    background: #059652;
    text-align: center;
    font-weight: 600;
}
.php-email-form .loading {
    background: var(--surface-color);
    text-align: center;
}
.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: 1s linear infinite php-email-form-loading;
}
@keyframes php-email-form-loading {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.header {
    --background-color: rgba(255, 255, 255, 0);
    padding: 38px 0;
    transition: 0.5s;
    z-index: 997;
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 50px;
    margin-right: 8px;
}
.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}
.scrolled .header {
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
    --background-color: #10058c;
}
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }
    .navmenu > ul > li:last-child {
        padding-right: 0;
    }
    .navmenu a,
    .navmenu a:focus {
        color: color-mix(in srgb, var(--nav-color), transparent 20%);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0;
        transition: 0.3s ease-in-out;
    }
    .navmenu .active:before,
    .navmenu a:hover:before,
    .navmenu li:hover > a:before {
        visibility: visible;
        width: 25px;
    }
    .navmenu .active,
    .navmenu .active:focus,
    .navmenu li:hover > a {
        color: var(--nav-color);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
    .pricing .pricing-tem:hover {
        transform: scale(1.1);
    }
}
.contact .info-item i,
.features .feature-box i {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
}
/* Footer Styling */
footer {
    background-color: #040677; /* Dark background */
    color: #ddd; /* Light text */
    padding: 40px 0;
    font-size: 14px;
}

footer h5 {
    color: #fca939; /* Heading color */
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer Divider */
footer hr {
    border-top: 1px solid #0026ff;
    margin: 20px 0;
}

/* Payment Logos */
footer img {
    margin-right: 10px;
    filter: brightness(0.8); /* Slightly dimmed */
    transition: filter 0.3s ease;
}

footer img:hover {
    filter: brightness(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    footer .col-md-4 {
        text-align: center;
        margin-bottom: 20px;
    }
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    transition: 0.6s ease-out;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: 1s linear infinite animate-preloader;
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: 0.4s;
}
.hero,
.page-title,
.section-title {
    position: relative;
}
.page-title,
.section,
section {
    color: var(--default-color);
    background-color: var(--background-color);
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}
.faq .faq-container .faq-active h3,
.faq .faq-container .faq-item .faq-toggle:hover,
.faq .faq-container .faq-item h3:hover,
.features .features-item:hover h3 a,
.hero .btn-watch-video i,
.hero .btn-watch-video:hover,
.section-title div .description-title,
.section-title h2,
.service-details .download-catalog a:hover {
    color: var(--accent-color);
}
.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}
.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}
.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.page-title nav ol li + li {
    padding-left: 10px;
}
.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.section,
section {
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu .active,
    .navmenu .active:focus,
    .navmenu a:hover {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu > ul {
        display: block;
    }
    .section,
    section {
        scroll-margin-top: 66px;
    }
}
.section-title {
    text-align: center;
    padding-bottom: 60px;
}
.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}
.about .content .read-more,
.hero .btn-get-started,
.pricing .btn-buy,
.pricing .price,
.section-title div {
    font-family: var(--heading-font);
}
.section-title div {
    color: var(--heading-color);
    margin: 10px 0 0;
    font-size: 32px;
    font-weight: 700;
}
.hero .btn-get-started,
.hero .btn-get-started:hover {
    color: var(--contrast-color);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.hero {
    width: 100%;
    min-height: 70vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
}
.hero .hero-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    position: absolute;
    inset: 0;
    z-index: 2;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero h1 {
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 56px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
}
.hero h1 span {
    color: var(--heading-color);
    border-bottom: 4px solid var(--accent-color);
}
.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px;
    font-size: 18px;
    font-weight: 400;
}
.hero .btn-get-started {
    background: var(--accent-color);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px;
    border-radius: 50px;
    transition: 0.5s;
}
.features .feature-box,
.features .features-item,
.pricing .pricing-tem,
.services .service-item,
.testimonials .testimonial-item {
    background-color: var(--surface-color);
}
.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}
.hero .btn-watch-video i {
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}
.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.hero .animated {
    animation: 2s ease-in-out infinite alternate-reverse both up-down;
}
@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}
.hero .hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}
.hero .wave1 use {
    animation: 10s linear -2s infinite move-forever1;
    opacity: 0.6;
}
.hero .wave2 use {
    animation: 8s linear -2s infinite move-forever2;
    opacity: 0.4;
}
.hero .wave3 use {
    animation: 6s linear -2s infinite move-forever3;
}
@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0);
    }
    100% {
        transform: translate(-90px, 0);
    }
}
@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0);
    }
    100% {
        transform: translate(85px, 0);
    }
}
@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0);
    }
    100% {
        transform: translate(85px, 0);
    }
}
@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}
.features-item {
    perspective: 1000px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.features-item-inner {
    position: relative;
    width: 100%;
    height: 200px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.features-item-back,
.features-item:hover .features-item-inner {
    transform: rotateY(180deg);
}
.features-item:hover {
    transform: scale(1.3);
}
.features-item-back,
.features-item-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}
.features-item-front {
    background-color: #fff;
}
.features-item-back {
    background-color: #fca939;
}
.features-item h3 {
    font-size: 1.25rem;
    margin: 10px 0;
}
.features-item p {
    font-size: 0.7rem;
    text-align: center;
    color: #fff;
    word-wrap: break-word;
    margin: 0;
}
.features .features-item {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 0 solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
}
.features .features-item i {
    font-size: 32px;
    line-height: 0;
    padding: 10px;
}
.features .features-item h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
}
.features .features-item h3 a {
    color: var(--heading-color);
    transition: 0.3s;
}
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form textarea:focus,
.features .features-item:hover {
    border-color: var(--accent-color);
}
.about .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.about .content .read-more,
.services .service-item .icon {
    color: var(--contrast-color);
    background: var(--accent-color);
}
.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}
.about .content ul {
    list-style: none;
    padding: 0;
}
.about .content ul li,
.pricing ul li {
    padding-bottom: 10px;
}
.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}
.about .content .read-more {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}
.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}
.about .content .read-more:hover i {
    margin-left: 10px;
}
.about .about-images img {
    border-radius: 10px;
}
.services .service-item {
    box-shadow: 0 5px 90px 0 rgba(0, 0, 0, 0.1);
    padding: 60px 30px;
    transition: 0.3s ease-in-out;
    border-radius: 18px;
    border-bottom: 5px solid var(--surface-color);
    height: 100%;
}
.services .service-item .icon {
    margin: 0 0 20px;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.3s ease-in-out;
}
.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px;
    font-size: 22px;
    transition: 0.3s ease-in-out;
}
.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
@media (min-width: 1365px) {
    .services .service-item:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
    }
    .services .service-item:hover h3 {
        color: var(--accent-color);
    }
}
.features .feature-box {
    padding: 24px 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    height: 100%;
}
.features .feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.features .feature-box i {
    color: var(--accent-color);
    line-height: 0;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
}
.pricing .price span,
.testimonials .testimonial-item h4 {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.hidden {
    display: none;
}
.contact .info-item:hover i,
.features .feature-box:hover i,
.pricing .btn-buy:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}
.testimonials .testimonial-wrap {
    padding-left: 50px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}
.testimonials .testimonial-item {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    position: relative;
}
.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid var(--background-color);
    position: absolute;
    left: -45px;
}
.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px;
}
.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0;
}
.testimonials .testimonial-item .stars {
    margin: 10px 0;
}
.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 26px;
    line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto;
}
.testimonials .swiper-wrapper {
    height: auto;
}
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}
@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }
    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }
    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }
    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}
.pricing-section {
    text-align: center;
    padding: 40px 20px;
}
.pricing-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.pricing-header {
    display: flex;
    width: 100%;
    background: #f8f8f8;
    padding: 15px;
    font-weight: 700;
}
.pricing-row {
    display: flex;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.feature-column {
    flex: 2;
    text-align: left;
    padding-left: 15px;
}
.plan-column {
    flex: 1;
    text-align: center;
}
.standard h3 {
    color: #00879e;
}
.premium h3 {
    color: #003092;
}
.pro h3 {
    color: #ff6f30;
}
.growth h3 {
    color: #00008b;
}
.bi-check-circle-fill,
.bi-x-circle-fill {
    font-size: 18px;
}
.green {
    color: green;
}
.pricing .pricing-tem {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}
.pricing h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}
.pricing .price {
    font-size: 36px;
    color: var(--heading-color);
    font-weight: 600;
}
.pricing .price sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}
.pricing .price span {
    font-size: 16px;
    font-weight: 300;
}
.pricing .icon {
    padding: 20px 0;
}
.pricing .icon i,
.service-details .help-box .help-icon {
    font-size: 48px;
}
.pricing ul {
    padding: 0;
    list-style: none;
    color: var(--default-color);
    text-align: center;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 25px;
}
.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
    text-decoration: line-through;
}
.pricing .btn-buy {
    display: inline-block;
    padding: 8px 40px 10px;
    border-radius: 50px;
    color: var(--accent-color);
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--accent-color);
}
.pricing .featured {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px;
    background: var(--accent-color);
    color: var(--contrast-color);
}
.faq .faq-container .faq-item,
.service-details .service-box,
.service-details .services-list {
    background-color: var(--surface-color);
}
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}
.faq .content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.faq .faq-container .faq-item {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}
.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}
.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}
.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}
.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}
.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}
.contact .info-item + .info-item {
    margin-top: 40px;
}
.contact .info-item i {
    color: var(--accent-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    margin-right: 15px;
}
.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}
.contact .php-email-form {
    height: 100%;
}
.contact .php-email-form input[type="email"],
.contact .php-email-form input[type="text"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}
.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
.service-details .service-box {
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.service-details .service-box + .service-box {
    margin-top: 30px;
}
.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
}
.service-details .help-box,
.service-details .help-box a,
.service-details .help-box h4,
.service-details .services-list a.active i {
    color: var(--contrast-color);
}
.service-details .services-list a:first-child {
    margin-top: 0;
}
.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
}
.service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}
.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}
.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}
.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}
.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}
.service-details .help-box {
    background-color: var(--accent-color);
    margin-top: 30px;
    padding: 30px 15px;
}
.service-details .services-img {
    margin-bottom: 20px;
}
.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}
.service-details p {
    font-size: 15px;
}
.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}
.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}
