@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
    --surface-0: #f3f8fb;
    --surface-1: #ffffff;
    --surface-2: #e9f2f6;
    --ink-strong: #11202d;
    --ink-body: #556774;
    --ring: rgba(56, 163, 165, 0.28);
    --stroke: rgba(17, 32, 45, 0.1);
    --shadow-sm: 0 12px 34px rgba(17, 45, 76, 0.08);
    --shadow-lg: 0 24px 70px rgba(14, 37, 63, 0.16);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    font-family: "Manrope", sans-serif !important;
    color: var(--ink-strong);
    background:
        radial-gradient(circle at 8% -8%, rgba(86, 204, 153, 0.16), transparent 42%),
        radial-gradient(circle at 95% 8%, rgba(33, 86, 121, 0.1), transparent 38%),
        #f9fcff;
    line-height: 1.6;
}

a {
    color: inherit !important;
}

.main {
    position: relative;
    overflow: hidden;
    padding-bottom: 24px;
}

.main > section,
.main > .container {
    position: relative;
    z-index: 1;
}

.container {
    width: min(1140px, calc(100% - 2rem));
}

.commonMT {
    margin-top: clamp(64px, 8vw, 112px);
}

.commonBtn,
.commonBtn-reset {
    border-radius: 999px;
    padding: 0.72rem 1.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    margin-top: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.commonBtn {
    background: linear-gradient(145deg, var(--secondary-color), var(--secondary-color1));
    box-shadow: 0 10px 28px rgba(33, 86, 121, 0.22);
}

.commonBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(33, 86, 121, 0.28);
}

.commonBtn-reset {
    background: #e0e6eb;
    border-color: #d2dbe2;
    color: #2f3f4c !important;
}

.commonBtn-reset:hover {
    background: #d6dee6;
}

.navbar {
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid var(--stroke);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(12, 34, 56, 0.04);
}

.navbar .navbarWrapper {
    height: 84px;
}

.logo {
    height: clamp(38px, 5vw, 52px);
}

.navbar .listItems {
    gap: clamp(14px, 2vw, 26px);
}

.navbar ul li a,
.navbar .dropdown-toggle {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color) !important;
    opacity: 0.88;
}

.navbar ul li a:hover,
.navbar .dropdown-toggle:hover {
    opacity: 1;
    color: var(--secondary-color1) !important;
}

.navbar .dropdown-toggle.btn-secondary {
    background-color: transparent !important;
}

.navbar .loginBtnsWrapper {
    gap: 12px;
}

.navbar .loginBtnsWrapper .commonBtn {
    font-size: 0.88rem;
    padding-inline: 1.2rem;
}

.offcanvas {
    width: min(380px, 88vw) !important;
    border-left: 1px solid rgba(17, 32, 45, 0.12);
    background: #f8fbff;
}

.navbar .offcanvas .listItems {
    margin-top: 8px;
}

.navbar .offcanvas .listItems li {
    margin: 16px 0;
}

.navbar .offcanvas .loginBtnsWrapper {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.heroSection {
    background: transparent;
    padding: clamp(26px, 4vw, 56px) 0 clamp(34px, 5vw, 66px);
}

.heroSection .linesBg,
.heroSection .colorBg {
    background: transparent;
}

.heroSection .row {
    align-items: center;
}

.flex_column_start {
    padding-top: 16px;
    gap: 16px;
    max-width: 620px;
}

.commonTitle {
    font-family: "Sora", sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color1);
}

.commonDesc {
    font-family: "Sora", sans-serif;
    color: var(--secondary-color);
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    line-height: 1.08;
    max-width: 16ch;
}

.commonText {
    color: var(--ink-body);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    font-weight: 500;
    max-width: 55ch;
}

.heroWhatsappBtn {
    background: linear-gradient(145deg, #19b85a, #0f8f45) !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 30px rgba(21, 166, 87, 0.28);
    padding: 0.78rem 1.32rem !important;
    gap: 10px;
}

.heroWhatsappBtn:hover {
    box-shadow: 0 20px 36px rgba(18, 137, 72, 0.34);
}

.heroWhatsappBtn img {
    width: 22px;
    height: 22px;
}

.heroImgWrapper {
    display: flex;
    justify-content: center;
}

.heroSection .heroImg {
    position: relative;
    width: min(100%, 620px);
    padding: clamp(14px, 2.4vw, 24px);
    border-radius: 30px;
}

.heroSection .heroImg::before {
    content: "";
    position: absolute;
    inset: 26% 14% auto;
    height: 64%;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(56, 163, 165, 0.28), transparent 70%);
    z-index: 0;
}

.heroSection .heroImg > img {
    width: 100%;
    max-width: 580px;
    margin: auto;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 22px;
    border: 1px solid rgba(17, 32, 45, 0.08);
    box-shadow: var(--shadow-lg);
    background: #fff;
}

.heroSection .topRated,
.heroSection .textWrapper {
    z-index: 3;
    border: 1px solid rgba(17, 32, 45, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.heroSection .topRated {
    left: clamp(12px, 3vw, 70px);
    bottom: clamp(16px, 3vw, 38px);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(18, 43, 64, 0.18);
}

.heroSection .topRated div:first-child {
    width: 64px;
    height: 64px;
    box-shadow: none;
    border: 1px solid rgba(17, 32, 45, 0.08);
}

.heroSection .topRated img {
    width: 38px;
}

.heroSection .topRated span {
    width: auto;
    color: var(--secondary-color);
    font-size: 0.92rem;
    line-height: 1.3;
    text-align: left;
}

.heroSection .textWrapper {
    top: clamp(8px, 2vw, 22px);
    right: clamp(10px, 2vw, 22px);
    width: min(72%, 360px);
    border-radius: 14px;
    box-shadow: 0 14px 26px rgba(18, 43, 64, 0.14);
    animation: floatBadge 4s ease-in-out infinite;
}

.heroSection .textWrapper span {
    color: var(--secondary-color);
    font-size: 0.92rem;
    font-weight: 700;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}

.sectionTitle {
    margin-bottom: 20px;
}

.sectionTitle::before {
    width: 10px;
    height: 10px;
    bottom: -14px;
    background: var(--primary-color);
}

.sectionTitle::after {
    width: min(210px, 68%);
    height: 4px;
    bottom: -11px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color1));
}

.sectionTitle span {
    width: min(760px, 100%);
    color: var(--ink-strong);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 2.9vw, 2.3rem);
    line-height: 1.3;
}

.sectionTitle .greenText {
    font-family: "Manrope", sans-serif;
    color: var(--secondary-color1);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.features .cardWrapper {
    margin-top: 34px;
    gap: 16px 0;
}

.features .card {
    height: 100%;
    border: 1px solid var(--stroke);
    border-radius: 18px;
    background: var(--surface-1);
    padding: 18px 20px;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.features .card::before {
    width: 4px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color1));
}

.features .card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.features .card span {
    font-size: 1.02rem;
    line-height: 1.4;
}

.features .card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 163, 165, 0.36);
    box-shadow: 0 18px 38px rgba(16, 47, 78, 0.15);
}

.features .cardWrapper .commonBtn {
    margin-top: 12px;
}

.default-feature-list {
    display: none;
}

.schoolLogos .row {
    margin-top: 12px;
}

.schoolLogos .item {
    padding: 10px 6px;
}

.school-logo-card {
    min-height: 188px;
    border: 1px solid var(--stroke) !important;
    border-radius: 18px !important;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.school-logo-image {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(33, 86, 121, 0.12);
}

.school-logo-card h6 {
    margin-bottom: 0;
    color: #1d2e3b;
    font-weight: 700;
    text-align: center;
}

.tabsContainer {
    margin-top: 38px !important;
}

.tabsWrapper {
    max-height: 540px;
    border: 1px solid var(--stroke);
    border-radius: 22px;
    background: #fff;
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.tabsWrapper::after {
    right: 10px;
    width: 2px;
    top: 20px;
    height: calc(100% - 40px);
    background: rgba(17, 32, 45, 0.12);
}

.tabs {
    gap: 8px;
    padding-right: 20px;
}

.tab {
    border-radius: 14px;
    border: 1px solid transparent;
    padding: 13px 14px 13px 14px;
}

.tab span:first-child {
    color: #142433;
    font-size: 1rem;
    font-weight: 700;
}

.tab span:last-child {
    color: #5f6f7b;
    font-size: 0.93rem;
    line-height: 1.55;
}

.tab:hover {
    background-color: #edf9f4;
    border-color: rgba(56, 163, 165, 0.2);
}

.tabs .active {
    background: linear-gradient(130deg, rgba(86, 204, 153, 0.18), rgba(56, 163, 165, 0.12));
    border-color: rgba(56, 163, 165, 0.35);
}

.tabs .active::after {
    right: -12px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color1));
}

.content-container {
    padding: 8px 0 8px 20px;
}

.content img {
    border-radius: 18px;
    border: 1px solid rgba(17, 32, 45, 0.08);
    box-shadow: 0 18px 42px rgba(17, 45, 76, 0.15);
    background: #fff;
}

.right-feature-section,
.studyManagement {
    padding: clamp(52px, 6vw, 72px) 0;
    background: linear-gradient(180deg, rgba(246, 255, 251, 0.78), rgba(248, 252, 255, 0.94));
}

.whyBest {
    background: #fff;
    border: 1px solid var(--stroke);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    padding: clamp(20px, 3.2vw, 38px);
}

.whyBest .row {
    align-items: center;
}

.whyBest .whyBestTextWrapper::before {
    width: 5px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--secondary-color), var(--secondary-color1));
}

.whyBest .whyBestTextWrapper p {
    margin-left: 20px;
}

.whyBest .whyBestTextWrapper p:first-child {
    color: var(--secondary-color1);
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.whyBest .whyBestTextWrapper p:last-child {
    color: var(--ink-strong);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    line-height: 1.3;
}

.whyBest .whyBestPara {
    color: var(--ink-body);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 24px 0;
    padding-right: 14px;
}

.listWrapper {
    gap: 10px;
}

.listWrapper span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #203241;
    font-size: 1rem;
    font-weight: 600;
}

.listWrapper span i {
    margin-right: 0;
    margin-top: 0.2rem;
}

.whyBest img {
    border-radius: 20px;
    border: 1px solid rgba(17, 32, 45, 0.08);
    box-shadow: 0 18px 44px rgba(16, 43, 70, 0.17);
}

.vydiya-package-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
}

.vydiya-package-card {
    margin: 0;
    max-width: 100%;
    min-width: 0;
    border: 1px solid rgba(17, 32, 45, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: #fff;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.vydiya-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(16, 41, 66, 0.2);
}

.vydiya-package-inner {
    height: 100%;
    background: linear-gradient(145deg, rgba(33, 86, 121, 0.96), rgba(56, 163, 165, 0.92));
    color: #fff;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.vydiya-package-card.custom-pro .vydiya-package-inner {
    background: linear-gradient(145deg, rgba(16, 94, 91, 0.96), rgba(33, 86, 121, 0.93));
}

.vydiya-package-title {
    padding: 0;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 1.45rem;
    line-height: 1.35;
}

.vydiya-title-bg {
    display: none;
}

.vydiya-package-inner ul {
    list-style: none;
    margin: 20px 0 18px;
    padding: 0;
    width: 100%;
}

.vydiya-package-inner ul li {
    position: relative;
    padding-left: 27px;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.7;
}

.vydiya-package-inner ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.13rem;
    font-weight: 700;
    color: #fff;
}

.vydiya-price {
    margin: auto 0 6px;
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    color: #fff;
}

.vydiya-price-cycle {
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.vydiya-note {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.vydiya-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #15495f !important;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.vydiya-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(11, 39, 58, 0.22);
    background: #f2f8fb;
}

.vydiya-button img {
    width: 20px;
    height: 20px;
}

.vydiya-package-card.custom-pro .vydiya-button {
    background: #25d366;
    color: #fff !important;
}

.faqs .accordion {
    margin-top: 28px;
}

.faqs .accordion-item {
    border: 1px solid var(--stroke) !important;
    border-radius: 16px !important;
    margin: 12px 0;
    box-shadow: var(--shadow-sm);
}

.faqs .accordion-button {
    border-radius: 16px !important;
    padding: 1rem 1.1rem;
}

.faqs .accordion-button span {
    color: #1d2f3d !important;
    font-size: 1rem;
}

.faqs .accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, var(--secondary-color1), var(--secondary-color));
}

.faqs .accordion-button:not(.collapsed) span {
    color: #fff !important;
}

.faqs .accordion-body {
    background: #fff;
    padding-top: 18px;
}

.faqs .accordion-collapse span {
    margin-top: -2px;
    color: var(--ink-body) !important;
    line-height: 1.72;
}

.getInTouch {
    background: linear-gradient(180deg, rgba(232, 245, 250, 0.72), rgba(250, 253, 255, 0.96));
    padding: clamp(44px, 6vw, 74px) 0 10px !important;
    margin-bottom: 0 !important;
}

.getInTouch .sectionTitle .greenText {
    color: var(--secondary-color1);
    font-size: 0.84rem;
}

.getInTouch .sectionTitle span {
    color: var(--ink-strong);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.getInTouch .row.pt-4 {
    margin-bottom: 0;
}

.contact-link {
    display: block;
    text-decoration: none;
    color: inherit !important;
}

.getInTouch .infoWrapper {
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.getInTouch .infoWrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 163, 165, 0.36);
    box-shadow: 0 20px 42px rgba(14, 38, 62, 0.16);
}

.getInTouch .infoWrapper .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    background: linear-gradient(145deg, var(--secondary-color), var(--secondary-color1));
}

.getInTouch .infoWrapper span {
    color: #203344;
    line-height: 1.45;
}

.getInTouch .infoWrapper span:first-child {
    font-size: 1rem;
    font-weight: 700;
}

.getInTouch .infoWrapper span:last-child {
    color: #5d6f7d;
    font-size: 0.94rem;
}

.ourApp {
    margin-bottom: 14px;
    padding-bottom: 16px;
}

.ourApp .row {
    align-items: center;
}

.ourApp .ourAppImg {
    width: min(100%, 520px);
    display: block;
    margin-inline: auto;
    filter: drop-shadow(0 18px 34px rgba(20, 44, 66, 0.18));
}

.ourApp .content {
    gap: 30px;
}

.ourApp .text {
    gap: 12px;
}

.ourApp .text .title {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    color: #0f2535;
    line-height: 1.25;
}

.ourApp .text .app-description {
    font-weight: 500;
    color: var(--ink-body);
    line-height: 1.75;
}

.ourApp .storeImgs {
    gap: 10px;
    flex-wrap: wrap;
}

.ourApp .storeImgs a {
    display: inline-flex;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: #fff;
    padding: 7px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ourApp .storeImgs a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.ourApp .storeImgs img {
    width: 176px;
}

footer {
    background: linear-gradient(165deg, #102534, #18384d);
    color: #d0dce6;
    padding: 62px 0 28px;
}

footer a {
    color: inherit !important;
}

footer .companyInfoWrapper {
    gap: 20px;
}

footer .commonDesc {
    color: #b9c7d3;
    max-width: 440px;
    line-height: 1.75;
}

footer .linksWrapper .title {
    color: #fff;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

footer .linksWrapper span {
    color: #d0dce6;
    font-size: 0.95rem;
}

footer .linksWrapper a:hover {
    color: #fff !important;
}

footer .iconsWrapper img {
    width: 20px;
    margin-right: 6px;
    filter: brightness(0) invert(1) opacity(0.88);
}

footer hr {
    border-color: rgba(232, 241, 248, 0.16);
}

footer .copyright {
    color: #9eb2c2;
}

.formModal .rightSide {
    border-radius: 20px;
    border: 1px solid rgba(17, 32, 45, 0.1);
    box-shadow: 0 16px 40px rgba(17, 39, 61, 0.16);
    overflow: hidden;
}

.formModal .modal-header {
    border-bottom-color: rgba(17, 32, 45, 0.08);
}

.formModal .modal-title {
    font-family: "Sora", sans-serif;
    font-size: 1.45rem !important;
}

.formModal .rightSide .headingWrapper span {
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
}

.formModal .rightSide .formWrapper .inputWrapper label {
    color: #223545;
    font-weight: 600;
}

.formModal .rightSide .formWrapper .inputWrapper input,
.formModal .rightSide .formWrapper .inputWrapper textarea,
.formModal .rightSide .formWrapper .inputWrapper select,
.formModal .rightSide .formWrapper .inputWrapper .form-control {
    border: 1px solid #cfdbe4;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--secondary-color1) !important;
    box-shadow: 0 0 0 0.18rem var(--ring) !important;
    outline: none !important;
}

.btn-themes {
    border-radius: 0 10px 10px 0 !important;
}

.file-upload-info {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 1px;
}

@media screen and (max-width: 1199px) {
    .navbar .navbarWrapper {
        height: 74px;
    }

    .navbar .hamburg i {
        color: #19384f;
        font-size: 1.35rem;
    }

    .heroSection .heroImg {
        margin-top: 12px;
    }
}

@media screen and (max-width: 991px) {
    .container {
        width: min(100%, calc(100% - 1.5rem));
    }

    .heroSection {
        padding-inline: 0;
    }

    .flex_column_start {
        padding-top: 0;
    }

    .heroSection .topRated,
    .heroSection .textWrapper {
        display: none;
    }

    .heroSection .heroImg > img {
        max-width: 100%;
    }

    .sectionTitle span {
        width: 100%;
    }

    .tabsWrapper {
        max-height: none;
    }

    .tabsWrapper::after,
    .tabs .active::after {
        display: none;
    }

    .tabs {
        padding-right: 0;
    }

    .content-container {
        padding: 12px 0 0;
    }

    .right-feature-section,
    .studyManagement {
        padding: 44px 0;
    }

    .whyBest {
        border-radius: 20px;
    }

    .whyBest .whyBestPara {
        padding-right: 0;
    }

    .vydiya-package-row {
        grid-template-columns: 1fr;
    }

    .getInTouch .sectionTitle span {
        font-size: clamp(1.2rem, 4vw, 1.7rem) !important;
    }

    .ourApp .row {
        flex-direction: column-reverse;
        gap: 34px 0;
    }

    footer {
        padding-top: 48px;
    }
}

@media screen and (max-width: 575px) {
    html {
        scroll-padding-top: 92px;
    }

    .container {
        width: calc(100% - 1rem);
    }

    .heroSection {
        padding: 14px 0 24px;
    }

    .commonDesc {
        font-size: clamp(1.75rem, 8vw, 2.2rem);
    }

    .features .card {
        border-radius: 14px;
        padding: 14px 15px;
    }

    .features .card span {
        font-size: 0.94rem;
    }

    .sectionTitle .greenText {
        font-size: 0.76rem;
    }

    .tab span:first-child {
        font-size: 0.94rem;
    }

    .tab span:last-child {
        font-size: 0.86rem;
    }

    .vydiya-package-inner {
        padding: 26px 22px;
    }

    .vydiya-package-title {
        font-size: 1.22rem;
    }

    .vydiya-price {
        font-size: 1.7rem;
    }

    .getInTouch .infoWrapper {
        padding: 14px;
    }

    .ourApp .storeImgs img {
        width: min(100%, 154px);
    }

    footer {
        padding: 32px 14px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html[dir="rtl"] .navbar .listItems {
    padding-right: 0;
}

html[dir="rtl"] .tab,
html[dir="rtl"] .vydiya-package-inner ul li,
html[dir="rtl"] .listWrapper span {
    text-align: right;
}

html[dir="rtl"] .vydiya-package-inner ul li {
    padding-right: 27px;
    padding-left: 0;
}

html[dir="rtl"] .vydiya-package-inner ul li::before {
    right: 0;
    left: auto;
}

html[dir="rtl"] .tabs {
    padding-left: 20px;
    padding-right: 0;
}

html[dir="rtl"] .content-container {
    padding-right: 20px;
    padding-left: 0;
}
