* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    position: relative;
    z-index: 1;
    font-family: 'Calibri', sans-serif;
    line-height: 1.7;
}

main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

a {
    color: inherit;
    text-decoration: none;
}

.prr-logo-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 3rem;
}

.prr-logo-section img {
    max-width: 100%;
    height: auto;
}

.logo-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: normal;
    color: #333;
}

a {
    text-decoration: none;
}

p {
    line-height: 1.6;
    font-size: 1.2rem;
}

.hero-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 80vh;
    padding-top: 5%;
    gap: 20px;
}

.white-bg {
    padding: 20px 25px 10px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    transition: all 900ms ease-in-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
}


.container {
    max-width: 1360px !important;
    margin: 0 auto;
}


.icon {
    width: 24px;
    height: 24px;
    margin: 0;
    color: inherit;
    min-width: 24px;
}

nav {
    display: flex;
    gap: 2rem;
    position: relative;
}

body.nav-open {
    overflow: hidden;
    height: 100vh;
}


#mobile-menu-trigger {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}

@media (max-width: 1023px) {
    nav {
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        padding: 2rem;
        overflow-y: auto;
    }


    nav.show {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
    }

    .custom-language-selector {
        right: 15%;
    }


    #mobile-menu-trigger {
        display: block;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1000;
    }

    .nav-container {
        margin-top: 50px;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    p {
        line-height: 1.2rem;
        font-size: 1rem;
    }
}


@media (min-width: 1024px) {
    .navigation {
        display: flex;
    }
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.nav-menu {
    display: flex;
    margin: auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 1360px;
    list-style: none;
    padding: 0;
    font-weight: 600;

    a {
        padding: 10px;
    }
}

.logo-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: black;
    display: flex;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #16a34a !important;
}

.language-login-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-language-selector {
    position: relative;
    cursor: pointer;
}

.selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 230px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown .option {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown .option:hover {
    background: #f3f4f6;
}

.hidden {
    display: none;
}


.content-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-content {
    flex: 1;
    max-width: 700px;
    text-align: left;
    padding-top: 1rem;
}


.section-heading {
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.video-description {
    width: 100%;
    margin-bottom: 2rem;
}


.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.video-container {
    flex: 1;
    width: auto;
    position: relative;
}

#videoTag {
    width: 100%;
    height: 440px;
    border-radius: 15px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
}

.play-icon {
    width: 80px;
    height: 80px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

nav {
    position: relative;
}

.hero-section {
    width: 100%;
}

.hero-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-header h6 {
    margin-top: 1rem;
}


.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}


.text-section {
    text-align: left;
    padding-top: 1rem;
}

.section-heading {
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.video-description {
    width: auto;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}


.video-container {
    position: relative;
}

#videoTag {
    width: 700px;
    height: 440px;
    border-radius: 15px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
}

.play-icon {
    width: 80px;
    height: 80px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}


.video-fullscreen-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    display: none;
}


.video-close-button {
    position: absolute;
    font-size: 24px;
    color: white;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
    z-index: 999;
}

.video-close-button:hover {
    transform: scale(1.2);
}

.video-fullscreen-container video {
    width: 100%;
    height: auto;
}

.video-fullscreen-container.hidden {
    display: none;
}

.app-download-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    box-sizing: border-box;
    text-align: center;
}

.app-download-section {
    max-width: 500px;
    width: 100%;
}

.app-download-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #222;
}

.app-download-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-download-links img {
    width: 150px;
    height: 50px;
    cursor: pointer;
    transition: all 400ms ease-in;
}

.google-play {
    height: 47px !important;
}

.app-download-links img:hover {
    transform: scale(1.1);
}

.mobile-preview {
    display: flex;
}

.pricing-card {
    height: 500px;
    width: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(128, 128, 128, 0.44);
    position: relative;
    transition: all 300ms ease-in-out;
    backdrop-filter: blur(10px);
    background-clip: padding-box;
}

.pricing-card:hover {
    box-shadow: 0 12px 24px rgba(113, 188, 66, 0.4);
}

.pricing-header {
    background: #71bc42;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 15px;
    border-radius: 18px 18px 0 0;
}

.pricing-price {
    padding: 20px 0;
    min-height: 100px;
}

.price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}

.currency {
    font-size: 18px;
    vertical-align: super;
    font-weight: normal;
    margin-right: 2px;
}

.per-month {
    font-size: 14px;
    color: #777;
}

.pricing-plan-heading h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.features-heading h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 14px;
    color: #444;
}

.pricing-features li:first-child {
    height: 65px;
    display: flex;
    align-items: center;
}

.pricing-features li {
    position: relative;
    text-align: left;
    padding-left: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 27px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%2371bc42'><path d='m424-296 282-282-56-56-226 226-114-114-56 56 170 170Zm56 216q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/></svg>");
}

.pricing-features li:empty::before {
    display: none;
}

.subscribe-btn {
    display: flex;
    place-content: center;
    background: #71bc42;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    border-radius: 50px;
    width: 60%;
}

.subscribe-btn-a {
    color: white;
}

.subscribe-btn:hover {
    transform: scale(1.05);
}

.services-section {
    margin: 60px auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.other-services {
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.contact-form {
    flex-direction: column;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);

    @media screen and (min-width: 768px) {
        flex-direction: row;
    }

}

.other-services h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.other-services table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.other-services table th, .other-services table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.other-services table th {
    background: #71bc42;
    color: white;
    font-weight: bold;
}

.other-services table td {
    background: rgba(255, 255, 255, 0.6);
}

.site-section-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    color: black;
    margin: 10px 0;
    display: inline-block;
}

.form-control {
    outline: none;
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.6);
}

.textAreaBootstrap {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.6);
    min-height: 150px;
}

.service-grid {
    display: grid;
    gap: 20px;
    width: 100%;
    padding: 10px;
    grid-template-columns: 1fr;

    @media screen and (min-width: 640px){
        grid-template-columns: repeat(2, 1fr);
    }

    @media screen and (min-width: 1024px){
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-image {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.demo-btn {
    background: #71bc42;
    text-align: center;
    color: white;
    border: 2px solid transparent;
    padding: 12px 3%;
    font-size: 16px;
    font-weight: bold;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 50px;
    display: block;
    width: 40%;
    transition: all 200ms ease-in-out;
}

.demo-btn:hover {
    box-shadow: 0 4px 10px rgba(113, 188, 66, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.17);
}

#btn_sendRequest {
    width: 200px;
}


.btnn:hover {
    background: black;
    color: white;
}

.btt-padd {
    margin-top: 10px;
}

#openUploader {
    display: inline-block;
    color: #444;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
    text-decoration: underline;
}

#uploadedFilesDiv {
    display: grid;
    margin-top: 10px;
}

.card-wrapper {
    display: flex;
    gap: 20px;
}


.services-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: black;
    text-align: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    place-content: center;
    border-radius: 15px;
    height: 300px;
    padding: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    position: relative;
    backdrop-filter: blur(10px);
    background-clip: padding-box;
}

.service-image {
    margin: 0 auto;
}

.contact-form__description {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: rgba(113, 188, 66, 0.3);
    border-radius: 15px;
    padding: 40px;

    @media screen and (min-width: 768px) {
        max-width: 45%;
    }

    img {
        max-width: 100%;
    }
}

.contact-intro {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
    padding: 5px 0;
}

#frm_contactUs {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 40px;

    @media screen and (min-width: 768px){
        width: 55%;
    }
}


.service-image {
    width: 50px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.slick-slide {
    margin: 15px;
}

.slick-next {
    right: 30px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: black;
    height: 56px;
}

.service-card p {
    color: #444;
    font-size: 1rem;
}

.pimcore_editable_block[data-name="card"] {
    display: flex;
    flex-wrap: wrap;
}

.pimcore_block_entry[data-name="card"] {
    width: 400px;
}

.pimcore_editable_block[data-name="slide"] {
    display: flex;
    flex-wrap: wrap;
}

.video-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.play-icon {
    border-radius: 50%;
    padding: 5px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    animation: pulse 1.7s infinite ease-in-out;
}

.play-icon:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%) scale(1.2);
}

#videoModal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#videoModal.show {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

video {
    width: auto;
    height: 440px;
    border-radius: 15px;
}

.panda-logo {
    width: 200px;
    height: 100px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 16px;
    background-color: rgb(0, 0, 0, 0.1);
    font-family: inherit;
}

.form-row {
    display: grid;
    gap: 20px;
}

.form-row.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}


.row.margin-left {
    max-width: 100%;
    margin-bottom: 10px;
}

.feedback-button {
    height: 40px;
    border: solid 3px #71bc42;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    background: #71bc42;
    width: 190px;
    line-height: 32px;
    font-weight: 500;
    color: white;
    text-align: center;
    font-size: 18px;
    position: fixed;
    right: -75px;
    top: 75%;
    z-index: 999;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feedback-button:hover {
    transform: rotate(-90deg) scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navigation {
    background-color: white;
    z-index: 999;
    width: 100%;
    top: 0;
    position: fixed;
}


.flag {
    width: 24px !important;
    height: 24px !important;
}

.custom-language-selector {
    position: absolute;
    width: 230px;
    font-family: sans-serif;
    top: 0;
    right: 2%;
}

.custom-language-selector .selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.custom-language-selector .selected img.flag {
    margin-right: 8px;
}


.custom-language-selector .option {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-language-selector .option:hover {
    background-color: #f0f0f0;
}

.custom-language-selector .option img.flag {
    width: 20px;
    height: 14px;
    margin-right: 8px;
}

.hidden {
    display: none;
}

.arrow {
    margin-left: auto;
}

.language-login-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector select {
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="14" width="14" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 14,0 7,8"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
    min-width: 130px;
}

.language-selector option {
    padding-left: 30px;
}


.video-container {
    position: relative;
    display: inline-block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(255, 255, 255, 0));
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    border-radius: 5px;
    opacity: 1;
    visibility: visible;
}

#emptyCol {
    max-width: 9%;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.56);
    transition: all 1s ease-in-out;
}

.play-button:hover {
    animation: pulse 1.5s infinite ease-in-out;
}

.play-button.hidden,
.video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.form-control {
    border: 3px solid transparent !important;
}

.form-control:focus {
    border: 3px solid #71bc42 !important;
    outline: none !important;
    box-shadow: none !important;
}

footer {
    margin: auto;
    margin-top: 100px;
}

.site-footer {
    background-color: #343a40 !important;
    color: #339b37;
    text-align: center;
    padding: 40px;

    @media screen and (min-width: 768px) {
        text-align: left;
    }
}

.footer-container {
    max-width: 1360px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 200px;
    max-width: 220px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #339b37;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 6px 0;
}

.footer-column a {
    color: #90ee90;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.app-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.store-img {
    width: 110px;
    height: 38px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.footerLogo {
    width: 10%;
}

#customFile {
    display: none;
}

#fileLabel {
    cursor: pointer;
}

#fileDescription {
    margin-left: 10px;
}

/* ---------------- WHY US PAGE --------------------------------- */

.why-us {
    margin: 50px 0 50px 0;

}

.process-image {
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 240px;
    display: flex;
}

.process-wrapper {
    padding: 50px 0 50px 0;
}

.step-wrapper {
    align-items: center;
    display: flex;
    position: relative;
    margin-bottom: 40px;
}

.why-us-heading {
    font-size: 48px;
    margin: 150px 0 50px 0;
    padding: 15px;
}

.h2-heading {
    margin-bottom: 40px;
    font-size: 24px;
    padding: 15px;

}

.why-us-p {
    padding: 15px;
}

.step-info {
    border: 1px solid rgba(51, 155, 55, 0.08);
    padding: 25px;
    border-radius: 25px;
    background: rgba(51, 155, 55, 0.08);
    width: 100%;
}

.step-1-info-wrapper, .step-2-info-wrapper, .step-3-info-wrapper, .step-4-info-wrapper, .step-5-info-wrapper {
    width: 90%;
    display: flex;
    gap: 20px;
}

nord-tab {
    --n-tab-color: #2e7d32;
    --n-tab-font-weight: 600; /* optional */
    padding: 10px 16px;
    cursor: pointer;
    background: transparent;
    transition: all 0.2s ease;
}

nord-tab[aria-selected="true"] {
    border-bottom: 2px solid #2e7d32;
}

nord-tab:hover {
    background: #f0f0f0;
}

nord-tab-panel {
    padding: 1.5rem;

    strong, p, li {
        font-family: 'Calibri', sans-serif;
        font-size: 1rem;
        line-height: 1.5;
    }

    p {
        min-height: 25px;
    }

    ul {
        padding: 5px;
        margin-left: 20px;
    }
}

nord-tab-group {
    display: block;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .padding-60 {
        padding: 60px;
    }
}

.margin-60 {
    margin: 60px auto 60px auto;
}

@media (max-width: 768px) {
    .hero-row {
        height: auto;
    }

    .video-description {
        width: auto;
    }

    .text-content {
        padding: 15px;
    }

    .pricing-section {
        width: auto !important;
        max-width: 100% !important;
        padding: 5px !important;
        margin: 0 auto !important;
        border-radius: 0;
    }

    .other-services {
        width: auto !important;
        max-width: 100% !important;
        padding: 5px !important;
        margin: 50px auto !important;
        border-radius: 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    #videoTag {
        width: 100%;
        height: auto;
    }

    .section-heading {
        font-size: 2rem;
    }

    .custom-language-selector {
        right: 15%;
    }

    .content-wrapper {
        padding: 0;
        flex-direction: column-reverse;
    }

    .demo-btn {
        width: 60%;
    }

    h2 {
        text-align: center;
    }
}

.site-footer .footer-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.text-green {
    color: rgb(50, 204, 50);
}

.bg-dark {
    background-color: #343a40 !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-row {
        height: auto;
        padding-top: 8%;
        gap: 20px;
    }

    #videoTag {
        width: 400px;
        height: auto;
    }

    #videoTag {
        width: 100% !important;
        height: auto !important;
    }

    .videoDivPreview {
        width: 100% !important;
        height: auto !important;
    }

    .content-wrapper {
        flex-direction: column;
    }

    #videoTag {
        width: 550px;
    }

    p {
        font-size: 1rem;
    }

    .demo-btn {
        width: 60%;
    }

    .custom-language-selector {
        right: 10%;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    #videoTag {
        width: 500px;
    }

    .nav-menu {
        width: 74%;
    }

    .nav-container {
        justify-content: flex-start;
    }

    .hero-row {
        padding-top: 8%;
    }

    p {
        font-size: 1rem;
    }

    .demo-btn {
        width: 42%;
    }
}

@media (min-width: 1281px) {
    .demo-btn {
        width: 35%;
    }
}


.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background: #71bc42;
    box-shadow: 0 6px 15px rgba(113, 188, 66, 0.4);
}

.slick-prev:before,
.slick-next:before {
    font-size: 24px;
    color: #71bc42;
    transition: color 0.3s ease;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #fff;
}

.slick-prev {
    left: 90%;
    top: -30px;
}

.slick-next {
    right: -1%;
    top: -30px;
}

@media (max-width: 991px) {
    .slick-prev {
        left: 85%;
        top: -25px;
    }

    .slick-next {
        right: 0;
        top: -25px;
    }
}

@media (max-width: 576px) {
    .slick-prev {
        left: 56%;
        top: -20px;
    }

    .slick-next {
        right: 5%;
        top: -20px;
    }
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.price-tag {
    display: flex;
    column-gap: 5px;
    row-gap: 10px;
    font-size: 1rem;

    .money {
        display: flex;
        min-width: 76px;
        justify-content: flex-end;
        font-weight: 600;
    }
}

.plan-households {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 16px;
    padding: 0 10px;
    line-height: 1.4;
}

.plan-households.highlighted {
    background: rgba(113, 188, 66, 0.4);
    padding: 8px 12px;
    border-radius: 6px;
    margin: 12px 0;
    color: #444;
}


.plan-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--color-border);
    gap: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);

    justify-content: space-between;
    background-color: rgba(113, 188, 66, 0.3);

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    ul li {
        list-style: none;
        position: relative;
        padding-left: 32px;
        display: flex;
        align-items: center;
        color: black;
    }

    ul li::before {
        content: "";
        display: flex;
        width: 24px;
        height: 24px;
        position: absolute;
        left: 0;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23000000'><path d='m424-296 282-282-56-56-226 226-114-114-56 56 170 170Zm56 216q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/></svg>");
    }
}

#pricing {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 50px;
    justify-content: flex-start;
    }

.plan-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-card-features {
    min-height: 205px;
}

.plan-price {
    display: flex;

    height: 100px;
    align-items: center;
}

.plan-price .money {
    font-size: 36px;
    font-weight: 600;
}

.plan-price .free {
    font-size: 36px;
    font-weight: 600;
}

.plan-price--month .money:after {
    content:' /month';
    font-size: 1rem;
    font-weight: 400;
}

.plan-price--year .money:after {
    content:' /year';
    font-size: 1rem;
    font-weight: 400;
}

.plan-price--free .money:after {
    content: '';
    font-size: 1rem;
    font-weight: 400;
}

.plan-card-button {
    background: #71bc42;
    text-align: center;
    color: white;
    border: 2px solid transparent;
    padding: 12px 3%;
    font-size: 16px;
    font-weight: bold;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 50px;
    display: block;
    width: 60%;
    transition: all 200ms ease-in-out;
}

.plan-feature {
    margin-bottom: 12px;
}

.plan-card-button:hover {
    box-shadow: 0 4px 10px rgba(113, 188, 66, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.17);
}

.plan-card-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: flex-start;
}

.plan-name {
    text-transform: uppercase;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 700;
}

.swiper-button-next, .swiper-button-prev {
    color: #71bc42!important;
}

.plan-badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    background-color: #13AFF0;
    border-radius: 12px;
    color: white;
}

.swiper-pagination-bullet-active {
    background: #71bc42!important
}

.pricing-plan-switcher {
    display: flex;
    align-items: center;
    gap: 10px;

    label {
        margin: 0;
    }

    span {
        font-weight: 500;
    }
}

/* ------------------------- SWIPER -------------------------*/
.swiper {
    box-sizing: content-box;
    max-width: 100%;
    padding: 10px;
}

.swiper-pagination {
    position: static;
}

.swiper-navigation {
    position: relative;
    display: flex;
    height: 60px;
    width: 100%;
    justify-content: flex-end;
    gap: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    position: static!important;
    height: auto!important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    position: static!important;
    font-size: 20px!important;
}

.panda-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.panda {
    width: 100%;
    height: 100%;
}

.eye {
    transition: transform 0.1s ease-out;
}

.pupil {
    transition: transform 0.1s ease-out;
}

