/* =========================
   Global Reset Styles
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
}
ul,
ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
img {
    height: auto;
}
input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}
button {
    cursor: pointer;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* fonts */
@font-face {
    font-family: "Cabinet Grotesk";
    src:
        url("../fonts/CabinetGrotesk-Bold.woff2") format("woff2"),
        url("../fonts/CabinetGrotesk-Bold.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cabinet Grotesk";
    src:
        url("../fonts/CabinetGrotesk-Extrabold.woff2") format("woff2"),
        url("../fonts/CabinetGrotesk-Extrabold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cabinet Grotesk";
    src:
        url("../fonts/CabinetGrotesk-Medium.woff2") format("woff2"),
        url("../fonts/CabinetGrotesk-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cabinet Grotesk";
    src:
        url("../fonts/CabinetGrotesk-Regular.woff2") format("woff2"),
        url("../fonts/CabinetGrotesk-Regular.woff2") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* root variables */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --text-primary: #362c47;
    --text-secondary: #6e6e6e;
    --text-gray: #6e6e6e;
    --border-default: #e5e5e5;
    --btn-bg: #170f11;
}

/* Utility Classes */
.main-heading {
    color: var(--text-primary);
    font-family: "Cabinet Grotesk";
    font-size: 84px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -2px;
    text-align: center;
}
.main-heading span {
    font-weight: 800;
}
.section-heading {
    color: var(--text-primary);
    font-family: "Cabinet Grotesk";
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.8px;
}
.sub-heading {
    color: var(--text-secondary);
    font-family: "Cabinet Grotesk";
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.2px;
}
.cta-button {
    padding: 8px 14px 8px 20px;
    border-radius: 8px;
    font-family: "Cabinet Grotesk";
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cta-button.cta-button--light {
    background-color: var(--btn-bg);
    color: #fff;
    border: 1px solid var(--btn-bg);
    margin: 16px 0 0;
}
.cta-button.cta-button--dark {
    background-color: var(--text-primary);
    color: var(--color-white);
    border: 1px solid var(--text-primary);
}
.section-heading-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 18px;
    text-align: center;
}

/* Header */
.header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 60px;
    position: relative;
}
.header__inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    width: 185px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header__logo img {
    width: 74px;
    height: auto;
    object-fit: contain;
}
.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 28px;
}
.header__nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.header__nav ul li a {
    color: #6e6e6e;
    font-family: "Cabinet Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142% */
    transition: color 0.3s ease;
    padding: 4px;
}
.header__nav ul li a:hover {
    color: var(--text-primary);
}

.header__button-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    column-gap: 8px;
}
.header__button {
    padding: 8px 14px 8px 20px;
    border-radius: 8px;
    font-family: "Cabinet Grotesk";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
}
.header__button.header__button--light {
    background-color: var(--color-white);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}
.header__button.header__button--dark {
    background-color: var(--btn-bg);
    color: var(--color-white);
    border: 1px solid var(--text-primary);
}
.header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4px;
    margin-left: 8px;
}
.header__hamburger span {
    background-color: var(--text-primary);
    width: 24px;
    height: 3px;
    transition: all 0.3s ease;
    border-radius: 10px;
}
.header__hamburger.active span:first-child {
    transform: translateY(7px) rotate(45deg);
}
.header__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
}

/* ---- Home Page Styles ---- */
/* Hero Section */
.hero-section {
    padding: 190px 60px 92px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/8fc2eac1b2da9f1cc8cb644bfe60ab1967ef70ce.png) lightgray 50% / cover no-repeat;
}
.hero__inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 80px;
}
.hero__content-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 16px;
    text-align: center;
}
.hero__badge {
    border-radius: 100px;
    border: 1px solid rgba(219, 200, 255, 0.3);
    background: rgba(219, 200, 255, 0.2);
    padding: 4px 12px;
    text-align: center;
    color: #170f11;
    font-family: "Cabinet Grotesk";
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: capitalize;
}
.hero__about-row {
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 16px;
}
.hero__sub-heading {
    font-size: 16px;
    line-height: 1.6;
    width: 62%;
}
.hero__button-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    column-gap: 8px;
}
.hero__stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 64px;
    padding: 24px 0 0;
    border-top: 1px solid #e5e5e5;
    max-width: 860px;
    width: 100%;
}
.hero__stats-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.hero__stats-card h5 {
    color: var(--text-primary);
    text-align: center;
    font-family: "Cabinet Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%;
}
.hero__stats-card p {
    color: #695789;
    text-align: center;
    font-family: "Cabinet Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.7px;
    text-transform: capitalize;
}

/* Featured Section */
.featured-section {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 46px;

    border-top: 1px solid #aeaeae;
    border-bottom: 1px solid #aeaeae;
    background: linear-gradient(90deg, #585066 0%, #4f3724 100%);
}
.featured__title {
    text-align: center;
    color: #475569;
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.32px;
    padding: 0 20px;
}
.featured__slider-wrapper {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}
.featured__slider-wrapper .slick-track {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 70px;
}
.featured__slider-wrapper .slick-slide,
.featured__slider-wrapper .slick-slide > div,
.featured__slider-card {
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured__slider-card img {
    width: auto;
    height: auto;
}

/* Online section */
.online-section {
    width: 100%;
    padding: 120px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f8fa;
}
.online__inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}
.online__inner .section-heading {
    color: #362c47;
    font-family: "Cabinet Grotesk";
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: -1.44px;
    text-transform: capitalize;
    width: 787px;
    margin: 0;
}
.online__inner .sub-heading {
    color: #6e6e6e;
    font-family: Geist;
    font-size: 17.4px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    width: 690px;
    margin: 8px 0 52px;
}
.online__inner .online-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}
.online__inner .img-wrapper {
    display: flex;
    justify-content: flex-end;
}
.online__inner .online-image-col {
    background: #fff;
    padding: 24px 0 0 24px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: url(../images/online-img-col-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.online__inner .online-image-col:nth-child(3) {
    grid-column: span 2;
    flex-direction: row;
    padding: 24px;
    background-position: 100%;
    background: url(../images/online-img-col-bg2.png);
}
.online__inner .online-image-col:nth-child(5) {
    padding: 24px;
    justify-content: unset;
}
.online__inner .online-image-col:nth-child(3) .col-heading {
    width: 100%;
    padding: 44px 0 0;
}
.online__inner .online-image-col:nth-child(3) .img-wrapper,
.online__inner .online-image-col:nth-child(3) .img-wrapper img {
    width: 100%;
}
.online__inner .online-image-col:nth-child(4) {
    justify-content: unset;
    padding: 24px;
}
.online__inner .online-image-col:nth-child(4) .col-heading {
    margin: 0;
}
.online__inner .online-image-col:nth-child(5) .grid-img-wrapper {
    grid-template-columns: repeat(3, 1fr);
}
.online__inner .col-heading {
    color: #362c47;
    font-family: "Cabinet Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin: 0 0 24px;
    padding-right: 24px;
}
.online__inner .col-desc {
    color: #695789;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    margin: 0;
    padding-right: 24px;
}
.online__inner .online-image-col img {
    border-radius: 10px;
}
.online__inner .grid-img-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.online__inner .img-card {
    border-radius: 10.761px;
    border: 1.25px solid rgba(139, 143, 178, 0.5);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(7px);
    padding: 16px;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
}
.online__inner .img-card img {
    width: 52px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1;
}
.online__inner .img-card2 {
    border-radius: 10.761px;
    border: 1.25px solid rgba(139, 143, 178, 0.5);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(7px);
    padding: 16px;
    display: grid;
    place-items: center;
    aspect-ratio: 188/129;
}
.online__inner .img-card2 img {
    border-radius: 0;
}

/* our products section */
.products-section {
    background: url(../images/8fc2eac1b2da9f1cc8cb644bfe60ab1967ef70ce.png) lightgray 50% / cover no-repeat;
    padding: 70px 60px;
}
.products__inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.products__inner .section-heading {
    color: #362c47;
    font-family: "Cabinet Grotesk";
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: -1.44px;
    text-transform: capitalize;
}
.products__inner .sub-heading {
    color: #6e6e6e;
    font-family: Geist;
    font-size: 17.4px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin: 8px 0 40px;
    width: 618px;
}
.products__inner .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.products__inner .card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: url(../images/online-img-col-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 24px 0 0 24px;
}
.products__inner .card img {
    margin-top: auto;
}
.products__inner .head-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-right: 24px;
}
.products__inner .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 68%;
}
.products__inner .col-heading {
    color: #362c47;
    font-family: "Cabinet Grotesk";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 106%;
    margin: 0;
}
.products__inner .col-desc {
    color: #695789;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    margin: 0;
}
.products__inner .try-btn {
    padding: 8px 8px 8px 20px;
    border-radius: 8px;
    background: #170f11;
    color: #fff;
    text-align: center;
    font-family: "Cabinet Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
}
.faq__inner {
    width: 100%;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 48px;
}
.faq__inner .section-heading {
    color: #362c47;
    text-align: center;
    font-family: "Cabinet Grotesk";
    font-size: 52px;
    font-style: normal;
    font-weight: 500;
    line-height: 116%;
    letter-spacing: -1.3px;
}
.faq__inner .sub-heading {
    color: #695789;
    text-align: center;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}
.faq__accordion-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.faq__accordion-cover {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}
.faq__accordion-cover:nth-child(1) {
    border-top: 1px solid #e5e5e5;
}
.faq__accordion-heading {
    width: 100%;
    padding: 24px 22px 16px 0px;
    position: relative;
    cursor: pointer;
    margin: 0;
    color: #695789;
    font-family: "Cabinet Grotesk";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.faq__accordion-heading::after {
    content: "+";
    position: absolute;
    font-size: 33px;
    font-weight: 300;
    top: 50%;
    right: 0px;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.2s linear;
    background: url(../images/acc_arrow.svg) no-repeat center center / contain;
}
.faq__accordion-heading.active::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq__accordion-panel {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq__accordion-desc {
    width: 100%;
    color: #695789;
    font-family: Geist;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    padding: 0 22px 24px 0px;
}

/* ready to start section */
.ready-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
    background: url(../images/ready-img.webp) lightgray 50% / cover no-repeat;
    position: relative;
}
.ready-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 40%);
}
.ready-inner {
    position: relative;
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 32px;
}
.ready-inner .section-heading {
    text-align: center;
    font-size: 60px;
    font-weight: 500;
}
.ready-inner .section-heading span {
    font-weight: 700;
}
.ready-inner .sub-heading {
    color: #362c47;
    text-align: center;
    font-family: Geist;
    width: 52%;
}
.ready-inner .conversation-btn {
    padding: 12px 14px 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-align: center;
    font-family: "Cabinet Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    border-radius: 8px;
    background: #170f11;
}
.ready-inner .bottom-text {
    color: #362c47;
    text-align: center;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 142%;
}

/* Footer */
.footer {
    padding: 80px 60px 0;
    width: 100%;
    border-top: 1px solid #2a2a28;
    background: #362c47;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 64px;
}
.footer__top-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
}
.footer__inner .footer-logo {
    color: #fff;
    font-family: "Cabinet Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.5px;
    margin: 0;
}
.footer__inner .footer-desc {
    color: rgba(255, 255, 255, 0.45);
    text-align: right;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    margin: 0;
    width: 312px;
}
.footer-option-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 32px;
    width: 100%;
}
.footer-service-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-service-head {
    color: rgba(255, 255, 255, 0.35);
    font-family: "Cabinet Grotesk";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer-service-container ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-service-container ul li {
    color: rgba(255, 255, 255, 0.55);
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 142%;
}
.footer-bottom-container {
    padding: 32px 0;
    border-top: 1px solid #2a2a28;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.footer-rights-text {
    color: rgba(255, 255, 255, 0.35);
    font-family: Geist;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 133%;
}
.footer-condition-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-condition-menu li {
    color: rgba(255, 255, 255, 0.35);
    font-family: Geist;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 133%;
}

/* Responsive Visibility Utilities */
.desktop {
    display: flex;
}
.tablet {
    display: none;
}
.mobile {
    display: none;
}
.hide-mobile {
    display: flex;
}

/* Media Query */
@media (max-width: 1023px) {
    .desktop {
        display: none;
    }
    .tablet {
        display: flex;
    }
    .main-heading {
        font-size: 58px;
    }
    .section-heading {
        font-size: 50px;
    }
    .header__wrapper {
        padding: 16px 40px;
    }
    .header__nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        padding: 20px 40px;
        width: 100%;
        height: calc(100vh - 69px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 16px;
        transform: translateX(-100%);
        transition: all 0.3s ease;
        background-color: #fff;
    }
    .header__nav.active {
        transform: translateX(0);
    }
    .header__nav ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .header__nav ul li {
        width: 100%;
        justify-content: flex-start;
    }
    .header__nav ul li a {
        width: 100%;
        padding: 12px 0;
    }

    .hero-section {
        padding: 120px 40px 40px;
    }
    .hero__stats-row {
        gap: 20px;
        max-width: 640px;
    }
    .hero__stats-card h5 {
        font-size: 28px;
    }
    .hero__stats-card p {
        font-size: 14px;
    }

    .featured-section {
        row-gap: 36px;
    }

    .online-section {
        padding: 80px 40px;
    }
    .online__inner .section-heading {
        font-size: 48px;
        width: 100%;
    }
    .online__inner .sub-heading {
        width: 80%;
        font-size: 16px;
    }
    .online__inner .online-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .online__inner .col-heading {
        font-size: 24px;
    }
    .online__inner .col-desc {
        font-size: 14px;
    }
    .online__inner .grid-img-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    .online__inner .img-card {
        padding: 20px;
    }
    .online__inner .img-card img {
        height: unset;
    }
    .online__inner .img-card2 {
        padding: 24px;
    }
    .online__inner .online-image-col:nth-child(5) {
        justify-content: space-between;
    }

    .products-section {
        padding: 60px 40px;
        background-position: center;
    }
    .products__inner .section-heading {
        font-size: 48px;
    }
    .products__inner .sub-heading {
        width: 80%;
        font-size: 16px;
    }
    .products__inner .grid-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .products__inner .card {
        padding: 20px 0 0 20px;
    }
    .products__inner .content {
        width: 70%;
        gap: 16px;
    }
    .products__inner .col-heading {
        font-size: 24px;
    }
    .products__inner .col-desc {
        font-size: 15px;
    }
    .products__inner .try-btn {
        font-size: 14px;
        padding: 8px 10px 8px 16px;
    }

    .faq-section {
        padding: 40px 40px 80px;
    }
    .faq__inner .section-heading {
        font-size: 40px;
        line-height: 120%;
    }
    .faq__inner .sub-heading {
        font-size: 16px;
        line-height: 160%;
        max-width: 600px;
        margin: 0 auto;
    }

    .ready-section {
        padding: 80px 40px;
        background-position: center;
    }
    .ready-inner {
        row-gap: 24px;
    }
    .ready-inner .section-heading {
        font-size: 42px;
        line-height: 120%;
    }
    .ready-inner .sub-heading {
        width: 70%;
        font-size: 16px;
        line-height: 160%;
    }
    .ready-inner .conversation-btn {
        font-size: 14px;
        padding: 10px 14px 10px 18px;
    }
    .ready-inner .bottom-text {
        font-size: 13px;
    }

    .footer {
        padding: 60px 40px 0;
    }
    .footer__inner {
        row-gap: 48px;
    }
    .footer__top-row {
        gap: 20px;
    }
    .footer__inner .footer-desc {
        width: 260px;
        font-size: 13px;
    }
    .footer-option-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .footer-service-container ul li {
        font-size: 13px;
    }
}
@media (max-width: 767px) {
    .mobile {
        display: flex;
    }
    .hide-mobile {
        display: none;
    }
    .main-heading {
        font-size: 40px;
    }
    .section-heading {
        font-size: 38px;
    }
    .header__wrapper {
        padding: 14px 20px;
    }
    .header__nav {
        height: calc(100vh - 63px);
        padding: 14px 20px;
    }
    .hero__sub-heading {
        width: 100%;
    }

    .hero-section {
        padding: 100px 20px 40px;
    }
    .hero__inner {
        row-gap: 60px;
    }
    .hero__stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .featured__slider-wrapper::after {
        background: linear-gradient(90deg, #fff 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, #fff 100%);
    }
    .featured__slider-wrapper .slick-track {
        column-gap: 20px;
    }
    .slick-slide img {
        transform: scale(0.8);
    }

    .online-section {
        padding: 60px 20px;
    }
    .online__inner .section-heading {
        font-size: 28px;
        line-height: 130%;
        width: 100%;
    }
    .online__inner .sub-heading {
        width: 100%;
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 32px;
    }
    .online__inner .online-grid-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .online__inner .online-image-col:nth-child(3) {
        grid-column: span 1;
        flex-direction: column;
    }
    .online__inner .online-image-col {
        padding: 16px 0 0 16px;
        gap: 16px;
    }
    .online__inner .col-heading {
        font-size: 20px;
        margin-bottom: 12px;
        padding-right: 0;
    }
    .online__inner .col-desc {
        font-size: 13px;
        padding-right: 0;
    }
    .online__inner .img-wrapper {
        justify-content: center;
    }
    .online__inner .img-wrapper img {
        width: 100%;
        height: auto;
    }
    .online__inner .grid-img-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .online__inner .img-card,
    .online__inner .img-card2 {
        padding: 16px;
        justify-content: center;
    }
    .online__inner .img-card img {
        width: 40px;
    }
    .online__inner .online-image-col:nth-child(3) .col-heading {
        padding: 0;
    }

    .products-section {
        padding: 50px 20px;
    }
    .products__inner .section-heading {
        font-size: 28px;
        line-height: 130%;
    }
    .products__inner .sub-heading {
        width: 100%;
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 32px;
    }
    .products__inner .grid-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .products__inner .card {
        padding: 16px 0 0 16px;
        gap: 16px;
    }
    .products__inner .head-row {
        flex-direction: column;
        gap: 16px;
    }
    .products__inner .content {
        width: 100%;
    }
    .products__inner .col-heading {
        font-size: 20px;
    }
    .products__inner .col-desc {
        font-size: 13px;
    }
    .products__inner .try-btn {
        width: fit-content;
        font-size: 13px;
        padding: 8px 12px;
    }
    .products__inner .card img {
        width: 100%;
        height: auto;
    }

    .faq-section {
        padding: 40px 20px 60px;
    }
    .faq__accordion-heading {
        padding: 16px 30px 16px 6px;
    }
    .faq__accordion-desc {
        padding: 0 10px 16px 6px;
    }
    .faq__inner .section-heading {
        font-size: 26px;
        line-height: 130%;
        letter-spacing: -0.5px;
    }
    .faq__inner .sub-heading {
        font-size: 14px;
        line-height: 150%;
        max-width: 100%;
        margin-top: 8px;
    }

    .ready-section {
        padding: 60px 20px;
    }
    .ready-inner {
        row-gap: 20px;
    }
    .ready-inner .section-heading {
        font-size: 26px;
        line-height: 130%;
    }
    .ready-inner .sub-heading {
        width: 100%;
        font-size: 14px;
        line-height: 150%;
    }
    .ready-inner .conversation-btn {
        font-size: 13px;
        padding: 10px 12px;
        gap: 6px;
    }
    .ready-inner .conversation-btn img {
        width: 14px;
    }
    .ready-inner .bottom-text {
        font-size: 12px;
        line-height: 150%;
    }

    .footer {
        padding: 50px 20px 0;
    }
    .footer__inner {
        row-gap: 40px;
    }
    .footer__top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer__inner .footer-desc {
        width: 100%;
        text-align: left;
        font-size: 13px;
    }
    .footer-option-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-service-container {
        gap: 16px;
    }
    .footer-service-container ul {
        gap: 12px;
    }
    .footer-service-container ul li {
        font-size: 13px;
    }
    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 0;
    }
    .footer-condition-menu {
        gap: 16px;
    }
    /* .footer {
    padding: 36px 20px;
  }
  .footer__top-row {
    flex-direction: column;
    row-gap: 36px;
  }
  .footer__top-left {
    width: 100%;
  }
  .footer__top-right {
    justify-content: space-between;
  }
  .footer__bottom-row {
    flex-direction: column-reverse;
    row-gap: 24px;
    align-items: flex-start;
  } */
}
