@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato' !important;
    background-color: #fff;
}

a {
    text-decoration: none !important;
    color: #29363F !important;
}

.navbar {
    background-color: #F4FBFF;
    position: sticky !important;
    top: 0px;
    z-index: 12;
}

.logo {
    width: auto;
    height: 50px;
}

/* Platform Home Page - Prevent navbar wrapping */
.navbar .navbarWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 20px;
}

.navbar .navLogoWrapper {
    flex-shrink: 0;
}

.navbar .menuListWrapper {
    display: flex;
    padding: 0px;
    margin: 0;
    flex-shrink: 1;
    min-width: 0;
}

.navbar .listItems {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0px;
    gap: 34px;
    margin: 0px;
    flex-wrap: nowrap;
}

.navbar .loginBtnsWrapper {
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar ul li {
    list-style: none;
    cursor: pointer;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color1);
    text-decoration: none;
}

.navbar .dropdown-toggle {
    background-color: transparent !important;
    border: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color1);
    text-decoration: none;
}

.navbar .dropdown-toggle:focus {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
}

.navbar hr {
    margin: 0px !important;
    padding: 0;
}

.navbar .hamburg {
    display: none;
    font-size: 30px;
}

.navbar .hamburg i {
    font-size: 22px;
}

.navbar .loginBtnsWrapper {
    display: flex;
    gap: 20px;
}


.commonBtn {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 12px;
    transition: background-color 0.3s;
}

.commonBtn-reset {
    background-color: #6c757d;
    color: white !important;
    border: none;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 12px;
    transition: background-color 0.3s;
    margin-right: 1rem;
}
.button-potision {
    display: flex;
    justify-content: flex-end;
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .commonBtn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .navbar .listItems {
        gap: 20px;
    }
    
    .navbar ul li a,
    .navbar .dropdown-toggle {
        font-size: 14px;
    }
    
    .logo {
        max-height: 45px;
    }
}

/* Additional breakpoint for tight spacing */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar .listItems {
        gap: 16px;
    }
    
    .navbar ul li a,
    .navbar .dropdown-toggle {
        font-size: 13px;
    }
    
    .commonBtn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .logo {
        max-height: 40px;
    }
}

.offcanvas {
    width: 70% !important;
}

@media screen and (max-width: 1199px) {

    .navbar .listItems,
    .navbar .loginBtnsWrapper {
        display: none;
    }

    .navbar .hamburg {
        display: block;
    }

    .navbar .offcanvas .listItems {
        display: block;
        margin-top: -16px;
    }

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

    .navbar .dropdownListItem {
        margin: 0px !important;
    }

    .navbar .navLogo img {
        width: auto;
        height: 50px;
    }

    .mySwiper .swiperImage {
        height: 400px;
    }

}

/* navbar end here  */

/* ════════════════════════════════════════════════════════════════
   Hero Section — Stunning Redesign
   ════════════════════════════════════════════════════════════════ */
.heroSection {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0faf5 0%, #e8f4fd 40%, #f5f0ff 70%, #fef9f0 100%);
}

/* ── Decorative gradient blobs ── */
.hero__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero__blob--1 {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(86,204,153,0.12) 0%, transparent 70%);
    filter: blur(60px);
    animation: heroBlobFloat 8s ease-in-out infinite alternate;
}

.hero__blob--2 {
    width: 400px;
    height: 400px;
    top: 60%;
    right: -80px;
    background: radial-gradient(circle, rgba(33,86,121,0.10) 0%, transparent 70%);
    filter: blur(60px);
    animation: heroBlobFloat 10s ease-in-out infinite alternate-reverse;
}

.hero__blob--3 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: 40%;
    background: radial-gradient(circle, rgba(56,163,165,0.08) 0%, transparent 70%);
    filter: blur(50px);
    animation: heroBlobFloat 12s ease-in-out infinite alternate;
}

@keyframes heroBlobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.08); }
}

/* ── Hero content (left column) ── */
.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Badge pill — matches appShowcase__badge / trustedBy__badge pattern */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(86,204,153,0.12) 0%, rgba(33,86,121,0.06) 100%);
    border: 1px solid rgba(86,204,153,0.20);
}

.hero__badge i {
    font-size: 14px;
    color: var(--primary-color);
}

/* Title — semantic h1 */
.hero__title {
    font-size: 48px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Description */
.hero__desc {
    font-size: 18px;
    color: #536b83;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
    font-weight: 400;
}

/* CTA buttons */
.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color1) 100%);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(86, 204, 153, 0.35);
}

.hero__cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(86, 204, 153, 0.45);
}

.hero__cta:hover i {
    transform: translateX(4px);
}

.hero__cta--outline {
    background: transparent;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color);
    box-shadow: none;
}

.hero__cta--outline:hover {
    background: var(--secondary-color);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(33, 86, 121, 0.25);
}

/* ── Hero image area (right column) ── */
.heroSection .heroImg {
    position: relative;
    z-index: 1;
}

.heroSection .heroImg img {
    width: 88%;
    display: block;
    margin: auto;
    max-height: 520px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Radial glow behind hero image */
.hero__imgGlow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86,204,153,0.15) 0%, rgba(56,163,165,0.08) 40%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

/* ── Glassmorphism floating cards ── */
.heroSection .topRated {
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    left: 48px;
    bottom: 76px;
    padding: 5px 2px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(86, 204, 153, 0.06);
    z-index: 2;
    animation: heroCardFloat 4s ease-in-out infinite;
}

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

.heroSection .topRated div:first-child {
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(86, 204, 153, 0.15);
    height: 70px;
    width: 70px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(86,204,153,0.08), rgba(33,86,121,0.04));
}

.heroSection .topRated span {
    display: block;
    width: 120px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #0d1b2a;
}

.heroSection .textWrapper {
    padding: 10px 18px;
    border-radius: 12px;
    position: absolute;
    top: 120px;
    left: auto;
    right: -20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(33, 86, 121, 0.06);
    width: 280px;
    animation: heroCardFloat 5s ease-in-out infinite reverse;
}

.heroSection .textWrapper span {
    color: #0d1b2a;
    font-weight: 700;
    font-size: 15px;
}

.heroSection .textWrapper span span {
    color: var(--primary-color);
}

@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ── Staggered entrance animation ── */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__animate {
    opacity: 0;
    animation: heroFadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__content .hero__animate:nth-child(1) { animation-delay: 0.1s; }
.hero__content .hero__animate:nth-child(2) { animation-delay: 0.25s; }
.hero__content .hero__animate:nth-child(3) { animation-delay: 0.4s; }
.hero__content .hero__animate:nth-child(4) { animation-delay: 0.55s; }

.heroImgWrapper .hero__animate { animation-delay: 0.45s; }

/* ── Legacy classes preserved for other pages ── */
.commonMT {
    margin-top: 96px;
}

.flex_column_start {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 16px;
    text-align: start;
    padding-top: 120px;
}

.commonTag {
    color: var(--secondary-color1);
    padding: 8px;
    border-radius: 4px;
    width: max-content;
}

.commonTitle {
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.commonDesc {
    font-size: 35px;
    font-weight: 700;
    color: #000000;
}

.commonText {
    color: #898989;
    font-size: 22px;
    font-weight: 700;
}

/* ── Responsive hero ── */
@media screen and (max-width: 1399px) {
    .hero__title { font-size: 42px; }
    .heroSection .heroImg img { width: 82%; }
}

@media screen and (max-width: 1199px) {
    .heroSection {
        padding: 50px 20px;
    }

    .heroSection .col-lg-6 {
        width: 100%;
    }

    .hero__content {
        padding-top: 10px;
        align-items: center;
        text-align: center;
    }

    .hero__title { font-size: 38px; }
    .hero__desc { max-width: 600px; }
    .hero__actions { justify-content: center; }

    .flex_column_start {
        padding-top: 0px;
    }

    .heroSection .heroImg img {
        margin-top: 5px;
    }

    .heroSection .topRated img {
        width: 60px !important;
    }
}

@media screen and (max-width: 991px) {
    .hero__blob { display: none; }
    .heroSection { padding: 40px 16px; }
    .hero__title { font-size: 34px; }
}

@media screen and (max-width: 767px) {
    .hero__title { font-size: 28px; }
    .hero__desc { font-size: 16px; }
    .hero__badge { font-size: 11px; padding: 6px 14px; }
    .hero__cta { padding: 12px 24px; font-size: 15px; }

    .heroSection .heroImg img {
        margin-top: 0px;
        width: 75%;
        max-height: 320px;
    }

    .heroSection .topRated {
        left: 76px;
        bottom: 40px;
        padding: 4px 2px;
        gap: 6px;
        border-radius: 10px;
    }
    .heroSection .topRated div:first-child {
        height: 40px;
        width: 40px;
    }
    .heroSection .topRated img {
        width: 45px !important;
    }
    .heroSection .topRated span {
        font-size: 11px;
        width: 80px;
    }

    .heroSection .textWrapper {
        top: 60px;
        right: 0;
        padding: 6px 10px;
        width: auto;
        max-width: 180px;
        border-radius: 8px;
    }
    .heroSection .textWrapper span {
        font-size: 11px;
    }

    .commonTitle { font-size: 20px; }
    .commonMT { margin-top: 20px; }
}

@media screen and (max-width: 575px) {
    .heroSection { padding: 30px 12px; }
    .hero__title { font-size: 24px; letter-spacing: -0.3px; }
    .hero__desc { font-size: 15px; }
    .hero__actions { flex-direction: column; gap: 12px; width: 100%; }
    .hero__cta { width: 100%; justify-content: center; }

    .heroSection .heroImg img {
        width: 65%;
        max-height: 260px;
        margin-top: 0px;
    }

    .heroSection .topRated {
        left: 102px;
        bottom: 24px;
        padding: 3px 2px;
    }
    .heroSection .topRated div:first-child {
        height: 32px;
        width: 32px;
    }
    .heroSection .topRated img {
        width: 32px !important;
    }
    .heroSection .topRated span {
        font-size: 10px;
        width: 65px;
    }

    .heroSection .textWrapper {
        top: 40px;
        right: 30px;
        padding: 4px 8px;
        max-width: 180px;
        gap: 0px;
    }
    .heroSection .textWrapper span {
        font-size: 10px;
    }

    .commonTag { font-size: 14px; padding: 6px; }
    .commonTitle { font-size: 18px; }
    .commonSpan { font-size: 14px; }
    .commonDesc { font-size: 22px; }
    .commonText { font-size: 16px; }
}

@media screen and (min-width:992px) and (max-width: 1199px) {
    .heroSection .heroImg img {
        width: 50%;
    }

    .heroSection .topRated {
        left: 180px;
    }

    .heroSection .textWrapper {
        right: 138px;
    }
}

/* heroSection ends here  */

.sectionTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 12px;
}

.sectionTitle::before {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: var(--primary-color);
    z-index: 1;
}

.sectionTitle::after {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 50%;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 6px;
}

.sectionTitle span {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    width: 60%;
}

@media screen and (max-width: 991px) {
    .sectionTitle span {
        width: 100%;
    }
}

.sectionTitle img {
    width: 30%;
    margin-top: 8px;
}

.features .cardWrapper {
    margin-top: 50px;
    gap: 20px 0px;
}

.features .card {
    border: 1px solid lightgray;
    padding: 12px 24px;
    border-radius: 10px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.features .card::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 8px;
    background-color: var(--primary-color);
}

.features .card img {
    width: 40px;
}

.features .card span {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.features .cardWrapper .commonBtn {
    display: block;
    margin: auto;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .sectionTitle img {
        width: 60%;
    }
}

@media screen and (max-width: 991px) {
    .sectionTitle img {
        width: 60%;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .features .cardWrapper {
        margin-top: 40px;
    }
}

@media screen and (max-width: 575px) {
    .sectionTitle span {
        font-size: 18px !important;
    }

    .sectionTitle img {
        width: 100%;
    }

    .features .cardWrapper {
        margin-top: 30px;
    }
}

/* features ends here  */

.swiperSect .card {
    border: none;
}

.swiperSect .card .normalImg {
    filter: grayscale(100);
}

.swiperSect .card:hover .normalImg {
    filter: grayscale(0);
}

.swiperSect .card img{
    width: 100%;
    height: 100px;
    object-fit: contain;
}

/* swiperSect ends here  */

.counterSect .counterBG {
    background-image: url('../../landing_page_images/counterBG.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 26px;
    gap: 20px 0px;
}

.counterSect .card {
    border: none;
    align-items: center;
    background: transparent;
    justify-content: center;
}

.counterSect .card div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.counterSect .card div:first-child span {
    color: #000000;
    font-size: 50px;
    font-weight: 700;
    animation-duration: 1s;
    animation-delay: 0s;
}


.counterSect .card .text {
    color: #00000080;
    font-size: 26px;
    font-weight: 700;
}

@media screen and (max-width: 575px) {
    .counterSect .card div:first-child span {
        font-size: 30px;
    }

    .counterSect .card .text {
        font-size: 18px;
    }
}

/* couterSect ends here  */

.sectionTitle .greenText {
    color: #05BB6C;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tabsContainer {
    margin-top: 50px !important;
    position: relative;
}

.tabsWrapper {
    position: relative;
    max-height: 65vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* width */

.tabsWrapper::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.tabsWrapper::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
.tabsWrapper::-webkit-scrollbar-thumb {
    background: var(--secondary-color1);
    border-radius: 10px;
}

.tabsWrapper::after {
    content: '';
    position: absolute;
    top: 0px;
    left: auto;
    right: -14px;
    width: 4px;
    height: 100%;
    background-color: #dee2e6;
    border-radius: 6px;
}


.tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 30px;
    word-wrap: break-word;
}

.tab {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab span {
    pointer-events: none;
}

.tab span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.tab span:last-child {
    font-size: 16px;
    color: gray;
}

@media screen and (max-width: 575px) {
    .tab span:first-child {
        font-size: 16px;
    }

    .tab span:last-child {
        font-size: 14px;
    }
}

.tab.active span,
.nav-link.active span {
    color: var(--secondary-color) !important;
}

.tab:hover {
    background-color: #E5F8F0;
}

.tabs .active {
    background-color: #E5F8F0;
    position: relative;
}

.tabs .active::after {
    content: '';
    position: absolute;
    top: 0px;
    left: auto;
    right: -14px;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1;
    border-radius: 12px;
}

.contentWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-container {
    flex: 1;
    padding: 20px;
}

.content {
    display: none;
}

.content.active {
    display: block;
}


.content img {
    width: 100%;
}


.studyManagement .content img {
    height: 80vh;
    object-fit: contain;
}


@media screen and (max-width: 991px) {
    .content img {
        margin-top: 20px;
    }

    .reverseWrapper {
        flex-direction: column-reverse;
    }

    .studyManagement .content img {
        height: auto;
    }
}

.right-feature-section,
.studyManagement {
    padding: 50px 0px;
    background-color: #F6FFFB;
}

/* adminFeatures ends here  */

.whyBest .whyBestTextWrapper {
    position: relative;
    overflow: hidden;
}

.whyBest .whyBestTextWrapper::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
}

.whyBest .whyBestTextWrapper p {
    margin: 4px 0px;
    color: #000000;
    margin-left: 18px;
}

.whyBest .whyBestTextWrapper p:first-child {
    font-size: 18px;
    font-weight: 700;
}

.whyBest .whyBestTextWrapper p:last-child {
    font-size: 35px;
    font-weight: 700;
}

.whyBest .whyBestPara {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    margin: 30px 0px;
    padding-right: 30px;
}

.listWrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.listWrapper span {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}

.listWrapper span i {
    color: var(--primary-color);
    margin-right: 12px;
}

.whyBest img {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .whyBest img {
        margin-top: 30px;
    }

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

@media screen and (max-width: 575px) {
    .whyBest .whyBestTextWrapper p:last-child {
        font-size: 26px;
    }

    .whyBest .whyBestPara {
        font-size: 18px;
    }

    .whyBest .listWrapper span {
        font-size: 18px;
    }
}

/* whyBest ends here  */

.pricing {
    background-color: #F4FBFF;
    padding: 40px 0px;
}

.pricing .sectionTitle {
    margin-bottom: 30px;
}

.pricing .commonMT {
    margin-top: -35px;
}

.pricing .row {
    margin-top: 50px;
    color: var(--secondary-color);
}

.pricing .pricingBox {
    margin-top: 12px;
    margin-bottom: 30px;
    border: 2px solid #d6e4ef;
    border-radius: 20px;
    padding: 32px 28px 28px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 98%;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.pricing .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pricing .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 20px;
    height: 20px;
    background: #2C5F8080;
    border-radius: 16px;
}

.pricing .owl-carousel button.owl-dot.active {
    background: var(--secondary-color);
    width: 50px;
}

/* .pricing .swiperWrapper {
    padding-right: 0px;
    padding-left: 0px;
} */

@media screen and (min-width: 1400px) {
    .pricing .row {
        gap: 18px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .pricing .row {
        gap: 18px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .pricing .row {
        gap: 60px 24px;
    }
}

@media screen and (max-width: 767px) {
    .pricing .row {
        gap: 50px;
    }
}

.pricing .pricingBox:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing .textDiv {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 16px;
    flex: 1;
}

.pricing .textDiv .title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.pricing .textDiv .days {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
}

.pricing .listWrapper {
    margin-top: 30px;
    max-height: 660px;
    overflow-y: scroll;
    padding-right: 24px;
}

/* width */
.pricing .listWrapper::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.pricing .listWrapper::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
.pricing .listWrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.rightTickImg {
    width: 30px !important;
    display: inline-block !important;
}

.wrongTickImg {
    width: 22px !important;
    display: inline-block !important;
}

.rightTickImg ,.wrongTickImg{
    margin-right: 12px;
}

.pricing .listWrapper span {
    font-size: 16px;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid lightgray;
    padding: 12px 0px;
}

.pricing .premium .listWrapper span {
    border-bottom: 1px solid #6c757d54;
}


.pricing .lineThrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing .lineThrough i {
    color: lightcoral;
}

.pricing .pricingBtn {
    background-color: #fff;
    color: var(--secondary-color);
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
    margin-top: 24px;
    display: block;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing .pricingBox:hover .pricingBtn {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* ── Trial Box (Home) ── */
.pricing .pricingBox--trial {
    border: 2px dashed var(--primary-color);
    background: linear-gradient(165deg, rgba(86,204,153,0.06) 0%, #fff 100%);
    position: relative;
}

.pricing .pricingBox--trial:hover {
    border-color: var(--primary-color);
    background: linear-gradient(165deg, rgba(86,204,153,0.12) 0%, #fff 100%);
}

.pricing .pricingBox--trial:hover .pricingBtn {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pricing .badge.trialBadge {
    background-color: var(--primary-color) !important;
    color: #2a9d6a !important;
    border: 1px solid rgba(86,204,153,0.3) !important;
}

.pricing .badge.trialBadge i {
    margin-right: 4px;
}

.trialDuration small {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
    margin-left: 4px;
}

.pricing .pricingBtn--trial {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.pricing .pricingBox--trial:hover .pricingBtn--trial,
.pricing .pricingBtn--trial:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.pricing .premium {
    background: linear-gradient(165deg, var(--secondary-color) 0%, #1a3a5c 100%);
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(33, 86, 121, 0.25);
    z-index: 2;
}

.pricing .premium:hover {
    border: 2px solid transparent;
    box-shadow: 0 16px 48px rgba(33, 86, 121, 0.3);
    transform: scale(1.03) translateY(-4px);
}

.pricing .premium .textDiv .title {
    color: #fff !important;
}

.pricing .premium .textDiv span,
.pricing .premium .textDiv .pricingTagline {
    color: rgba(255,255,255,0.85) !important;
}

.pricing .premium .pricingPrice,
.pricing .premium .promoCurrentPrice {
    color: #fff !important;
}

.pricing .premium .pricingPrice small {
    color: rgba(255,255,255,0.65) !important;
}

.pricing .premium .pricingLimits {
    color: rgba(255,255,255,0.85) !important;
    background: rgba(255,255,255,0.12);
}

.pricing .premium .pricingLimits i {
    color: #56cc99;
}

.pricing .premium .pricingBtn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pricing .premium:hover .pricingBtn {
    background: #fff;
    border-color: #fff;
    color: var(--secondary-color);
}

.pricing .premium .badge {
    background-color: rgba(86,204,153,0.2) !important;
    color: #a0ffd4 !important;
    border-color: rgba(86,204,153,0.4) !important;
}

.pricing .premium .pricingYearlySave {
    background: rgba(86,204,153,0.2);
    color: #a0ffd4 !important;
}

.pricing .premium .promoOldPrice {
    color: rgba(255,255,255,0.55) !important;
}

.pricing .premium .promoSaveBadge {
    background: rgba(255,100,100,0.25);
    color: #ff9e9e !important;
}

@media screen and (max-width: 575px) {
    .pricing .pricingBox {
        padding: 20px 16px;
        width: 94%;
    }

    .pricing .textDiv .title {
        font-size: 22px;
    }

    .pricing .premium {
        transform: scale(1);
    }

    .pricing .premium:hover {
        transform: translateY(-4px);
    }

    .pricing .pricingBtn {
        margin-top: 18px;
    }
}

/* ── Promo Offer Banner ── */
.promoOffer {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    padding: 36px 40px;
    margin: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 12px 40px rgba(15, 52, 96, 0.35);
}

.promoOffer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 204, 153, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.promoOffer::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 163, 165, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.promoOffer__illustration {
    flex-shrink: 0;
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promoOffer__illustration .promoOffer__globe {
    font-size: 56px;
    color: var(--primary-color);
    filter: drop-shadow(0 4px 20px rgba(86, 204, 153, 0.4));
    animation: promoFloat 3s ease-in-out infinite;
}

.promoOffer__illustration .promoOffer__spark {
    position: absolute;
    font-size: 18px;
    color: #ffd700;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

.promoOffer__spark--1 { top: 0; right: 4px; animation: promoSparkle 2s ease-in-out infinite; }
.promoOffer__spark--2 { bottom: 8px; left: 2px; animation: promoSparkle 2s ease-in-out 0.6s infinite; }
.promoOffer__spark--3 { top: 12px; left: 10px; animation: promoSparkle 2s ease-in-out 1.2s infinite; }

.promoOffer__content {
    flex: 1;
    min-width: 0;
}

.promoOffer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    animation: promoPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.promoOffer__badge i {
    font-size: 14px;
}

.promoOffer__message {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promoOffer__submessage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.promoOffer__discount {
    flex-shrink: 0;
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.45);
    animation: promoDiscountPop 3s ease-in-out infinite;
}

.promoOffer__discount span:first-child {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.promoOffer__discount span:last-child {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promoOffer__timer {
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.promoOffer__timerBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 12px;
    min-width: 58px;
}

.promoOffer__timerBox .promoOffer__timerNum {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.promoOffer__timerBox .promoOffer__timerLabel {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.promoOffer__timerSep {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    margin-bottom: 14px;
}

/* Promo Animations */
@keyframes promoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(231, 76, 60, 0.6); }
}

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

@keyframes promoSparkle {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes promoDiscountPop {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.08) rotate(-3deg); }
    75% { transform: scale(1.04) rotate(2deg); }
}

/* Promo Crossed-out Prices */
.promoOldPrice {
    display: block;
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: -2px;
}

.promoCurrentPrice {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.promoSaveBadge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Promo Responsive */
@media screen and (max-width: 992px) {
    .promoOffer {
        flex-wrap: wrap;
        padding: 28px 24px;
        gap: 20px;
    }

    .promoOffer__illustration {
        width: 70px;
        height: 70px;
    }

    .promoOffer__illustration .promoOffer__globe {
        font-size: 42px;
    }

    .promoOffer__discount {
        width: 72px;
        height: 72px;
    }

    .promoOffer__discount span:first-child {
        font-size: 22px;
    }

    .promoOffer__timer {
        gap: 6px;
    }

    .promoOffer__timerBox {
        min-width: 48px;
        padding: 8px 8px;
    }

    .promoOffer__timerBox .promoOffer__timerNum {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .promoOffer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }

    .promoOffer__illustration {
        width: 60px;
        height: 60px;
    }

    .promoOffer__illustration .promoOffer__globe {
        font-size: 36px;
    }

    .promoOffer__message {
        font-size: 18px;
    }

    .promoOffer__discount {
        width: 64px;
        height: 64px;
    }

    .promoOffer__discount span:first-child {
        font-size: 20px;
    }

    .promoOffer__timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .promoOffer__timerBox {
        min-width: 52px;
    }
}

@media screen and (max-width: 480px) {
    .promoOffer__timerBox {
        min-width: 44px;
        padding: 6px 6px;
    }

    .promoOffer__timerBox .promoOffer__timerNum {
        font-size: 18px;
    }

    .promoOffer__timerSep {
        font-size: 16px;
    }
}

/* pricing ends here  */

/* ── Custom Package CTA ── */
.customPack__card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3f5c 60%, var(--secondary-color1) 100%);
    padding: 60px 56px;
    box-shadow: 0 20px 60px rgba(33, 86, 121, 0.25);
}

.customPack__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.customPack__blob--1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(86, 204, 153, 0.25) 0%, transparent 70%);
}

.customPack__blob--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
    background: radial-gradient(circle, rgba(56, 163, 165, 0.2) 0%, transparent 70%);
}

.customPack__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 18px;
}

.customPack__badge i {
    font-size: 14px;
}

.customPack__title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
}

.customPack__desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.customPack__action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.customPack__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color) !important;
    background: #ffffff;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.customPack__btn i {
    transition: transform 0.3s ease;
}

.customPack__btn:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 12px 32px rgba(86, 204, 153, 0.3);
    transform: translateY(-2px);
}

.customPack__btn:hover i {
    transform: translateX(4px);
}

/* ── Custom Package Responsive ── */
@media screen and (max-width: 991px) {
    .customPack__card {
        padding: 44px 36px;
    }

    .customPack__action {
        justify-content: flex-start;
        margin-top: 28px;
    }
}

@media screen and (max-width: 575px) {
    .customPack__card {
        padding: 32px 24px;
    }

    .customPack__title {
        font-size: 28px;
    }

    .customPack__desc {
        font-size: 15px;
    }

    .customPack__btn {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .customPack__blob--1 {
        width: 160px;
        height: 160px;
    }

    .customPack__blob--2 {
        width: 120px;
        height: 120px;
    }
}

/* customPack ends here  */

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

@media screen and (max-width: 575px) {
    .faqs {
        padding: 20px 0px;
    }

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

.faqs .accordion-item {
    border: 1px solid lightgray !important;
    border-radius: 8px !important;
    margin: 12px 0px;
    overflow: hidden;
}

.faqs .accordion-button span {
    font-size: 16px;
    font-weight: 700;
    color: #29363F !important;
}

.faqs .accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    border-color: transparent !important;
}

.faqs .accordion-collapse span {
    margin-top: -12px;
    display: block;
    color: var(--text--secondary-color) !important;
    font-weight: 500;
}

.faqs .accordion-button:not(.collapsed) {
    background-color: var(--primary-color) !important;
}

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

.faqs .accordion-collapse {
    background-color: var(--primary-background-color);
    color: var(--text--secondary-color);
}

.faqs .accordion-button::after {
    background-image: url("../../landing_page_images/bx-plus-circle.svg") !important;
}

.faqs .accordion-button:not(.collapsed)::after {
    background-image: url("../../landing_page_images/bx-minus-circle.png") !important;
    filter: brightness(10.5);
}

.faqs .accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

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

/* faqs ends here  */

.getInTouch {
    background-color: #F4FBFF;
    padding: 20px;
    padding-bottom: 120px;
}

.getInTouch .row {
    gap: 50px 0px;
}

.getInTouch .sectionTitle .greenText {
    color: #000000;
    font-size: 35px;
    font-weight: 700;
}

.getInTouch .sectionTitle span {
    font-size: 22px;
}

.getInTouch .wrapper {
    margin-top: 50px;
}

.getInTouch .card {
    border: none;
    align-items: start;
    justify-content: start;
    padding: 50px 30px;
    gap: 12px;
    border-radius: 10px;
    padding-bottom: 30px;
    box-shadow: 0px 0px 35px 0px #00000021;
}

.getInTouch .card div {
    width: 100%;
}

.getInTouch input,
.getInTouch textarea {
    padding: 12px;
    width: 100%;
    border: 1px solid lightgray;
    border-radius: 10px;
}

.getInTouch .commonBtn {
    background-color: var(--secondary-color);
    color: #fff;
    width: 100%;
    border-radius: 4px;
    margin-top: 0px;
}

.getInTouch .infoBox {
    display: flex;
    gap: 28px;
    flex-direction: column;
    padding-left: 60px;
}

.getInTouch .infoWrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
    background-color: white;
    box-shadow: 4px 4px 16px 0px #0000001A;
    padding: 30px;
    border-radius: 10px;
}

.getInTouch .infoWrapper .icon {
    display: block;
    line-height: 60px;
    width: 60px;
    text-align: center;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 26px;
    border-radius: 50px;
}

.getInTouch .infoWrapper div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
}

.getInTouch .infoWrapper div:last-child span:first-child {
    color: #000000;
    font-size: 20px;
    font-weight: 900;
}

.getInTouch .infoWrapper div:last-child span:last-child {
    color: #000000;
    font-weight: 400;
}

.getInTouch .col-lg-6 {
    position: relative;
    z-index: 1;
}

.getInTouch .dots {
    position: absolute;
    top: 0px;
    left: -30px;
    right: auto;
    width: 100px;
    z-index: -1;
}

.getInTouch .lineCircle {
    bottom: -14px;
    position: absolute;
    width: 140px;
    left: auto;
    right: -36px;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .getInTouch .infoBox {
        padding-left: 30px;
    }

    .getInTouch .dots {
        left: -25px;
    }

    .getInTouch .lineCircle {
        right: -18px;
    }
}

@media screen and (max-width: 991px) {
    .getInTouch {
        padding-bottom: 40px;
    }

    .getInTouch .infoBox {
        padding-left: 0px;
    }
}

@media screen and (max-width: 575px) {
    .getInTouch .sectionTitle span {
        font-size: 14px !important;
    }

    .getInTouch .infoWrapper {
        gap: 20px;
        padding: 12px;
    }

    .getInTouch .lineCircle {
        right: -10px;
    }
}

/* getInTouch ends here  */

/* ════════════════════════════════════════════════════════════════
   Phone Mockup Component
   ════════════════════════════════════════════════════════════════ */
.phoneMockup {
    position: relative;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255,255,255,0.08) inset;
    width: 260px;
    transition: transform 0.4s ease;
}

.phoneMockup:hover {
    transform: translateY(-6px);
}

.phoneMockup__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.phoneMockup__notch::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #2d2d44;
    border-radius: 50%;
}

.phoneMockup__screen {
    border-radius: 28px;
    overflow: hidden;
    background: #f0f0f0;
}

.phoneMockup__screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Phone Sticker Badge */
.phoneMockup__sticker {
    position: absolute;
    z-index: 10;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(86, 204, 153, 0.35);
    white-space: nowrap;
    pointer-events: none;
}

/* Back phone (up) → sticker on left */
.appShowcase__phoneWrapper--back .phoneMockup__sticker {
    top: 14px;
    left: -50px;
    right: auto;
}

/* Front phone (down) → sticker on right */
.appShowcase__phoneWrapper--front .phoneMockup__sticker {
    top: 14px;
    right: -50px;
    left: auto;
}

/* ════════════════════════════════════════════════════════════════
   Trusted By — Infinite Marquee Logo Showcase
   ════════════════════════════════════════════════════════════════ */
.trustedBy {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 50%, #f8fbfd 100%);
    padding: 80px 0 70px;
}

.trustedBy__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 50px;
}

.trustedBy__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(86,204,153,0.10) 0%, rgba(33,86,121,0.06) 100%);
    border: 1px solid rgba(86,204,153,0.18);
}

.trustedBy__badge i {
    font-size: 14px;
    color: var(--primary-color);
}

.trustedBy__title {
    font-size: 36px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin: 0;
}

.trustedBy__subtitle {
    font-size: 16px;
    color: var(--text--secondary-color);
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}

/* Marquee container */
.trustedBy__marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.trustedBy__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: trustedByScroll 40s linear infinite;
}

.trustedBy__track:hover {
    animation-play-state: paused;
}

@keyframes trustedByScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Individual logo card */
.trustedBy__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 200px;
    padding: 28px 24px;
    margin: 0 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.trustedBy__logo:hover {
    border-color: rgba(86, 204, 153, 0.25);
    box-shadow: 0 12px 40px rgba(33, 86, 121, 0.08);
    transform: translateY(-4px);
}

.trustedBy__logo img {
    max-height: 56px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.4s ease;
}

.trustedBy__logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.trustedBy__logo span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text--secondary-color);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.2px;
    max-width: 160px;
    opacity: 0.7;
    transition: opacity 0.4s ease, color 0.4s ease;
}

.trustedBy__logo:hover span {
    opacity: 1;
    color: var(--secondary-color);
}

/* ── Trusted By Responsive ── */
@media screen and (max-width: 991px) {
    .trustedBy {
        padding: 60px 0 50px;
    }

    .trustedBy__title {
        font-size: 28px;
    }

    .trustedBy__header {
        margin-bottom: 36px;
    }

    .trustedBy__logo {
        min-width: 170px;
        padding: 22px 18px;
        margin: 0 8px;
    }

    .trustedBy__logo img {
        max-height: 46px;
        max-width: 120px;
    }
}

@media screen and (max-width: 575px) {
    .trustedBy {
        padding: 48px 0 40px;
    }

    .trustedBy__title {
        font-size: 22px;
    }

    .trustedBy__subtitle {
        font-size: 14px;
    }

    .trustedBy__header {
        margin-bottom: 28px;
    }

    .trustedBy__logo {
        min-width: 150px;
        padding: 18px 14px;
        margin: 0 6px;
        border-radius: 12px;
    }

    .trustedBy__logo img {
        max-height: 38px;
        max-width: 100px;
    }

    .trustedBy__logo span {
        font-size: 10px;
    }
}

/* trustedBy ends here */

/* ════════════════════════════════════════════════════════════════
   App Showcase Sections  (Student & Parent / Staff & Teacher)
   ════════════════════════════════════════════════════════════════ */
.appShowcase {
    overflow: hidden;
}

.appShowcase .container {
    position: relative;
}

.appShowcase__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.appShowcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(86,204,153,0.12) 0%, rgba(33,86,121,0.08) 100%);
}

.appShowcase__badge i {
    font-size: 16px;
}

.appShowcase__badge--staff {
    color: var(--secondary-color1);
    background: linear-gradient(135deg, rgba(56,163,165,0.12) 0%, rgba(33,86,121,0.08) 100%);
}

.appShowcase__badge--site {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(60,203,155,0.12) 0%, rgba(86,204,153,0.06) 100%);
}

.appShowcase__title {
    font-size: 38px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin: 0;
}

.appShowcase__desc {
    font-size: 17px;
    color: #536b83;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.appShowcase__stores {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.appShowcase__stores img {
    width: 180px;
    transition: transform 0.25s ease;
}

.appShowcase__stores img:hover {
    transform: scale(1.05);
}

/* Dual-phone layout */
.appShowcase__phones {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 30px 0;
}

.appShowcase__phoneWrapper {
    position: relative;
    z-index: 1;
}

.appShowcase__phoneWrapper--back {
    z-index: 1;
    transform: rotate(-3deg) translateX(10px) translateY(-15px);
    opacity: 0.95;
}

.appShowcase__phoneWrapper--front {
    z-index: 2;
    transform: rotate(3deg) translateX(-5px) translateY(15px);
}

.appShowcase__phoneWrapper--back .phoneMockup {
    width: 255px;
}

.appShowcase__phoneWrapper--front .phoneMockup {
    width: 270px;
}

/* Student section - subtle gradient bg */
.studentApp {
    background: linear-gradient(160deg, rgba(86,204,153,0.04) 0%, rgba(33,86,121,0.03) 50%, transparent 100%);
    padding: 60px 0;
    border-radius: 0;
}

/* Staff section - mirrored gradient */
.staffApp {
    background: linear-gradient(200deg, rgba(56,163,165,0.04) 0%, rgba(33,86,121,0.03) 50%, transparent 100%);
    padding: 60px 0;
    border-radius: 0;
    overflow: hidden;
}

/* ════════════════════════════════════════════════════════════════
   Browser Frame Component
   ════════════════════════════════════════════════════════════════ */
.browserFrame {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.browserFrame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0,0,0,0.06);
}

.browserFrame__toolbar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #f6f8fa;
    border-bottom: 1px solid #e8ecf0;
}

.browserFrame__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browserFrame__dot--red    { background: #ff5f57; }
.browserFrame__dot--yellow { background: #ffbd2e; }
.browserFrame__dot--green  { background: #28c840; }

.browserFrame__url {
    margin-left: 8px;
    font-size: 10px;
    color: #8b99a8;
    background: #eef1f4;
    padding: 2px 12px;
    border-radius: 4px;
    font-weight: 500;
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.browserFrame__content {
    background: #f0f2f5;
}

.browserFrame__content img {
    width: 100%;
    display: block;
}

/* ════════════════════════════════════════════════════════════════
   School Site & Dashboard Showcase
   ════════════════════════════════════════════════════════════════ */
.schoolShowcase {
    background: linear-gradient(180deg, transparent 0%, rgba(86,204,153,0.03) 50%, transparent 100%);
}

.schoolShowcase__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.schoolShowcase__intro {
    max-width: 680px;
    text-align: center;
}

.schoolShowcase__slide {
    padding: 10px;
}

.schoolShowcase__caption {
    text-align: center;
    margin-top: 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Owl nav arrows for school showcase */
.schoolShowcase .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: background 0.3s ease, transform 0.3s ease;
}

.schoolShowcase .owl-nav button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-50%) scale(1.08);
}

.schoolShowcase .owl-nav .owl-prev {
    left: -24px;
}

.schoolShowcase .owl-nav .owl-next {
    right: -24px;
}

.schoolShowcase .owl-dots {
    text-align: center;
    margin-top: 24px;
}

.schoolShowcase .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d5dce4;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s ease, width 0.3s ease;
}

.schoolShowcase .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    width: 28px;
    border-radius: 8px;
}

/* ════════════════════════════════════════════════════════════════
   Responsive — App Showcase & School Showcase
   ════════════════════════════════════════════════════════════════ */
@media screen and (max-width: 991px) {
    .appShowcase__phones {
        justify-content: center;
        margin-top: 30px;
    }

    .appShowcase__title {
        font-size: 30px;
    }

    .appShowcase__content {
        align-items: center;
        text-align: center;
    }

    .appShowcase__desc {
        text-align: center;
    }

    .appShowcase__stores {
        justify-content: center;
    }

    .studentApp,
    .staffApp {
        padding: 40px 0;
    }

    .phoneMockup {
        width: 230px !important;
    }

    .appShowcase__phoneWrapper--back .phoneMockup {
        width: 215px !important;
    }

    .phoneMockup__sticker {
        font-size: 10px;
        padding: 4px 12px;
    }

    .schoolShowcase .owl-nav .owl-prev { left: 0; }
    .schoolShowcase .owl-nav .owl-next { right: 0; }
}

@media screen and (max-width: 575px) {
    .appShowcase__title {
        font-size: 24px;
    }

    .appShowcase__desc {
        font-size: 15px;
    }

    .appShowcase__stores img {
        width: 140px;
    }

    .phoneMockup {
        width: 190px !important;
        border-radius: 28px;
        padding: 7px;
    }

    .phoneMockup__notch {
        width: 60px;
        height: 18px;
        border-radius: 0 0 12px 12px;
    }

    .phoneMockup__screen {
        border-radius: 22px;
    }

    .appShowcase__phoneWrapper--back .phoneMockup {
        width: 175px !important;
    }

    .phoneMockup__sticker {
        font-size: 9px;
        padding: 3px 10px;
        letter-spacing: 0.8px;
    }

    .appShowcase__phoneWrapper--back .phoneMockup__sticker,
    .appShowcase__phoneWrapper--front .phoneMockup__sticker {
        top: 12px;
    }

    .appShowcase__phoneWrapper--back .phoneMockup__sticker {
        left: -12px;
    }

    .appShowcase__phoneWrapper--front .phoneMockup__sticker {
        right: -12px;
    }

    .appShowcase__phoneWrapper--back {
        transform: rotate(-4deg) translateX(8px) translateY(-10px);
    }

    .appShowcase__phoneWrapper--front {
        transform: rotate(3deg) translateX(-4px) translateY(10px);
    }

    .studentApp,
    .staffApp {
        padding: 24px 0;
    }

    .schoolShowcase {
        padding: 30px 0 50px;
    }

    .schoolShowcase__header {
        margin-bottom: 30px;
    }

    .schoolShowcase .owl-nav button {
        width: 36px;
        height: 36px;
        font-size: 14px !important;
    }

    .schoolShowcase .owl-nav .owl-prev { left: 4px; }
    .schoolShowcase .owl-nav .owl-next { right: 4px; }

    .browserFrame {
        border-radius: 10px;
    }

    .browserFrame__toolbar {
        padding: 5px 10px;
        gap: 4px;
    }

    .browserFrame__dot {
        width: 6px;
        height: 6px;
    }

    .browserFrame__url {
        font-size: 9px;
        padding: 2px 8px;
    }
}

footer {
    background: rgba(56, 163, 165, 0.08);
    padding: 50px 0px;
    padding-bottom: 34px;
}

@media screen and (max-width: 575px) {
    footer {
        padding: 20px;
    }
}

footer .companyInfoWrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: self-start;
    gap: 30px;
}

footer .row {
    gap: 30px 0px;
}

footer .commonDesc {
    color: #000;
    font-size: 16px;
}

footer .socialIcons span {
    
    color: var(--secondary-color1) !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 28px;
    margin: 0px 6px;
    cursor: pointer;
}

footer .socialIcons span i {
    color: var(--secondary-color1) !important;
}

footer .linksWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

footer .linksWrapper span {
    color: #1E2833;
    font-weight: 400;
}

footer .linksWrapper .title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

footer .usefulLinksDiv {
    margin-left: 70px;
}

@media screen and (max-width: 991px) {
    footer .usefulLinksDiv {
        margin-left: 0px;
    }

    footer .linksWrapper .title {
        margin-bottom: 0px;
    }
}

footer .iconsWrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

footer .iconsWrapper img {
    width: 22px;
    margin-right: 12px;
}

footer hr {
    margin: 0;
}

footer .copyright {
    text-align: center;
    color: var(--text--secondary-color);
}

.owl-stage-outer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* Equal-height pricing cards in owl carousel */
.pricing .owl-stage {
    display: flex !important;
}

.pricing .owl-stage .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.pricing .owl-item .swiperDataWrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pricing .owl-item .pricingBox {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing .owl-item .pricingBox .pricingBtn {
    margin-top: auto;
}


/* login form css */

.formModal .modal-content {
    background: url('./Images/form-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: row;
    padding: 12px;
    padding-right: 26px;
    align-items: center;
    justify-content: end;
}

.formModal .modal-content {
    background: transparent;
    border: none;
}

.formModal .modal-title {
    color: #000000;
    font-size: 30px !important;
    font-weight: 700;
}

.formModal .rightSide {
    background-color: #fff;
    border-radius: 20px;
}

.formModal .rightSide .headingWrapper span {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.formModal .rightSide .headingWrapper span::before {
    content: '';
    position: absolute;
    bottom: -9px;
    background-color: var(--secondary-color);
    width: 6px;
    height: 6px;
    border-radius: 50px;
    left: 70px;
    right: auto;
    z-index: 1;
}

.formModal .rightSide .headingWrapper span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0px;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.formModal .rightSide .formWrapper {
    margin-top: 20px;
}

.formModal .rightSide .formWrapper .row {
    gap: 12px 0px;
}

.formModal .rightSide .formWrapper .inputWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
}

.formModal .rightSide .formWrapper .inputWrapper label {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.formModal .rightSide .formWrapper .inputWrapper input {
    border: 1px solid lightgray;
    border-radius: 6px;
    padding: 8px;
    width: 100%;
}

.formModal .rightSide .formWrapper .inputWrapper input::-webkit-outer-spin-button,
.formModal .rightSide .formWrapper .inputWrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.formModal .rightSide .formWrapper .inputWrapper input::placeholder {
    color: rgba(128, 128, 128, 0.838);
}

.formModal .rightSide .formWrapper .inputWrapper input:focus {
    outline: none;
}

.formModal .adminFormWrapper {
    margin-top: 20px;
}

.formModal .modalfooter {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
}

.formModal .adminFormWrapper .headingWrapper span::before {
    left: 50px;
}

.formModal .modalfooter .inputWrapper div {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
}

.formModal .modalfooter .commonBtn {
    padding: 8px 40px;
    border-radius: 8px;
}

@media screen and (max-width: 991px) {
    .formModal .modal-content {
        padding: 0px;
        background: transparent;
        border: none;
    }
}

@media screen and (max-width: 575px) {
    .formModal .modal-content {
        padding: 0px;
        padding-left: 22px;
    }

    .formModal .rightSide {
        padding: 0px;
    }

    .formModal .modal-title {
        font-size: 22px !important;
    }

    .formModal .rightSide .headingWrapper span {
        font-size: 18px;
    }

    .formModal .rightSide .headingWrapper span::before {
        left: 58px;
    }

    .formModal .adminFormWrapper .headingWrapper span::before {
        left: 40px;
    }
}

.pricing .pricingBox .badge {
    position: absolute;
    right: 16px;
    top: 16px;
    left: auto;
    clip-path: none;
    width: auto;
    height: auto;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}
.pricing .premium .badge{
    right: 16px;
}

.postpaid {
    background: var(--primary-color);
}
.prepaid {
    background: var(--secondary-color);
}
.footer-text {
    display: flex;
    justify-content: center;
}

.modal-header .btn-close {
    margin: 0px !important;
}

.file-upload-default {
    visibility: hidden;
    position: absolute;
}

/* Fix for file input focus issue in forms */
.school-registration .file-upload-default {
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.school-registration .file-upload-default:focus {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
}

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

.btn-themes{
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.select-fields option {
    white-space: pre-wrap !important; /* Enables word wrapping */
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    max-width: 200px !important; /* Adjust as needed */
}

/* ═══════════════════════════════════════════════════════ */
/*  HOME PAGE – Simplified Pricing Cards                  */
/* ═══════════════════════════════════════════════════════ */

.pricingBox--simple {
    padding-bottom: 28px !important;
}

.pricingBox--simple .startUpWrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricingBox--simple .textDiv {
    gap: 4px;
    flex: 1;
}

.pricingTagline {
    font-size: 13px;
    color: var(--text--secondary-color);
    font-weight: 500;
    margin-bottom: 2px;
    display: block;
}

.pricingPrice {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 10px;
}

.pricingPrice .promoOldPrice {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.4;
    font-weight: 400;
}

.pricingPrice .promoCurrentPrice {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--secondary-color);
}

.pricingPrice .promoCurrentPrice small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text--secondary-color);
    letter-spacing: 0;
}

.pricingPrice .promoSaveBadge {
    display: inline-block;
    background: #ffe0e0;
    color: #d63031;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    vertical-align: middle;
    line-height: 1.4;
}

.pricingLimits {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text--secondary-color);
    padding: 8px 12px;
    background: var(--primary-background-color);
    border-radius: 10px;
}

.pricingLimits i {
    margin-right: 4px;
    color: var(--primary-color);
    font-size: 14px;
}

.pricingContentList {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    text-align: left;
    font-size: 12.5px;
    line-height: 1.9;
}

.pricingContentList li {
    color: var(--text--secondary-color);
}

.pricingContentList li i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 11px;
}

.pricingBox.premium .pricingContentList li {
    color: rgba(255, 255, 255, 0.95);
}

.pricingBox.premium .pricingContentList li i {
    color: #56cc99;
}

.pricingYearlySave {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(86, 204, 153, 0.12);
    color: #2a9d6a;
    font-size: 13px;
    font-weight: 600;
}

.pricingYearlySave i {
    margin-right: 3px;
}

/* Postpaid charge rows */
.pricingChargeRow {
    margin-top: 10px;
    padding: 10px 12px;
    background: var(--primary-background-color);
    border-radius: 10px;
    width: 100%;
}

.pricingChargeRow + .pricingChargeRow {
    margin-top: 6px;
}

.pricingChargeRow .pricingPrice {
    margin-top: 2px;
}

.pricingChargeRow .promoCurrentPrice {
    font-size: 24px;
}

.pricingChargeLabel {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.pricingChargeLabel i {
    margin-right: 4px;
    color: var(--primary-color);
    font-size: 12px;
}

.pricing .premium .pricingChargeRow {
    background: rgba(255,255,255,0.08);
}

.pricing .premium .pricingChargeLabel {
    color: rgba(255,255,255,0.55) !important;
}

.pricing .premium .pricingChargeLabel i {
    color: var(--primary-color);
}

.commonBtn--outline {
    background-color: transparent;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color) !important;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.commonBtn--outline:hover {
    background-color: var(--secondary-color);
    color: white !important;
}

/* ═══════════════════════════════════════════════════════ */
/*  DEDICATED PRICING PAGE                                */
/* ═══════════════════════════════════════════════════════ */

/* ── Hero Section ── */
.pricingPage__hero {
    background: linear-gradient(135deg,
        var(--secondary-color) 0%,
        var(--secondary-color1) 50%,
        var(--primary-color) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricingPage__hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.pricingPage__hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.pricingPage__heroContent {
    position: relative;
    z-index: 2;
}

.pricingPage__title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pricingPage__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Toggle Switch ── */
.pricingPage__toggle {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    padding: 12px 32px;
    border-radius: 60px;
}

.pricingPage__toggleLabel {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}

.pricingPage__toggleLabel--active {
    color: #fff;
}

.pricingPage__saveBadge {
    display: inline-block;
    background: rgba(86,204,153,0.25);
    color: #a0ffd4;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pricingPage__switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.pricingPage__switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricingPage__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 32px;
    transition: 0.3s;
}

.pricingPage__slider::before {
    content: '';
    position: absolute;
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pricingPage__switch input:checked + .pricingPage__slider {
    background: var(--primary-color);
}

.pricingPage__switch input:checked + .pricingPage__slider::before {
    transform: translateX(28px);
}

/* ── Pricing Cards Grid ── */
.pricingPage__cards {
    padding: 60px 0 40px;
    background: var(--primary-background-color);
}

.pricingPage__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
}

.pricingPage__card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 32px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.pricingPage__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.pricingPage__card--popular {
    background: linear-gradient(165deg, var(--secondary-color) 0%, #1a3a5c 100%);
    color: #fff;
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: 0 16px 48px rgba(33, 86, 121, 0.3);
    z-index: 2;
}

.pricingPage__card--popular:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 24px 60px rgba(33, 86, 121, 0.35);
    border-color: transparent;
}

.pricingPage__card--trial {
    border: 2px dashed var(--primary-color);
    background: linear-gradient(165deg, rgba(86,204,153,0.06) 0%, #fff 100%);
    text-align: center;
}

.pricingPage__card--trial .pricingPage__cardHeader {
    text-align: center;
}

.pricingPage__card--trial .pricingPage__priceRow {
    justify-content: center;
}

.pricingPage__card--trial .pricingPage__limits {
    justify-content: center;
}

.pricingPage__trialIcon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(86,204,153,0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.pricingPage__amount--trial {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pricingPage__amount--trial .pricingPage__number {
    font-size: 42px;
    color: var(--primary-color);
}

.pricingPage__trialUnit {
    font-size: 20px;
    font-weight: 600;
    color: var(--text--secondary-color);
    text-transform: lowercase;
}

.pricingPage__trialFreeLabel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 16px;
    border-radius: 20px;
    background: rgba(86,204,153,0.12);
    color: #2a9d6a;
    font-size: 13px;
    font-weight: 600;
}

.pricingPage__trialFreeLabel i {
    color: var(--primary-color);
}

.pricingPage__cta--trial {
    border-color: var(--primary-color);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricingPage__cta--trial:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pricingPage__popularBadge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #38d9a9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(86,204,153,0.4);
}

.pricingPage__popularBadge i {
    margin-right: 4px;
    font-size: 11px;
}

/* Card Header */
.pricingPage__cardHeader {
    margin-bottom: 20px;
}

.pricingPage__planName {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricingPage__card--popular .pricingPage__planName {
    color: #fff;
}

.pricingPage__planTagline {
    font-size: 14px;
    color: var(--text--secondary-color);
    margin: 0;
}

.pricingPage__card--popular .pricingPage__planTagline {
    color: rgba(255,255,255,0.65);
}

/* Price Block */
.pricingPage__priceBlock {
    margin-bottom: 16px;
}

.pricingPage__priceRow {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}

.pricingPage__priceRow--secondary {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.pricingPage__card--popular .pricingPage__priceRow--secondary {
    border-top-color: rgba(255,255,255,0.12);
}

.pricingPage__amount {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.pricingPage__currency {
    font-size: 22px;
    font-weight: 600;
}

.pricingPage__number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.pricingPage__amount--sm .pricingPage__number {
    font-size: 28px;
}

.pricingPage__amount--sm .pricingPage__currency {
    font-size: 16px;
}

.pricingPage__period {
    font-size: 15px;
    color: var(--text--secondary-color);
    font-weight: 400;
}

.pricingPage__card--popular .pricingPage__period {
    color: rgba(255,255,255,0.6);
}

.pricingPage__card--popular .pricingPage__currency,
.pricingPage__card--popular .pricingPage__number {
    color: #fff;
}

.pricingPage__limits {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text--secondary-color);
}

.pricingPage__card--popular .pricingPage__limits {
    color: rgba(255,255,255,0.65);
}

.pricingPage__limits i {
    margin-right: 4px;
    color: var(--primary-color);
}

.pricingPage__promoOld {
    font-size: 15px;
    text-decoration: line-through;
    opacity: 0.5;
}

.pricingPage__yearlySave {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(86,204,153,0.12);
    color: #2a9d6a;
    font-size: 13px;
    font-weight: 600;
}

.pricingPage__card--popular .pricingPage__yearlySave {
    background: rgba(86,204,153,0.2);
    color: #a0ffd4;
}

.pricingPage__yearlySave i {
    font-size: 14px;
}

/* Billed Note */
.pricingPage__billedNote {
    font-size: 13px;
    color: var(--text--secondary-color);
    margin-bottom: 20px;
    min-height: 18px;
}

.pricingPage__card--popular .pricingPage__billedNote {
    color: rgba(255,255,255,0.5);
}

.pricingPage__billedNote strong {
    font-weight: 700;
}

/* CTA Button */
.pricingPage__cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    margin-top: auto;
}

.pricingPage__cta:hover {
    background: var(--secondary-color);
    color: #fff;
}

.pricingPage__cta--primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pricingPage__cta--primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pricingPage__cta--trial:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ── Feature Comparison Table ── */
.pricingPage__comparison {
    padding: 80px 0;
    background: #fff;
}

.pricingPage__comparisonHeader {
    text-align: center;
    margin-bottom: 48px;
}

.pricingPage__comparisonHeader h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.pricingPage__comparisonHeader p {
    font-size: 16px;
    color: var(--text--secondary-color);
}

.pricingPage__tableWrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.pricingPage__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricingPage__table thead {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 3;
}

.pricingPage__table th {
    padding: 20px 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.pricingPage__table th:last-child {
    border-right: none;
}

.pricingPage__featureCol {
    text-align: left !important;
    min-width: 200px;
}

.pricingPage__planCol {
    min-width: 120px;
}

.pricingPage__planCol--popular {
    background: rgba(86,204,153,0.15);
    position: relative;
}

.pricingPage__planColName {
    display: block;
    margin-bottom: 2px;
}

.pricingPage__planColBadge {
    color: #ffd43b;
    font-size: 12px;
}

.pricingPage__table tbody tr {
    border-bottom: 1px solid #f1f3f5;
    transition: background 0.2s;
}

.pricingPage__table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.pricingPage__table tbody tr:hover {
    background: rgba(86,204,153,0.04);
}

.pricingPage__featureCell {
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-align: left;
}

.pricingPage__checkCell {
    padding: 16px;
    text-align: center;
    border-right: 1px solid #f1f3f5;
}

.pricingPage__checkCell:last-child {
    border-right: none;
}

.pricingPage__checkCell--popular {
    background: rgba(86,204,153,0.04);
}

.pricingPage__check {
    color: var(--primary-color);
    font-size: 20px;
}

.pricingPage__cross {
    color: #dee2e6;
    font-size: 20px;
}

/* ── Responsive ── */
@media screen and (max-width: 991px) {
    .pricingPage__title {
        font-size: 36px;
    }
    .pricingPage__subtitle {
        font-size: 16px;
    }
    .pricingPage__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .pricingPage__card--popular {
        transform: scale(1);
    }
    .pricingPage__card--popular:hover {
        transform: translateY(-6px);
    }
    .pricingPage__comparisonHeader h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
    .pricingPage__hero {
        padding: 120px 0 60px;
    }
    .pricingPage__title {
        font-size: 30px;
    }
    .pricingPage__toggle {
        padding: 8px 16px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .pricingPage__toggleLabel {
        font-size: 14px;
    }
    .pricingPage__saveBadge {
        font-size: 10px;
        padding: 3px 8px;
        margin-left: 4px;
    }
    .pricingPage__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .pricingPage__number {
        font-size: 36px;
    }
}

@media screen and (max-width: 575px) {
    .pricingPage__hero {
        padding: 110px 0 50px;
    }
    .pricingPage__title {
        font-size: 26px;
    }
    .pricingPage__subtitle {
        font-size: 14px;
    }
    .pricingPage__card {
        padding: 28px 20px 24px;
    }
    .pricingPage__number {
        font-size: 32px;
    }
    .pricingPage__cta {
        padding: 12px 20px;
        font-size: 14px;
    }
    .pricingPage__comparisonHeader h2 {
        font-size: 24px;
    }
}